:root {
  --text--default: #0a0a0a;
  --text--secondary-dark: #b0b0b0;
  --brand--primary: #003dff;
  --brand--sky: #087df2;
  --brand--cobalt: #0563f7;
  --action--secondary--hover: #003dff1a;
  --action--secondary--pressed: #003dff33;
  --surface--background: #f8f9fb;
  --text--secondary: #7f858a;
  --border--subtle: #dfe8e7;
  --surface--header-bg: #fffc;
  --text--inverted: white;
  --surface--canvas-dark: #121212;
  --surface--base: #0a0a0a;
  --border--strong: #c5c5c5;
  --status--error: #dc2626;
  --neutral--gray--300: #c5c5c5;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

h2 {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 32px;
  font-weight: 700;
  line-height: 36px;
}

.hero-heading {
  color: var(--text--default);
  text-align: center;
  margin-top: 32px;
  margin-bottom: 8px;
  font-family: Manrope, sans-serif;
  font-size: 48px;
  font-weight: 800;
  line-height: 110%;
}

.main-paragraph {
  color: var(--text--default);
  text-align: center;
  max-width: 704px;
  margin-bottom: 32px;
  margin-left: auto;
  margin-right: auto;
  font-family: Manrope, sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 150%;
  display: block;
}

.main-paragraph.dark {
  color: var(--text--secondary-dark);
  text-align: left;
}

.button {
  background-color: var(--brand--primary);
  color: #fff;
  text-align: center;
  border-radius: 12px;
  padding: 16px;
  font-family: Manrope, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 100%;
  transition: background-color .2s;
}

.button:hover {
  background-color: var(--brand--sky);
}

.button:active {
  background-color: var(--brand--cobalt);
}

.button:focus {
  background-color: #05f;
  border: 1px #000;
}

.button:focus-visible, .button[data-wf-focus-visible] {
  background-color: #05f;
}

.button.secondary {
  border: 1px solid var(--brand--primary);
  background-color: #fff0;
  min-height: 40px;
  max-height: 40px;
  padding-top: 10px;
  padding-bottom: 10px;
  transition: color .2s, background-color .2s;
}

.button.secondary:hover {
  background-color: var(--action--secondary--hover);
  color: var(--brand--sky);
}

.button.secondary:active {
  background-color: var(--action--secondary--pressed);
}

.button.tertiary {
  color: var(--brand--primary);
  background-color: #fff0;
}

.button.tertiary:hover {
  background-color: var(--action--secondary--hover);
}

.button.tertiary:active, .button.tertiary:focus {
  background-color: var(--action--secondary--pressed);
}

.hero-container {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  margin-top: 112px;
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
}

.body {
  background-color: var(--surface--background);
  color: var(--text--secondary);
  font-family: Manrope, sans-serif;
}

.hero-image {
  border-radius: 24px;
  margin-top: 56px;
  margin-bottom: 56px;
  box-shadow: 0 4px 12px #0003, 0 20px 80px #003dff26;
}

.hero-subheading {
  color: var(--brand--primary);
  margin-top: 0;
  margin-bottom: 24px;
  font-size: 48px;
  font-weight: 800;
  line-height: 110%;
}

.lottie-animation {
  min-width: 136px;
  max-width: 136px;
  min-height: 136px;
  max-height: 136px;
  margin-top: 0;
}

.header-container {
  border: 1px solid var(--border--subtle);
  background-color: var(--surface--header-bg);
  opacity: 1;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  border-radius: 12px;
  padding: 16px;
}

.logo {
  min-height: 40px;
  max-height: 40px;
  margin-top: 4px;
  display: inline-block;
}

.navbar {
  background-color: #0000;
  margin-top: 16px;
  margin-left: 16px;
  margin-right: 16px;
  padding-left: 0;
  position: fixed;
  inset: 0% 0% auto;
}

.hero-section {
  margin-top: 24px;
}

.partners {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  place-items: center;
  margin-top: 8px;
  margin-bottom: 56px;
  display: grid;
}

.partner-image {
  filter: grayscale();
  transition: filter .2s;
}

.partner-image:hover {
  filter: grayscale(0%);
}

.section-heading {
  color: var(--text--default);
  margin-top: 24px;
  margin-bottom: 8px;
  font-family: Manrope, sans-serif;
  font-size: 32px;
}

.section-heading.dark {
  color: var(--text--inverted);
}

.section {
  justify-content: center;
  align-items: center;
  height: 95vh;
  margin-bottom: 0;
  display: flex;
}

.section.partners {
  background-color: #fff;
  margin-top: 0;
}

.section.faq {
  height: auto;
  margin-top: 80px;
  margin-bottom: 80px;
}

.cards-div {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 40px;
  margin-bottom: 56px;
  display: grid;
}

.card-heading {
  color: var(--text--default);
  margin-top: 24px;
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 28px;
}

.default-text {
  color: var(--text--default);
  margin-bottom: 0;
}

.default-text.dark {
  color: var(--text--inverted);
}

.default-text.modal {
  margin-bottom: 24px;
}

.how-it-works-card {
  border: 1px solid var(--border--subtle);
  background-color: #fff;
  border-radius: 24px;
  padding: 24px 16px;
}

._3d-image {
  width: 80%;
}

.card-image-container {
  justify-content: center;
  align-items: center;
  display: flex;
}

.guided-rebalancing {
  background-color: var(--surface--canvas-dark);
  justify-content: center;
  align-items: center;
  height: 95vh;
  margin-top: 0;
  display: flex;
}

.guided-rebalancing-div {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.guided-rebalancing-left-column {
  justify-content: center;
  align-items: center;
  display: flex;
}

.guided-rebalancing-right-column {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.footer-background {
  background-color: var(--surface--base);
}

.footer-link {
  color: var(--text--secondary-dark);
  font-size: 12px;
  font-weight: 400;
  text-decoration: none;
  transition: color .2s;
}

.footer-link:hover {
  color: var(--brand--sky);
  text-decoration: underline;
}

.footer-link-block {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.x {
  background-color: #0000;
  border-radius: 12px;
  min-width: 40px;
  max-width: 40px;
  min-height: 40px;
  max-height: 40px;
  padding: 2px;
  transition: background-color .2s;
}

.x:hover {
  background-color: var(--action--secondary--hover);
}

.x:active {
  background-color: var(--action--secondary--pressed);
}

.footer-text {
  color: var(--text--secondary-dark);
  font-size: 12px;
}

.footer-bottom-text-div {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.footer-bottom-div {
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
  margin-bottom: 48px;
  display: flex;
}

.footer-top-logo-div {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.footer-top-buttons-div {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.footer-top-div {
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 48px;
  display: flex;
}

.divider-div {
  background-color: #ffffff1a;
  justify-content: space-between;
  align-items: center;
  min-height: 1px;
  max-height: 1px;
  margin-top: 32px;
  padding-bottom: 0;
  display: flex;
}

.container {
  flex-flow: column;
  flex: 1;
  padding-left: 0;
  padding-right: 0;
  display: flex;
}

.container.faq {
  flex: 0 auto;
  width: 100%;
  height: auto;
  display: block;
}

.logo-mobile {
  display: none;
}

.modal-wrapper {
  z-index: 9998;
  background-color: #0006;
  justify-content: center;
  align-items: center;
  display: none;
  position: fixed;
  inset: 0%;
  overflow: visible;
}

.modal-card {
  background-color: #fff;
  border-radius: 20px;
  flex-flow: column;
  order: 1;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  max-width: 400px;
  max-height: 90vh;
  display: flex;
  position: relative;
  box-shadow: 0 20px 40px -4px #0000001f;
}

.modal-body {
  flex: 1;
  padding: 24px;
}

.modal-footer {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  justify-content: flex-end;
  align-items: center;
  padding-bottom: 0;
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
}

.text-field {
  border: 1px solid var(--border--strong);
  color: var(--text--default);
  border-radius: 12px;
  min-height: 48px;
  margin-bottom: 0;
  font-size: 16px;
  line-height: 24px;
}

.field-label {
  color: var(--text--default);
  margin-bottom: 8px;
  font-weight: 500;
}

.modal-heading {
  color: var(--text--default);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 20px;
  line-height: 28px;
}

.modal-header-div {
  justify-content: space-between;
  margin-bottom: 24px;
  display: flex;
}

.faq-item {
  border: 1px solid var(--border--subtle);
  background-color: #fff;
  border-radius: 16px;
  padding: 24px 16px;
}

.faq-list {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  display: flex;
}

.faq-item {
  cursor: auto;
  transition: border-color .2s;
}

.faq-item:hover {
  border-color: var(--border--strong);
}

.faq-question {
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.faq-heading {
  color: var(--text--default);
  font-size: 18px;
  font-weight: 700;
  line-height: 110%;
}

.faq-answer {
  height: 0;
  transition: height .3s;
  overflow: hidden;
}

.faq-answer-inner {
  padding-top: 16px;
  padding-bottom: 0;
}

.faq-answer-text {
  color: var(--text--default);
  margin-bottom: 0;
  font-size: 16px;
  line-height: 150%;
  display: block;
}

.close {
  cursor: pointer;
}

.text-block {
  display: block;
}

.waitlist-error {
  color: var(--status--error);
  padding-top: 4px;
  display: none;
}

.toast {
  z-index: 9999999;
  background-color: var(--surface--canvas-dark);
  opacity: 0;
  pointer-events: none;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  height: 64px;
  padding-left: 12px;
  padding-right: 12px;
  transition: transform .2s, opacity .2s;
  display: flex;
  position: fixed;
  bottom: 24px;
  left: 24px;
  transform: translate(0, 10px);
  box-shadow: 0 8px 24px -2px #00000026;
}

.toast.is-visible {
  z-index: 999999;
  opacity: 100;
  pointer-events: auto;
  transform: translate(0);
}

.toast__text {
  color: var(--text--inverted);
  font-weight: 500;
}

.toast__content {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.toast__icon {
  width: 20px;
  height: 20px;
}

.toast__close {
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  margin-left: auto;
  display: flex;
}

.toast__close-icon {
  width: 16px;
  height: 16px;
}

.success-message {
  opacity: 0;
  height: 0;
}

.section-policy-terms {
  padding-top: 136px;
  padding-bottom: 80px;
  font-family: Manrope, sans-serif;
}

.container-policy-terms {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.breadcrumb {
  color: var(--text--default);
  font-family: Manrope, sans-serif;
  font-weight: 500;
}

.breadcrumb.home {
  color: var(--text--secondary);
  text-decoration: none;
  text-decoration-thickness: 0;
}

.breadcrumb.home:hover {
  color: var(--brand--primary);
}

.breadcrumb.home:active {
  text-decoration: underline;
}

.breadcrumb.divider {
  color: var(--text--secondary);
}

.breadcrumb-div {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  display: flex;
}

.text-large {
  color: var(--text--default);
  margin-bottom: 4px;
  font-family: Manrope, sans-serif;
  font-size: 16px;
  line-height: 24px;
}

.text-small {
  color: var(--text--secondary);
  margin-bottom: 16px;
  font-family: Manrope, sans-serif;
}

.section-subheading {
  color: var(--text--default);
  text-align: left;
  margin-top: 0;
  margin-bottom: 8px;
  font-family: Manrope, sans-serif;
  font-size: 20px;
  line-height: 28px;
}

.section-subheading-small {
  color: var(--text--default);
  margin-top: 16px;
  margin-bottom: 8px;
  font-family: Manrope, sans-serif;
  font-size: 18px;
  font-weight: 600;
}

.rich-text-block {
  color: var(--brand--primary);
  margin-bottom: 24px;
}

.list {
  margin-bottom: 0;
}

.link-block {
  text-decoration: none;
}

.link-block:hover {
  color: var(--brand--primary);
  text-decoration: underline;
}

@media screen and (max-width: 991px) {
  .hero-container {
    margin-top: 112px;
  }

  .card-heading {
    font-size: 16px;
  }

  .logo-mobile {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .hero-container {
    height: auto;
    min-height: auto;
    margin-top: 112px;
  }

  .hero-section {
    min-height: auto;
  }

  .partners {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .section {
    justify-content: center;
    align-items: center;
    height: auto;
    margin-top: 0;
  }

  .section.faq {
    margin-left: 0;
    margin-right: 0;
  }

  .cards-div {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }

  .card-heading, .default-text {
    text-align: center;
  }

  ._3d-image {
    width: 50%;
  }

  .guided-rebalancing {
    justify-content: center;
    align-items: center;
  }

  .container {
    flex: 1;
    margin: 56px 16px;
  }

  .footer-container {
    margin-left: 16px;
    margin-right: 16px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .logo-mobile {
    vertical-align: baseline;
    display: none;
  }
}

@media screen and (max-width: 479px) {
  .hero-heading {
    margin-top: 16px;
    font-size: 32px;
  }

  .main-paragraph {
    margin-bottom: 24px;
    font-size: 16px;
  }

  .main-paragraph.dark {
    font-size: 14px;
  }

  .button {
    flex: 0 auto;
  }

  .button.tertiary {
    overflow: visible;
  }

  .hero-image {
    border-radius: 16px;
    margin-top: 32px;
  }

  .hero-subheading {
    text-align: center;
    margin-bottom: 16px;
    font-size: 32px;
  }

  .logo {
    display: none;
  }

  .partners {
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 1fr 1fr 1fr;
    margin-bottom: 0;
  }

  .section-heading {
    margin-top: 32px;
    margin-bottom: 16px;
    font-size: 28px;
  }

  .section {
    flex-flow: row;
    display: block;
  }

  .section.partners {
    padding-bottom: 8px;
  }

  .cards-div {
    margin-top: 24px;
    margin-bottom: 0;
  }

  ._3d-image {
    width: 80%;
  }

  .guided-rebalancing {
    height: auto;
  }

  .guided-rebalancing-div {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .footer-link-block {
    flex-flow: column;
  }

  .footer-bottom-div {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    flex-flow: column;
  }

  .footer-top-logo-div {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    justify-content: center;
    align-items: center;
  }

  .footer-top-buttons-div {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    flex-flow: column;
  }

  .footer-top-div {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    flex-flow: column;
    justify-content: space-between;
    align-items: center;
  }

  .container {
    flex: 1;
    margin-top: 32px;
    margin-bottom: 32px;
  }

  .container.faq {
    width: auto;
    margin-left: 16px;
    margin-right: 16px;
  }

  .logo-mobile {
    vertical-align: middle;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    display: inline;
  }

  .modal-wrapper {
    justify-content: center;
    align-items: flex-end;
    display: none;
  }

  .modal-card {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    justify-content: center;
    align-items: stretch;
    max-width: 479px;
  }

  .modal-footer {
    flex-flow: column;
    align-items: stretch;
    margin-bottom: 24px;
  }

  .modal-header-div {
    justify-content: space-between;
    align-items: center;
  }

  .toast.is-visible {
    margin-left: 16px;
    margin-right: 16px;
    left: 0;
  }

  .section-policy-terms {
    padding-bottom: 32px;
  }
}

#w-node-_4ec2e113-1e26-424a-df22-dc28bdd3bec5-ad8c7801, #w-node-_7378724a-863c-34fe-fc70-3ef6d2f04d06-ad8c7801 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-b4525229-e6bf-aacf-1dbd-c5105dae98fe-ad8c7801 {
  grid-area: 1 / 3 / 2 / 4;
}

#w-node-b0b7c90e-d36d-9c3b-9ea5-ad9c36cd3dcc-ad8c7801, #w-node-b0b7c90e-d36d-9c3b-9ea5-ad9c36cd3dd3-ad8c7801 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-b0b7c90e-d36d-9c3b-9ea5-ad9c36cd3dda-ad8c7801 {
  grid-area: 1 / 3 / 2 / 4;
}


