:root {
  --primary-blue: #1458D9;
  --primary-blue-hover: #0952b7;
  --bg-off-white: #FAF9F6;
  --text-dark: #1A1C1A;
  --text-muted: #504538;
  --border-light: rgba(0, 0, 0, 0.08);
  --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Brand and Accent colors */
  --bg-tan: #F5EAD4;
  --accent-green: #166534;
  --accent-green-light: #E7F6EC;
  --accent-orange: #D97706;
  --accent-orange-light: #FEF3C7;
  --accent-blue-light: #E6F0FA;
  --card-border-radius: 20px;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
}

/* Base Transition Utilities */
.btn-transition {
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Custom Buttons */
.btn-join-waitlist {
  background-color: #0061FF;
  color: #ffffff;
  border: 1px solid var(--primary-blue);
  border-radius: 9999px;
 
  font-weight: 600;
  font-size: 1rem;
  padding: 1.25rem 2.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(11, 102, 228, 0.2);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-join-waitlist:hover,
.btn-join-waitlist:focus {
  background-color: var(--primary-blue-hover);
  border-color: var(--primary-blue-hover);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(11, 102, 228, 0.3);
}

.btn-join-waitlist:active {
  transform: translateY(0);
}

.btn-explore-features {
  background-color: transparent;
  color: var(--text-dark);
  border: 2px solid rgba(26, 28, 26, 0.2);
  border-radius: 9999px;
 
  font-weight: 600;
  font-size: 1rem;
  padding: 1.25rem 2.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-explore-features:hover,
.btn-explore-features:focus {
  background-color: rgba(0, 0, 0, 0.03);
  border-color: rgba(0, 0, 0, 0.25);
  color: var(--text-dark);
  transform: translateY(-2px);
}

.btn-explore-features:active {
  transform: translateY(0);
}

/* Utility Classes */
.text-blue {
  color: var(--primary-blue) !important;
}

.bg-blue {
  background-color: var(--primary-blue) !important;
}

.text-dark-custom {
  color: var(--text-dark) !important;
}

.text-muted-custom {
  color: var(--text-muted) !important;
}

/* Shared Typography */
.uppercase-blue-subtitle {
 
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  color: var(--primary-blue);
}

.section-headline {
 
  font-weight: 600;
  font-size: calc(2.4rem + 1.2vw);
  line-height: 1.1;
  letter-spacing: -1.2px;
  color: var(--text-dark);
}

.min-height {
  min-height: 0;
}

.section-description {

  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.section__label {
  display: inline-block;
  margin-bottom: 13px;
  color: #9b2f1c;
 
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1.35px;
}

.section__title {
  margin: 0;
  color: #191B23;
 
  font-size: 38px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0;
}

.section__label.text-blue {
  color: #1458D9;
}

.section__label.text-red {
  color: #BE4E33;
}

.section__label.text-yellow {
  color: #E4C85C;
}

.section__label.text-light-blue {
  color: #3390A9;
}

.section__label.text-orange {
  color: #CAA94D;
}



.section__title span {
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  margin-bottom: 8px;
  padding: 0 13px;
  border-radius: 3px;
  background: #9b2f1c;
  color: #ffffff;
  line-height: 1;
}


.section__title span.bg-blue {
  background: #1458D9;
}

.section__title span.bg-yellow {
  background: #E4C85C;
}

.section__title span.bg-orange {
  background: #CAA94D;
}


.section__title span.bg-light-blue {
  background: #3390A9;
}


.section__title span.bg-red {
  background: #BE4E33;
}




/* Common Section Header Component */
.common-section-header {
  margin-bottom: 28px;
}

/* Shared UI Components */
.rounded-card {
  border-radius: var(--card-border-radius, 20px) !important;
}

.shadow-sm-custom {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04) !important;
}

.shadow-floating-panel {
  box-shadow: 0 26px 58px rgba(15, 45, 84, 0.18), 0 10px 22px rgba(20, 88, 217, 0.08) !important;
}

.shadow-floating-panel-warm {
  box-shadow: 0 28px 58px rgba(126, 72, 58, 0.18), 0 12px 30px rgba(190, 78, 51, 0.12) !important;
}

.shadow-floating-panel-teal {
  box-shadow: 0 28px 60px rgba(35, 94, 116, 0.16), 0 14px 34px rgba(51, 144, 169, 0.13) !important;
}

.shadow-floating-panel-gold {
  box-shadow: 0 28px 62px rgba(123, 93, 31, 0.14), 0 14px 34px rgba(202, 169, 77, 0.14) !important;
}

.hero-mockup-container {
  position: relative;
  overflow: visible;
}

.hero-floating-layer {
  position: absolute;
  inset: 0;
  z-index: 6;
  pointer-events: none;
}

.hero-floating-card {
  position: absolute;
  z-index: 5;
  pointer-events: none;
}

.floating-card-left-tilt {
  width: 214px;
  min-height: 118px;
  border: 1.2px solid rgba(20, 88, 217, 0.78);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 25px 48px rgba(17, 32, 70, 0.12);
  transform: perspective(780px) rotateZ(7deg) rotateY(-2deg);
  transform-origin: center center;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.floating-card-right-tilt {
  width: 256px;
  min-height: 212px;
  padding: 29px 26px 20px;
  border: 1px solid rgba(226, 232, 242, 0.8);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 26px 54px rgba(28, 42, 82, 0.16);
  transform: rotate(-6deg);
  transform-origin: center center;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.hero-float-left-top {
  left: -55px;
  top: 96px;
}

.hero-float-left-bottom {
  left: -60px;
  top: 225px;
}

.hero-float-right-mid {
  right: -79px;
  top: 88px;
}

@media (max-width: 991px) {
  .floating-card-left-tilt {
    transform: perspective(780px) rotateZ(7deg) rotateY(-2deg) scale(0.84);
  }

  .floating-card-right-tilt {
    transform: rotate(-6deg) scale(0.84);
  }

  .hero-float-left-top {
    left: -16px;
    top: 72px;
  }

  .hero-float-left-bottom {
    left: -18px;
    top: 188px;
  }

  .hero-float-right-mid {
    right: -18px;
    top: 78px;
  }
}

@media (max-width: 575px) {
  .floating-card-left-tilt {
    transform: perspective(780px) rotateZ(7deg) rotateY(-2deg) scale(0.62);
  }

  .floating-card-right-tilt {
    transform: rotate(-6deg) scale(0.62);
  }

  .hero-float-left-top {
    left: -44px;
    top: 54px;
  }

  .hero-float-left-bottom {
    left: -46px;
    top: 134px;
  }

  .hero-float-right-mid {
    right: -52px;
    top: 58px;
  }
}

.gold-chart-curve {
  border-color: #b89333 !important;
}

.bg-tan {
  background-color: var(--bg-tan) !important;
}

.audience-banner {
  background-color: #F8E6CA;
  border-radius: 9999px;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

/* Solution Section Shared Component Styles */
.solution-section {
  position: relative;
  background-color: #ffffff;
}

.solution-card {
  background-color: #ffffff;
  border-radius: 28px;
  border: 1.5px solid transparent;
  padding: 2.25rem 2rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  height: 100%;
}

.solution-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.solution-icon-box {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.solution-card:hover .solution-icon-box {
  transform: scale(1.06);
}

.solution-card-title {
 
  font-weight: 700;
  font-size: 1.22rem;
  color: var(--text-dark);
  margin-bottom: 0.8rem;
}

.solution-card-text {

  font-weight: 400;
  font-size: 0.885rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

/* ==========================================================================
   CTA Section
   ========================================================================== */
.cta-section {
  padding: 120px 0;
}

.cta-card {
  background: linear-gradient(135deg, var(--primary-blue) 0%, #0b4cbf 100%);
  border-radius: 24px;

  position: relative;
}

.global-cta-bg {
  background: linear-gradient(96deg, #2f6be6 0%, #315fd8 38%, #365fd0 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.cta-image-col {
  position: absolute;
  bottom: 0;
  left: 0;
}

.cta-profile-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: 24px 0 0 24px;
}

.investors-page-body .cta-profile-image {
  width: 100%;
  height: 100%;
  object-fit: none;
  object-position: left bottom;
  display: block;
  border-radius: 24px 0 0 24px;
  position: relative;
}

.ai-page-body .cta-profile-image{
      width: 93%;
    height: 79%;
    object-fit: cover;
    object-position: center top;
    display: block;
    border-radius: 24px 0 0 24px;
}

.ai-page-body .cta-image-col {
    position: absolute;
    bottom: -29px;
    left: -56px;
}



.learning-hub-page-body .cta-image-col,
.ai-hub-page-body .cta-image-col {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  bottom: auto;
}


.cta-content-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3.5rem 3.5rem 3.5rem 2rem;
  margin-left: auto;
}

.cta-heading {
 
  font-weight: 800;
  font-size: 2.25rem;
  color: #ffffff;
  line-height: 1.25;
  margin-bottom: 1rem;
}

.cta-subtext {
 
  font-weight: 400;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.btn-cta-join {
  background-color: #ffffff;
  color: var(--primary-blue);
  border: none;
  border-radius: 9999px;
 
  font-weight: 600;
  font-size: 1rem;
  min-width: 250px;
  padding: 0.75rem 2.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  align-self: flex-start;
}

.btn-cta-join:hover,
.btn-cta-join:focus {
  background-color: #f0f0f0;
  color: var(--primary-blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
}

.btn-cta-join:active {
  transform: translateY(0);
}

/* ==========================================================================
   Global CTA + Footer Shell
   Mastered from the Ambassadors / Features footer composition.
   ========================================================================== */
.global-footer-shell,
.features-footer-shell,
.global-footer-bg {
  background: #ffffff url('../img/background-footer.png') center top / cover no-repeat;
  background-attachment: scroll;
}

/* Unified CTA + footer background.
   The two children stay visually unchanged and share only this backdrop. */
.footer-wrapper {
  margin: 0;
  padding: 0;
  background: #ffffff url('../img/background-footer.png') center top / cover repeat-y;
}

.footer-wrapper > .cta-section,
.footer-wrapper > .site-footer {
  margin: 0;
  background: transparent;
}

.footer-wrapper .cta-card,
.footer-wrapper .global-cta-bg {
  background-image: none;
  background-color: rgba(20, 88, 217, 0.9);
  box-shadow: none;
}

/* Global AOS stability ----------------------------------------------------- */
[data-aos] {
  animation-fill-mode: forwards;
}

body.features-sub-page-body,
body.ai-page-body,
.features-sub-page,
.ai-page {
  overflow-x: hidden !important;

}


.cta-image-col,
.global-cta-image-col,
.features-cta-image-col,
.cta-image-col *,
.global-cta-image-col *,
.features-cta-image-col * {
  animation: none !important;
  transition-property: none !important;
}

/* Page-specific hero entrances --------------------------------------------
   Every target restores its captured transform in the completed state. */
.aos-hero-managed {
  overflow-x: hidden;
  overflow-x: clip;
}

.aos-hero-element {
  will-change: transform, opacity;
  backface-visibility: hidden;
  animation-fill-mode: forwards;
  transition-property: transform, opacity !important;
}

[data-aos][data-aos="fade-up"].aos-hero-element {
  transform: translateY(24px) var(--aos-hero-resting-transform);
}

[data-aos][data-aos="fade-down"].aos-hero-element {
  transform: translateY(-20px) var(--aos-hero-resting-transform);
}

[data-aos][data-aos="fade-up-right"].aos-hero-element {
  transform: translate(-22px, 24px) var(--aos-hero-resting-transform);
}

[data-aos][data-aos="fade-up-left"].aos-hero-element {
  transform: translate(22px, 24px) var(--aos-hero-resting-transform);
}

[data-aos][data-aos="zoom-in-up"].aos-hero-element {
  transform:
    translateY(16px)
    scale(0.94)
    var(--aos-hero-resting-transform);
}

[data-aos][data-aos="fade-right"].aos-hero-element {
  transform: translateX(-24px) var(--aos-hero-resting-transform);
}

[data-aos][data-aos="fade-left"].aos-hero-element {
  transform: translateX(24px) var(--aos-hero-resting-transform);
}

[data-aos][data-aos="zoom-in"].aos-hero-element {
  transform: scale(0.97) var(--aos-hero-resting-transform);
}

[data-aos].aos-hero-element.aos-animate {
  transform: var(--aos-hero-resting-transform);
}

/* AOS two-column stability -------------------------------------------------
   Animate only the main columns; nested cards retain their own layout and
   transforms. The final state restores the column's exact static transform. */

.aos-layout-column {
  will-change: transform, opacity;
  backface-visibility: hidden;
  animation-fill-mode: forwards;
  transition-property: transform, opacity !important;
}

[data-aos][data-aos="fade-right"].aos-layout-column {
  transform: translate3d(-60px, 0, 0) var(--aos-column-resting-transform);
}

[data-aos][data-aos="fade-left"].aos-layout-column {
  transform: translate3d(60px, 0, 0) var(--aos-column-resting-transform);
}

[data-aos][data-aos="fade-up"].aos-layout-column {
  transform: translate3d(0, 32px, 0) var(--aos-column-resting-transform);
}

[data-aos][data-aos="zoom-in"].aos-layout-column {
  transform: scale3d(0.96, 0.96, 1) var(--aos-column-resting-transform);
}

[data-aos].aos-layout-column.aos-animate {
  transform: var(--aos-column-resting-transform);
}

/* CTA content-only entrances ----------------------------------------------
   CTA graphics are intentionally static; only text and buttons animate. */
.aos-cta-content-item {
  will-change: transform, opacity;
  backface-visibility: hidden;
  animation-fill-mode: forwards;
  transition-property: transform, opacity !important;
}

[data-aos][data-aos="fade-left"].aos-cta-content-item {
  transform: translate3d(48px, 0, 0) var(--aos-cta-resting-transform);
}

[data-aos][data-aos="fade-up"].aos-cta-content-item {
  transform: translate3d(0, 18px, 0) var(--aos-cta-resting-transform);
}

[data-aos].aos-cta-content-item.aos-animate {
  transform: var(--aos-cta-resting-transform);
}

/* Features and Ambassadors already use a shared footer shell. */
.global-footer-shell,
.features-footer-shell {
  background: #ffffff url('../img/background-footer.png') center top / cover repeat-y;
}


.global-footer-shell,
.features-footer-shell {
  margin-top: 18px;
  padding: 44px 0 0;
}

.global-footer-shell__container,
.features-footer-shell__container {
  padding: 0 34px;
}

.global-cta-section,
.features-cta-section {
  padding: 0 0 49px;
}

.global-cta-card,
.features-cta-card {
  position: relative;
  border-radius: 24px;
  overflow: visible;
  background: linear-gradient(96deg, #2f6be6 0%, #315fd8 38%, #365fd0 100%);
  box-shadow: 0 30px 60px rgba(36, 70, 156, 0.18);
}

.global-cta-card::before,
.features-cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(96deg, rgba(36, 100, 226, 0.92) 0%, rgba(41, 87, 202, 0.9) 55%, rgba(25, 55, 138, 0.9) 100%),
    url('../img/background-footer.png') center center / cover no-repeat;
  background-blend-mode: soft-light;
  opacity: 1;
  z-index: 0;
}

.global-cta-image-col,
.features-cta-image-col {
  position: relative;
  min-height: 320px;
  z-index: 2;
}

.global-cta-image,
.features-cta-image {
  position: absolute;
  left: 22px;
  bottom: 0;
  width: auto;
  max-width: none;
  height: 420px;
  max-height: none;
  object-fit: contain;
}

.global-cta-content-col,
.features-cta-content-col {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 274px;
  flex-direction: column;
  justify-content: center;
  padding: 52px 48px 44px 0;
}

.global-cta-heading,
.features-cta-heading {
  margin: 0;
  color: #ffffff;
 
  font-size: clamp(2.35rem, 2.05rem + 0.8vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -1.8px;
  line-height: 0.94;
  text-wrap: balance;
}

.global-cta-subtext,
.features-cta-subtext {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  line-height: 1.42;
}

.global-cta-subtext span,
.features-cta-subtext span {
  display: inline-block;
  border-bottom: 2px solid rgba(255, 255, 255, 0.78);
  line-height: 1.1;
}

.global-cta-button,
.features-cta-button {
  display: inline-flex;
  width: 212px;
  min-width: 212px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  margin-top: 24px;
  padding: 0.8rem 1.5rem;
  border-radius: 999px;
  background: #ffffff;
  color: #2568e8;
 
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 16px 30px rgba(12, 36, 106, 0.14);
}

.global-cta-button:hover,
.global-cta-button:focus,
.features-cta-button:hover,
.features-cta-button:focus {
  color: #1b54c8;
  background: #ffffff;
}

.global-page-footer,
.features-page-footer {
  background: transparent;
}

.global-page-footer,
.features-page-footer {
  padding: 0;
}

.global-page-footer .container,
.features-page-footer .container {
  padding-left: 0;
  padding-right: 0;
}

.global-page-footer .footer-brand-col,
.features-page-footer .footer-brand-col {
  max-width: 285px;
}

.global-page-footer .footer-description,
.global-page-footer .footer-nav-list a,
.global-page-footer .footer-copyright,
.global-page-footer .footer-policies a,
.features-page-footer .footer-description,
.features-page-footer .footer-nav-list a,
.features-page-footer .footer-copyright,
.features-page-footer .footer-policies a {
  color: #585c69;
}

.global-page-footer .footer-nav-title,
.features-page-footer .footer-nav-title {
  color: #272a34;
}

.global-page-footer .footer-divider,
.features-page-footer .footer-divider {
  width: 100%;
  margin-top: 54px;
  border-color: rgba(66, 70, 86, 0.4);
}

.global-page-footer .footer-bottom,
.features-page-footer .footer-bottom {
  width: 100%;
  margin-bottom: 48px;
}

@media (max-width: 1199.98px) {
  .global-footer-shell__container,
  .features-footer-shell__container {
    padding: 0 22px;
  }

  .global-cta-image,
  .features-cta-image {
    left: 6px;
    bottom: 0;
    height: 372px;
  }

  .global-cta-content-col,
  .features-cta-content-col {
    padding: 48px 34px 40px 0;
  }
}

@media (max-width: 767.98px) {
  .global-footer-shell,
  .features-footer-shell {
    padding-top: 24px;
  }

  .global-footer-shell__container,
  .features-footer-shell__container {
    padding: 0 14px;
  }

  .global-cta-section,
  .features-cta-section {
    padding-bottom: 26px;
  }

  .global-cta-card,
  .features-cta-card {
    border-radius: 22px;
  }

  .global-cta-image-col,
  .features-cta-image-col {
    min-height: 250px;
  }

  .global-cta-image,
  .features-cta-image {
    left: 50%;
    bottom: 0;
    height: 292px;
    max-width: none;
    transform: translateX(-50%);
  }

  .global-cta-content-col,
  .features-cta-content-col {
    min-height: auto;
    align-items: center;
    padding: 24px 20px 30px;
    text-align: center;
  }

  .global-cta-heading,
  .features-cta-heading {
    font-size: 1.95rem;
    line-height: 1.04;
  }

  .global-cta-subtext,
  .features-cta-subtext {
    font-size: 0.92rem;
  }

  .global-cta-button,
  .features-cta-button {
    align-self: center;
    margin-top: 22px;
  }

  .global-page-footer .footer-divider,
  .global-page-footer .footer-bottom,
  .features-page-footer .footer-divider,
  .features-page-footer .footer-bottom {
    width: 100%;
  }
}

@media (max-width: 575.98px) {
  .global-cta-image-col,
  .features-cta-image-col {
    min-height: 214px;
  }

  .global-cta-image,
  .features-cta-image {
    height: 238px;
  }

  .global-cta-heading,
  .features-cta-heading {
    font-size: 1.66rem;
    letter-spacing: -1px;
  }

  .global-cta-subtext,
  .features-cta-subtext {
    font-size: 0.86rem;
  }

  .global-cta-button,
  .features-cta-button {
    width: 100%;
    min-width: 0;
  }
}

/* ==========================================================================
   Shared "About Exists" / Connected Platform Section
   ========================================================================== */
.about-exists {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  padding: 124px 0 132px;
}




.about-exists__label {
  display: inline-block;
  margin-bottom: 31px;
  font-size: 0.8rem;
  letter-spacing: 1.45px;
}

.investors-page-body .about-exists__label {
  color: #D8A86B;
}

.about-exists__title {
  margin: 0;
  color: #1b1f2c;
 
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
}

.about-exists__title span {
  display: inline-flex;
  align-items: center;
  min-height: 60px;
  margin-top: 6px;
  padding: 0 12px;
  border-radius: 4px;
  background: var(--primary-blue);
  color: #ffffff;
  line-height: 1;
}


.investors-page-body .about-exists__title span {
  background: #D8A86B;
}


.about-exists__text {
  max-width: 510px;
  margin: 33px 0 0;
  color: rgba(62, 70, 91, 0.78);

  font-size: 1.07rem;
  font-weight: 500;
  line-height: 1.86;
}

.about-exists__visual {
  position: relative;
  min-height: 465px;
}

.exists-dashboard {
  position: absolute;
  top: 37px;
  right: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: 80px 1fr;
  width: 552px;
  overflow: hidden;
  border: 1px solid rgba(210, 225, 249, 0.75);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 28px 74px rgba(88, 113, 160, 0.1);
}

.exists-sidebar {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 31px 0 24px;
  background: rgba(250, 252, 255, 0.94);
  border-right: 1px solid rgba(223, 232, 248, 0.74);
}

.exists-sidebar span {
  display: block;
  width: 34px;
  height: 7px;
  border-radius: 99px;
  background: #eef3fb;
}

.exists-sidebar .exists-sidebar__active {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #e7eefb;
  position: relative;
}

.exists-sidebar .exists-sidebar__active::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 3px;
  background: var(--primary-blue);
}

.exists-sidebar i {
  display: block;
  width: 24px;
  height: 24px;
  margin-top: auto;
  border-radius: 50%;
  background: #f0f3f9;
}

.exists-board {
  padding: 30px 24px 28px 25px;
}

.exists-board__top {
  position: relative;
  height: 42px;
}

.exists-top-line,
.exists-top-pill {
  display: block;
  border-radius: 99px;
}

.exists-top-line {
  width: 70px;
  height: 7px;
  margin-top: 9px;
  background: #eceff7;
}

.exists-top-line--wide {
  width: 99px;
  height: 8px;
  margin: 0 0 8px;
  background: #e2e6ef;
}

.exists-top-pill {
  position: absolute;
  top: 0;
  right: 2px;
  width: 82px;
  height: 28px;
  background: #e1e9f6;
}

.exists-board__content {
  display: grid;
  grid-template-columns: 115px 1fr;
  gap: 17px;
}

.exists-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.exists-stack__card {
  height: 62px;
  border-radius: 8px;
  background: #eeeeFA;
}

.exists-stack__card:first-child {
  padding: 13px 14px;
}

.exists-stack__card:first-child span,
.exists-stack__card:first-child i {
  display: block;
  height: 7px;
  border-radius: 99px;
  background: #dfe2ef;
}

.exists-stack__card:first-child span {
  width: 64px;
  margin-bottom: 10px;
}

.exists-stack__card:first-child i {
  width: 47px;
}

.exists-video {
  position: relative;
  height: 139px;
  border-radius: 8px;
  background: #f2dfc5;
}

.exists-play {
  position: absolute;
  top: 48px;
  left: 50%;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: var(--primary-blue);
  transform: translateX(-50%);
  pointer-events: none;
}

.investors-page-body .exists-play {
  background: #D8A86B;
}


.exists-play::after {
  content: "";
  position: absolute;
  top: 14px;
  left: 17px;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 10px solid #ffffff;
}

.exists-lower-panel {
  grid-column: 2;
  width: 86px;
  height: 58px;
  margin-top: 14px;
  border: 1px solid rgba(177, 202, 238, 0.85);
  border-radius: 7px;
  background: #edf3fb;
  padding: 15px 10px;
}

.exists-lower-panel span {
  display: block;
  width: 56px;
  height: 8px;
  border-radius: 99px;
  background: #9ebbe6;
}

.exists-control-card {
  position: absolute;
  z-index: 4;
  right: -31px;
  bottom: 27px;
  width: 235px;
  min-height: 206px;
  padding: 27px 24px 23px;
  border-radius: 13px;
  background: #ffffff;
  box-shadow: 0 24px 54px rgba(66, 79, 112, 0.13);
}

.exists-control-card h3 {
  margin: 0;
  color: var(--primary-blue);
 
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.1;
}

.exists-control-card p {
  margin: 6px 0 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(230, 234, 244, 0.85);
  color: rgba(72, 80, 99, 0.72);
  font-size: 0.58rem;
  font-weight: 500;
  line-height: 1;
}

.exists-control-card ul {
  display: flex;
  flex-direction: column;
  gap: 17px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.exists-control-card li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #222838;
 
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1;
}

.exists-control-card li span {
  position: relative;
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  border: 2px solid var(--primary-blue);
  border-radius: 50%;
}

.exists-control-card li span::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 3px;
  width: 7px;
  height: 4px;
  border-left: 2px solid var(--primary-blue);
  border-bottom: 2px solid var(--primary-blue);
  transform: rotate(-45deg);
}

.exists-shape {
  position: absolute;
  z-index: 1;
  display: block;
  background: #dfe8f5;
}

.exists-shape--square-top {
  top: -2px;
  left: 89px;
  width: 49px;
  height: 49px;
  border-radius: 9px;
  opacity: 0.8;
}

.exists-shape--square-right {
  top: 121px;
  right: -52px;
  width: 25px;
  height: 25px;
  border-radius: 2px;
  opacity: 0.9;
  transform: rotate(12deg);
}

.exists-shape--circle-low {
  left: 112px;
  bottom: 11px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #e0f1f3;
  opacity: 0.88;
}

.exists-shape--circle-left {
  left: 158px;
  bottom: 85px;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  background: #f0f3f9;
  opacity: 0.95;
}

@media (max-width: 1199px) {
  .about-exists {
    padding: 92px 0 100px;
  }

  .about-exists__copy {
    max-width: 640px;
    margin: 0 auto 42px;

  }

  .about-exists__text {
    max-width: 610px;
    margin-right: auto;
    margin-left: auto;
  }

  .about-exists__visual {
    width: 650px;
    max-width: none;
    min-height: 430px;
   
  }

  .exists-dashboard {
    right: 49px;
  }

  .exists-control-card {
    right: 7px;
  }
}

@media (max-width: 767px) {
  .about-exists {
    padding: 76px 0 70px;
  }

  .about-exists__label {
    margin-bottom: 20px;
  }

  .about-exists__title {
    font-size: 2.55rem;
    line-height: 1.14;
  }

  .about-exists__title span {
    min-height: 48px;
    padding: 0 9px;
  }

  .about-exists__text {
    margin-top: 24px;
    font-size: 0.98rem;
    line-height: 1.75;
  }

  .about-exists__visual {
    width: 610px;
    min-height: 380px;
    transform: translateX(-50%) scale(0.66);
    margin-bottom: -120px;
  }
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-section {
  padding: 120px 0;
  background-color: #ffffff;
  position: relative;

}

.faq-section .section-headline{
  text-align: center !important;
}

.section-circle1 {
  position: absolute;
  top: 10%;
  left: 0%;
  z-index: 0;
}

.section-circle2 {
  position: absolute;
  top: 15%;
  right: 0%;
  z-index: 0;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: #F4F6FF !important;
  border-radius: 50px !important;
  border: none !important;
  margin-bottom: 1.25rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:last-child {
  margin-bottom: 0;
}

/* Accordion Button customized */
.faq-btn {
  background-color: #F4F6FF !important;
  color: var(--text-dark) !important;
 
  font-weight: 700;
  font-size: 1.05rem;
  padding: 1.25rem 2.25rem !important;
  border: none !important;
  box-shadow: none !important;
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  border-radius: 50px !important;
}

.faq-btn::after {
  display: none !important;
  /* disable default arrow */
}

.faq-chevron-wrap {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: #E7E7F4;
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.faq-btn:not(.collapsed) .faq-chevron-wrap {
  transform: rotate(180deg);
  background-color: var(--primary-blue);
  color: #ffffff;
}

/* Collapse Panel */
.faq-collapse {
  background-color: #F4F6FF;
  border-radius: 0 0 50px 50px;
}

.faq-body {
  padding: 0 2.25rem 1.5rem 2.25rem !important;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
}

/* CTA Responsive */
@media (max-width: 991px) {
  .cta-content-col {
    padding: 2.5rem 2rem;
  }

  .cta-heading {
    font-size: 1.65rem;
  }
}

@media (max-width: 767px) {
  .cta-section {
    padding: 60px 0;
  }

  .cta-profile-image {
    border-radius: 24px 24px 0 0;
  }

  .cta-image-col {
    min-height: 240px;
  }

  .cta-content-col {
    padding: 2rem 1.5rem 2.5rem;
    text-align: center;
    align-items: center;
  }

  .cta-heading {
    font-size: 1.45rem;
  }

  .btn-cta-join {
    align-self: center;
  }
}

@media (max-width: 991.98px) {
 


  .learning-hub-page-body .cta-profile-image {
    width: min(100%, 420px);
    max-width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
    border-radius: 0;
  }

  .learning-hub-page-body .cta-content-col {
    margin-left: 0;
    text-align: center;
    align-items: center;
  }

  .learning-hub-page-body .cta-heading,
  .learning-hub-page-body .cta-subtext {
    text-align: center;
  }

  .learning-hub-page-body .btn-cta-join {
    align-self: center;
  }
}

@media (max-width: 575.98px) {
  .learning-hub-page-body .cta-image-col {
    margin-top: 2rem !important;
    padding-inline: 1rem;
  }

  .learning-hub-page-body .cta-profile-image {
    width: min(100%, 320px);
  }
}

/* Waitlist Flow Modal */
.waitlist-flow-modal {
  --waitlist-blue: #0261FF;
  --waitlist-blue-dark: #075ee4;
  --waitlist-bg: #ffffff;
  --waitlist-soft-bg: #f6f8ff;
  --waitlist-text: #1c2130;
  --waitlist-muted: #6f778a;
  --waitlist-line: #dfe6f4;
  --waitlist-green: #12a86b;
  background: #ffffff;
}

.waitlist-flow-modal .modal-dialog {
  width: 100vw;
  height: 100vh;
  max-width: 100%;
  margin: 0;
  padding: 0;
}

.waitlist-flow-modal .modal-content {
  border: 0;
  border-radius: 0;
  background:rgba(255, 255, 255, 0.7) !important;
  box-shadow: none;
}

.waitlist-flow-modal .modal-body {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  border-radius: 0;
  background:rgba(255, 255, 255, 0.7) !important; ;
}

.waitlist-flow {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  color: var(--waitlist-text);
 
}

.waitlist-flow__canvas {
  width: 100vw;
  height: 100vh;
  overflow-y: auto;
  background: #ffffff;
}

.waitlist-flow__close {
  position: absolute;
  top: clamp(18px, 2.5vw, 34px);
  right: clamp(18px, 2.5vw, 34px);
  z-index: 5;
  display: inline-flex;
  width: clamp(34px, 3vw, 46px);
  height: clamp(34px, 3vw, 46px);
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: #f4f7ff;
  color: #7b8497;
  font-size: clamp(21px, 2vw, 28px);
  line-height: 1;
  box-shadow: 0 10px 26px rgba(64, 83, 132, 0.1);
}

.waitlist-step {
  display: none;
  width: 100%;
  min-height: 100vh;
  padding: clamp(28px, 4.8vw, 70px) clamp(20px, 7vw, 112px) clamp(30px, 5vw, 76px);
  background: rgba(255, 255, 255, 0.7);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.waitlist-step.is-active {
  display: flex;
  flex-direction: column;
  opacity: 1;
  transform: translateY(0);
}

.waitlist-step__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(100%, 1120px);
  margin: 0 auto clamp(12px, 1.1vw, 18px);
  color: #434654;
  font-size: clamp(10px, 0.82vw, 14px);
  font-weight:600;
  letter-spacing: 0.35px;
  text-transform: uppercase;
}

.waitlist-step__top span:last-child {
  color: var(--waitlist-blue);
}

.waitlist-step__divider,
.waitlist-progress {
  width: min(100%, 1120px);
  height: clamp(5px, 0.52vw, 8px);
  margin: 0 auto clamp(38px, 6vh, 78px);
  overflow: hidden;
  border-radius: 999px;
  background: #e8edf8;
}

.waitlist-progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--waitlist-blue);
  transition: width 0.28s ease;
}

.waitlist-welcome {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: min(100%, 1400px);
  margin: 0 auto;
  padding: clamp(24px, 5vh, 64px) 0 clamp(42px, 8vh, 110px);
  text-align: center;
}

.waitlist-welcome h2,
.waitlist-step__content h2,
.waitlist-success h2 {
  margin: 0;
  color: #191C1E;
  font-size: clamp(31px, 4.4vw, 72px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
}

.waitlist-welcome h2 span {
  color: var(--waitlist-blue);
}

.waitlist-welcome p,
.waitlist-step__content p,
.waitlist-success p {
  margin: 15px 0 0;
  color: #434654;

  font-size: clamp(13px, 1.16vw, 16px);
  font-weight: 400;
  line-height: 1.65;
}

.waitlist-welcome .waitlist-primary {
  min-width: clamp(218px, 18vw, 292px);
  margin-top: clamp(28px, 4vh, 48px);
}

.waitlist-welcome small {
  display: block;
  margin-top: 12px;
  color: #98a1b2;

  font-size: clamp(10px, 0.86vw, 13px);
  font-weight: 600;
}

.waitlist-step__content {
  width: min(100%, 1120px);
  margin: 0 auto;
  flex: 1;
}

.waitlist-step__content h2 {
  margin-bottom: clamp(9px, 1.2vw, 16px);
  font-size: clamp(28px, 3.2vw, 54px);
}

.waitlist-step__content p {
  margin: 0 0 clamp(31px, 4vw, 56px);
}

.waitlist-label {
  display: block;
  margin-bottom: clamp(8px, 0.9vw, 12px);
  color: #191C1E;
  font-size: clamp(12px, 0.98vw, 16px);
  font-weight: 600;
  line-height: 1.3;
}

.waitlist-question-label {
  margin-bottom: 14px !important;
  color: #191C1E;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
}

.waitlist-help,
.waitlist-hint {
  color: #a2abba;

  font-size: clamp(9px, 0.75vw, 12px);
  font-weight: 600;
}

.waitlist-help {
  margin-top: 6px;
}

.waitlist-control {
  min-height: clamp(42px, 4vw, 58px);
  border: 1px solid var(--waitlist-line);
  border-radius: 8px;
  background-color: #ffffff;
  color: #252b38;

  font-size: clamp(12px, 0.95vw, 15px);
  font-weight: 500;
  padding: clamp(10px, 1.05vw, 15px) clamp(13px, 1.4vw, 20px);
  box-shadow: none;
}


textarea.form-control{
  background-color:#F2F4F6;
}

select.form-control{
  background-color:#F2F4F6;
}


.waitlist-control::placeholder {
  color: #b3bdcc;
}

.waitlist-control:focus {
  border-color: var(--waitlist-blue);
  box-shadow: 0 0 0 3px rgba(18, 99, 255, 0.12);
}

.waitlist-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: min(100%, 1120px);
  margin: 0 auto;
  padding-top: clamp(35px, 5vh, 64px);
}

.waitlist-primary,
.waitlist-secondary,
.waitlist-success__button {
  display: inline-flex;
  min-height: clamp(38px, 3.6vw, 54px);
  align-items: center;
  justify-content: center;
  gap: 7px;
  border-radius: 999px;
  font-size: clamp(12px, 0.95vw, 15px);
  font-weight: 800;
  line-height: 1;
  padding: 0 clamp(22px, 2.2vw, 34px);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.waitlist-primary {
  min-width: clamp(99px, 8.6vw, 138px);
  border: 1px solid var(--waitlist-blue);
  background: var(--waitlist-blue);
  color: #ffffff;
  box-shadow: 0 8px 16px rgba(18, 99, 255, 0.27);
}

.waitlist-primary:hover,
.waitlist-primary:focus {
  background: var(--waitlist-blue-dark);
  color: #ffffff;
  transform: translateY(-1px);
}

.waitlist-primary .fa-solid {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: currentColor;
  font-size: 0.95em;
  line-height: 1;
  margin-left: 2px;
}

.waitlist-secondary {
  min-width: clamp(82px, 7.4vw, 124px);
  border: 1px solid var(--waitlist-blue);
  background: #ffffff;
  color: var(--waitlist-blue);
}

.waitlist-secondary:hover,
.waitlist-secondary:focus {
  background: rgba(18, 99, 255, 0.07);
  color: var(--waitlist-blue);
}

.waitlist-card-grid {
  margin-top: 0;
}

.waitlist-option-card,
.waitlist-choice-list label,
.waitlist-audience-list label,
.waitlist-check-grid label,
.waitlist-policy-list label {
  cursor: pointer;
  user-select: none;
}

.waitlist-option-card {
  display: flex;
  min-height: clamp(74px, 8.2vw, 128px);
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(7px, 0.8vw, 12px);
  padding: clamp(13px, 1.55vw, 24px) clamp(10px, 1.2vw, 18px);
  border: 1px solid #CBD5E1;
  border-radius: 10px;
  background: #ffffff;
  text-align: center;
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.waitlist-option-card input,
.waitlist-choice-list input,
.waitlist-audience-list input,
.waitlist-check-grid input,
.waitlist-policy-list input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.waitlist-option-icon {
  display: inline-flex;
  width: clamp(22px, 2.3vw, 36px);
  height: clamp(22px, 2.3vw, 36px);
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(18, 99, 255, 0.1);
  color: var(--waitlist-blue);
  font-size: clamp(8px, 0.72vw, 11px);
  font-weight: 900;
}

.waitlist-option-card span:last-child {
  color: #293042;
  font-size: clamp(10px, 0.88vw, 14px);
  font-weight: 800;
  line-height: 1.25;
}

.waitlist-option-card:has(input:checked),
.waitlist-choice-list label:has(input:checked),
.waitlist-audience-list label:has(input:checked),
.waitlist-check-grid label:has(input:checked) {
  border-color: var(--waitlist-blue);
  background: #eef5ff;
  box-shadow: 0 0 0 1px rgba(18, 99, 255, 0.12);
}

.waitlist-choice-list {
  display: grid;
  gap: clamp(12px, 1.2vw, 18px);
}

.waitlist-choice-list label,
.waitlist-check-grid label,
.waitlist-policy-list label {
  position: relative;
  display: flex;
  min-height: clamp(41px, 4vw, 58px);
  align-items: center;
  gap: 11px;
  width: 100%;
  margin: 0;
  border: 1px solid var(--waitlist-line);
  border-radius: 9px;
  background: #ffffff;
  color: #303748;

  font-size: clamp(12px, 0.95vw, 15px);
  font-weight: 600;
  line-height: 1.35;
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.waitlist-choice-list label,
.waitlist-policy-list label {
  padding: 0 clamp(15px, 1.3vw, 22px) 0 clamp(39px, 3.2vw, 52px);
}

.waitlist-choice-list label::before,
.waitlist-audience-list label::before {
  content: "";
  position: absolute;
  left: 15px;
  width: 12px;
  height: 12px;
  border: 1px solid #cbd5e4;
  border-radius: 999px;
  background: #ffffff;
}

.waitlist-choice-list label:has(input:checked)::before,
.waitlist-audience-list label:has(input:checked)::before {
  border: 4px solid var(--waitlist-blue);
}

.waitlist-audience-list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: clamp(12px, 1.2vw, 18px);
}

.waitlist-audience-list label {
  position: relative;
  display: inline-flex;
  min-width: clamp(128px, 12vw, 180px);
  min-height: clamp(42px, 4vw, 58px);
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0 19px 0 42px;
  border: 1px solid var(--waitlist-line);
  border-radius: 9px;
  background: #ffffff;
  color: #303748;

  font-size: clamp(12px, 0.95vw, 15px);
  font-weight: 700;
  width: fit-content;
}

.waitlist-check-grid label,
.waitlist-policy-list label {
  padding: 0 clamp(14px, 1.3vw, 22px) 0 clamp(39px, 3.2vw, 52px);
}

.waitlist-check-grid label::before,
.waitlist-policy-list label::before {
  content: "";
  position: absolute;
  left: 15px;
  width: 12px;
  height: 12px;
  border: 1px solid #cbd5e4;
  border-radius: 2px;
  background: #ffffff;
}

.waitlist-check-grid label:has(input:checked)::before,
.waitlist-policy-list label:has(input:checked)::before {
  border-color: var(--waitlist-blue);
  background: var(--waitlist-blue);
  box-shadow: inset 0 0 0 2px #ffffff;
}

.waitlist-check-grid.is-invalid label {
  border-color: #dc3545;
}

.waitlist-policy-list {
  display: grid;
  gap: 12px;
}

.waitlist-policy-list label {
  min-height: auto;
  padding-top: clamp(8px, 0.9vw, 12px);
  padding-bottom: clamp(8px, 0.9vw, 12px);
  border: 0;
  background: transparent;
  color: #596376;
  font-size: clamp(11px, 0.86vw, 14px);
  font-weight: 500;
}

.waitlist-policy-list label::before {
  top: 10px;
}

.waitlist-success {
  min-height: 100vh;
  align-items: center;
  justify-content: center;
  padding: clamp(42px, 6vw, 88px) clamp(22px, 7vw, 120px);
  text-align: center;
}

.waitlist-success__icon {
  display: inline-flex;
  width: clamp(72px, 7vw, 118px);
  height: clamp(72px, 7vw, 118px);
  align-items: center;
  justify-content: center;
  margin-bottom: clamp(25px, 3vw, 42px);
  border-radius: 999px;
  background: #c9f9df;
}

.waitlist-success__icon span {
  display: inline-flex;
  width: clamp(45px, 4.4vw, 74px);
  height: clamp(45px, 4.4vw, 74px);
  align-items: center;
  justify-content: center;
  border-radius: inherit;
  background: #7defb5;
  color: #078252;
  font-size: clamp(29px, 2.8vw, 46px);
  font-weight: 900;
}

.waitlist-success h2 {
  font-size: clamp(25px, 3.3vw, 54px);
}

.waitlist-success h3 {
  margin: clamp(8px, 1vw, 14px) 0 0;
  color: var(--waitlist-green);
  font-size: clamp(16px, 1.35vw, 22px);
  font-weight: 800;
}

.waitlist-success p {
  max-width: 760px;
  margin-top: clamp(15px, 1.7vw, 24px);
}

.waitlist-next {
  width: 100%;
  max-width: 640px;
  margin: clamp(28px, 3vw, 48px) auto 0;
  text-align: left;
}

.waitlist-next h4 {
    margin: 0 0 clamp(13px, 1.3vw, 20px);
    color: #222838;
    font-size: clamp(13px, 1.08vw, 17px);
    font-weight: 900;
    border-bottom: 2px solid #059669;
    padding-bottom: 12px;
    width: fit-content;
}

.waitlist-next ul {
  display: grid;
  gap: clamp(13px, 1.3vw, 20px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.waitlist-next li {
  display: flex;
  align-items: flex-start;
  gap: clamp(10px, 1vw, 15px);
  color: #435064;

  font-size: clamp(12px, 0.98vw, 16px);
  font-weight: 600;
  line-height: 1.4;
}

.waitlist-next li span {
  display: inline-flex;
  width: clamp(17px, 1.45vw, 23px);
  height: clamp(17px, 1.45vw, 23px);
  flex: 0 0 clamp(17px, 1.45vw, 23px);
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--waitlist-green);
  color: #ffffff;
  font-size: clamp(10px, 0.8vw, 13px);
  font-weight: 900;
}

.waitlist-success__button {
  min-width: clamp(140px, 12vw, 190px);
  margin-top: clamp(36px, 4vw, 58px);
  border: 1px solid var(--waitlist-green);
  background: var(--waitlist-green);
  color: #ffffff;
  box-shadow: 0 8px 16px rgba(18, 168, 107, 0.2);
}

.waitlist-success__button:hover,
.waitlist-success__button:focus {
  background: #0d925d;
  color: #ffffff;
  transform: translateY(-1px);
}

@media (max-width: 767px) {
  .waitlist-flow-modal .modal-dialog {
    width: 100vw;
    height: 100vh;
    margin: 0;
    max-width: none;
  }

  .waitlist-flow-modal .modal-body {
    min-height: 100vh;
    max-height: 100vh;
    border-radius: 0;
  }

  .waitlist-flow__close {
    top: 14px;
    right: 14px;
    width: 30px;
    height: 30px;
    font-size: 20px;
  }

  .waitlist-step,
  .waitlist-success {
    min-height: 100vh;
    padding: 44px 20px 30px;
  }

  .waitlist-step__top {
    align-items: flex-start;
    font-size: 9px;
  }

  .waitlist-step__divider,
  .waitlist-progress {
    margin-bottom: 34px;
  }

  .waitlist-step__content p {
    margin-bottom: 24px;
  }

  .waitlist-actions {
    padding-top: 28px;
  }

  .waitlist-audience-list label {
    min-width: calc(50% - 6px);
  }
}

@media (max-width: 430px) {
  .waitlist-option-card {
    min-height: 84px;
  }

  .waitlist-audience-list label {
    min-width: 100%;
  }

  .waitlist-actions {
    gap: 10px;
  }
}

/* ==========================================================================
   Global Responsive Section Title System
   ========================================================================== */
:where(section, main) :is(
  h1.section-headline,
  h2.section-headline,
  h2.section__title,
  h2.section-title,
  h2.featured-main-title,
  h2.article-section-title,
  h2.inline-cta-heading,
  h2.cta-heading,
  h2[class$="__title"],
  h2[class*="__title "]
),
:where(section, main) :is(
  .common-section-header,
  .ambassador-section-heading,
  .ambassador-roles__intro,
  .ambassador-tracks__heading,
  .ambassador-benefits__heading,
  .ambassador-expectations__intro,
  .ambassador-selection__intro,
  .ambassador-faq__heading
) h2 {
  width: 100%;
  max-width: 100%;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: manual;
  text-wrap: balance;
}

:where(section, main) :is(
  h2.section__title span,
  h2.section-title span,
  h2[class$="__title"] span,
  h2[class*="__title "] span
) {
  max-width: 100%;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

@media (max-width: 991px) {
  :where(section, main) :is(
    h1.section-headline,
    h2.section-headline,
    h2.section__title,
    h2.section-title,
    h2.featured-main-title,
    h2.article-section-title,
    h2.inline-cta-heading,
    h2.cta-heading,
    h2[class$="__title"],
    h2[class*="__title "]
  ),
  :where(section, main) :is(
    .common-section-header,
    .ambassador-section-heading,
    .ambassador-roles__intro,
    .ambassador-tracks__heading,
    .ambassador-benefits__heading,
    .ambassador-expectations__intro,
    .ambassador-selection__intro,
    .ambassador-faq__heading
  ) h2 {
    font-size: clamp(2rem, 5vw, 3rem) !important;
    line-height: 1.12 !important;
    letter-spacing: 0 !important;
    margin-bottom: clamp(0.85rem, 2vw, 1.35rem) !important;
    text-align: left;
  }

  :where(section, main) :is(
    h2.section__title span,
    h2.section-title span,
    h2[class$="__title"] span,
    h2[class*="__title "] span
  ) {
    min-height: 0 !important;
    line-height: 1.18 !important;
    text-align: left;
  }
}

@media (max-width: 767px) {
  :where(section, main) :is(
    h1.section-headline,
    h2.section-headline,
    h2.section__title,
    h2.section-title,
    h2.featured-main-title,
    h2.article-section-title,
    h2.inline-cta-heading,
    h2.cta-heading,
    h2[class$="__title"],
    h2[class*="__title "]
  ),
  :where(section, main) :is(
    .common-section-header,
    .ambassador-section-heading,
    .ambassador-roles__intro,
    .ambassador-tracks__heading,
    .ambassador-benefits__heading,
    .ambassador-expectations__intro,
    .ambassador-selection__intro,
    .ambassador-faq__heading
  ) h2 {
    font-size: clamp(1.5rem, 6.2vw, 1.85rem) !important;
    line-height: 1.16 !important;
    margin-bottom: clamp(0.75rem, 3vw, 1.1rem) !important;
    padding-inline: 0 !important;
  }

  :where(section, main) :is(
    h1.section-headline,
    h2.section-headline,
    h2.section__title,
    h2.section-title,
    h2.featured-main-title,
    h2.article-section-title,
    h2.inline-cta-heading,
    h2.cta-heading,
    h2[class$="__title"],
    h2[class*="__title "]
  ) br {
    display: none;
  }

  :where(section, main) :is(
    h2.section__title span,
    h2.section-title span,
    h2[class$="__title"] span,
    h2[class*="__title "] span
  ) {
    display: inline !important;
    padding: 0 0.22em !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  :where(section, main) :is(
    .common-section-header,
    .ambassador-section-heading,
    .ambassador-roles__intro,
    .ambassador-tracks__heading,
    .ambassador-benefits__heading,
    .ambassador-expectations__intro,
    .ambassador-selection__intro,
    .ambassador-faq__heading
  ) {
    margin-bottom: clamp(1.25rem, 5vw, 2rem) !important;
  }
}

@media (max-width: 430px) {
  :where(section, main) :is(
    h1.section-headline,
    h2.section-headline,
    h2.section__title,
    h2.section-title,
    h2.featured-main-title,
    h2.article-section-title,
    h2.inline-cta-heading,
    h2.cta-heading,
    h2[class$="__title"],
    h2[class*="__title "]
  ),
  :where(section, main) :is(
    .common-section-header,
    .ambassador-section-heading,
    .ambassador-roles__intro,
    .ambassador-tracks__heading,
    .ambassador-benefits__heading,
    .ambassador-expectations__intro,
    .ambassador-selection__intro,
    .ambassador-faq__heading
  ) h2 {
    font-size: clamp(1.45rem, 7vw, 1.72rem) !important;
  }
}

/* ==========================================================================
   Global Responsive Hero Title System
   ========================================================================== */
:where(.hero-wrapper, section[class*="hero"], main[class*="hero"]) :is(
  h1,
  .hero-headline,
  .hero-title,
  .about-hero__title,
  .investors-hero__title,
  .learning-hub-hero__title,
  .ai-hero-title
) {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: manual;
  text-wrap: balance;
}

@media (max-width: 991px) {
  :where(.hero-wrapper, section[class*="hero"], main[class*="hero"]) :is(
    h1,
    .hero-headline,
    .hero-title,
    .about-hero__title,
    .investors-hero__title,
    .learning-hub-hero__title,
    .ai-hero-title
  ) {
    max-width: min(100%, 780px);
    font-size: clamp(2.5rem, 7vw, 4rem) !important;
    line-height: 1.06 !important;
    letter-spacing: -0.02em !important;
  }
}

@media (max-width: 767px) {
  :where(.hero-wrapper, section[class*="hero"], main[class*="hero"]) {
    padding-right: max(1rem, env(safe-area-inset-right));
    padding-left: max(1rem, env(safe-area-inset-left));
  }

  :where(.hero-wrapper, section[class*="hero"], main[class*="hero"]) :is(
    h1,
    .hero-headline,
    .hero-title,
    .about-hero__title,
    .investors-hero__title,
    .learning-hub-hero__title,
    .ai-hero-title
  ) {
    max-width: 100%;
    font-size: clamp(2rem, 9.2vw, 2.1rem) !important;
    line-height: 1.14 !important;
    letter-spacing: -0.01em !important;
    margin-bottom: clamp(1rem, 4vw, 1.5rem) !important;
  }

  :where(.hero-wrapper, section[class*="hero"], main[class*="hero"]) :is(
    h1,
    .hero-headline,
    .hero-title,
    .about-hero__title,
    .investors-hero__title,
    .learning-hub-hero__title,
    .ai-hero-title
  ) br {
    display: none;
  }

  :where(.hero-wrapper, section[class*="hero"], main[class*="hero"]) :is(
    .hero-headline-line,
    h1 > span,
    .hero-title > span
  ) {
    max-width: 100%;
    white-space: normal !important;
  }
}

@media (max-width: 430px) {
  :where(.hero-wrapper, section[class*="hero"], main[class*="hero"]) :is(
    h1,
    .hero-headline,
    .hero-title,
    .about-hero__title,
    .investors-hero__title,
    .learning-hub-hero__title,
    .ai-hero-title
  ) {
    font-size: clamp(1.8rem, 9.8vw, 2rem) !important;
  }
}

/* ==========================================================================
   Responsive CTA Layout Updates (Hiding Image & Centering Typography)
   ========================================================================== */
@media (max-width: 991.98px) {
  .cta-section,
  .cta-card {
    height: auto !important;
    min-height: 0 !important;
  }
  
  .cta-content-col {
    width: 100% !important;
    max-width: 100% !important;
    margin-inline: auto !important;
    text-align: center !important;
    align-items: center !important;
    padding: clamp(2rem, 5vw, 3.5rem) clamp(1.25rem, 4vw, 2.5rem) !important;
  }

  .cta-content-col .cta-heading,
  .cta-content-col .cta-subtext {
    text-align: center !important;
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .cta-content-col .btn-cta-join {
    align-self: center !important;
  }
}
