@charset "UTF-8";
.col-1 {
  flex: 0 0 auto;
  width: calc(8.3333333333% - var(--col-gap) * 0.9166666667);
}

.col-2 {
  flex: 0 0 auto;
  width: calc(16.6666666667% - var(--col-gap) * 0.8333333333);
}

.col-3 {
  flex: 0 0 auto;
  width: calc(25% - var(--col-gap) * 0.75);
}

.col-4 {
  flex: 0 0 auto;
  width: calc(33.3333333333% - var(--col-gap) * 0.6666666667); /* 2 col-gaps divided by 3 sections. OR alternatively per col-5: col-gap times the size of the remaining section */
}

.col-5 {
  flex: 0 0 auto;
  width: calc(41.6666666667% - var(--col-gap) * 0.5833333333); /* col-gap times the size of the remaining section */
}

.col-6 {
  flex: 0 0 auto;
  width: calc(50% - var(--col-gap) * 0.5);
}

.col-7 {
  flex: 0 0 auto;
  width: calc(58.3333333333% - var(--col-gap) * 0.4166666667);
}

.col-8 {
  flex: 0 0 auto;
  width: calc(66.6666666667% - var(--col-gap) * 0.3333333333);
}

.col-9 {
  flex: 0 0 auto;
  width: calc(75% - var(--col-gap) * 0.25);
}

.col-10 {
  flex: 0 0 auto;
  width: calc(83.3333333333% - var(--col-gap) * 0.1666666667);
}

.col-11 {
  flex: 0 0 auto;
  width: calc(91.6666666667% - var(--col-gap) * 0.0833333333);
}

.col-12 {
  flex: 0 0 auto;
  width: 100%;
}

.offset-right-6 {
  margin-right: calc(50% + var(--col-gap) * 0.25);
} /* percentage offset plus fraction of col-gap equal to the portion of the offset */
.offset-left-6 {
  margin-left: calc(50% + var(--col-gap) * 0.25);
} /* percentage offset plus fraction of col-gap equal to the portion of the offset */
body {
  --color--body-text: #464646;
  --color--dark-text: #1f1f1f;
}

a {
  text-decoration: none;
}

body, p, .p {
  font-family: "concourse-t3-regular", system-ui;
  color: var(--color--body-text);
}

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
  margin-top: 0;
  font-family: "concourse-t4-regular";
  font-weight: normal;
  color: var(--color--dark-text);
}

h1, .h1 {
  font-family: "concourse-t6-regular";
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

h2, .h2 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

h3, .h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

h4, .h4 {
  margin-bottom: 1rem;
}

.body-text {
  font-family: "concourse-t3-regular";
}

strong,
.body-text__bold {
  font-family: "concourse-t4-regular";
  font-weight: normal;
}

.body-text--italic {
  font-family: "concourse-t3-italic";
}

.link {
  color: var(--color--body-text);
  cursor: pointer;
  text-decoration: underline;
  text-decoration-style: dotted;
  text-decoration-thickness: 0.15rem;
  text-underline-offset: 0.2rem;
  text-decoration-color: #6caa98;
}

.link--border-bottom {
  border-bottom: 0.18rem dotted #6caa98;
  text-decoration: none;
}

.link,
.link:visited {
  color: var(--color--dark-text);
}

.link:hover {
  background: linear-gradient(to top, rgb(245, 245, 245) 80%, transparent 80%);
}

.link.link--on-bg-primary:hover {
  background: linear-gradient(to top, var(--bg-shaded--hover) 80%, transparent 80%);
}

.resources__ol {
  padding-left: 1rem;
}

.resources__ol li {
  padding-left: 0.5rem;
}

.link2,
.link2:visited,
.resources__ol a,
.resources__ol a:visited {
  color: var(--primary-1-1);
  text-decoration: underline;
}

.link2:hover,
.resources__ol a:hover {
  color: var(--primary-1-3);
  background: linear-gradient(to top, var(--bg-shaded--hover) 80%, transparent 80%);
}

.info-text {
  font-family: "concourse-t3-italic";
  font-size: 0.9rem;
  color: var(--color-muted);
}

code,
.code {
  color: #a90059;
  font-size: 0.9rem;
  font-family: courier-new, monospace;
}

li {
  margin-bottom: 0.5rem;
}

.landing__ul,
.landing__ol {
  margin: 0;
  margin-bottom: 1.25rem;
  padding-left: 0;
  list-style: none;
  font-size: 1.2rem;
}

.landing__ul li {
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 1rem;
  color: #464646;
}

.landing__ul li::before {
  position: absolute;
  content: "•";
  color: #6a9bdd;
  font-weight: bold;
  display: inline-block;
  width: 1rem;
  margin-left: -1rem;
}

.landing__ul-small li {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.landing__ol {
  counter-reset: landing-ol-counter;
}

.landing__ol li {
  position: relative;
  color: #464646;
  padding-left: 4rem;
  counter-increment: landing-ol-counter;
}

.landing__ol li::before {
  content: "Step " counter(landing-ol-counter);
  color: var(--bg-primary-1);
  background-color: #8e8e8e;
  padding: 0.2rem 0.5rem;
  border: none;
  border-radius: 1rem;
  font-family: "concourse-t4-regular";
  font-size: 1rem;
  display: inline-block;
  margin-right: 0.5rem;
  position: absolute;
  left: 0;
}

.landing__ol li.active::before {
  background-color: #6a9bdd;
}

.btn--landing {
  border-radius: 9999px;
  padding-left: 1rem;
  padding-right: 1rem;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

body {
  --color--body-text: #464646;
  --color--dark-text: #1f1f1f;
}

.landing-nav__section {
  position: sticky;
  top: -1rem;
  z-index: var(--z-high);
  background-color: var(--bg-primary-1);
  margin-bottom: 5rem;
  height: 3.5rem;
}

.landing-nav {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: sticky;
  top: 0.25rem;
  margin-top: 1rem;
  align-items: baseline;
  background-color: var(--bg-shaded--hover);
  padding: 1.5rem 2rem;
  border: 1px solid #d4d4d4;
  border-radius: 1.2rem;
}

.landing-nav__logo-subtext {
  font-family: "concourse-t3-regular";
  font-size: 1.5rem;
  color: #767676;
  display: none;
}
@media (min-width: 500px) {
  .landing-nav__logo-subtext {
    display: inline-block;
  }
}

.landing-nav__logo-link,
.landing-nav__logo-link:hover,
.landing-nav__logo-link:visited {
  color: inherit;
  text-decoration: none;
}

.landing-nav .main-nav__logo {
  font-size: 2rem;
  font-family: "concourse-t6-regular";
  margin: 0;
  border-radius: 0.75rem;
}

.main-nav__logo-flueron {
  width: 1.4rem;
  height: 1.4rem;
  position: absolute;
  margin-left: 0;
  top: 0.6rem;
}

.main-nav__logo::after {
  content: "*early-release beta version";
  position: absolute;
  width: 100%;
  font-size: 0.9rem;
  font-family: "concourse-t4-regular";
  top: 50px;
  left: 0px;
  white-space: nowrap;
  color: #545454;
}

.landing-nav__ul {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0;
  background-color: #e0e0e0;
  padding: 1rem;
  padding-bottom: 1.5rem;
  align-items: flex-end;
  border-radius: 1rem;
  border: 1px solid #bcbcbc;
}
@media (min-width: 960px) {
  .landing-nav__ul {
    flex-direction: row;
    padding: 0;
    align-items: flex-start;
    border: none;
  }
}

.nav__drop-list-btn {
  width: 2.1rem;
  height: 2.1rem;
  align-self: center;
  background-color: var(--bg-shaded--hover);
  border-width: 5px;
  border-style: solid;
  border-color: var(--bg-shaded--hover);
  border-radius: 15%;
}
@media (min-width: 960px) {
  .nav__drop-list-btn {
    display: none;
  }
}

.nav__drop-list-btn:hover,
.nav__drop-list-btn.is-on {
  border-color: var(--primary-1-1);
}

.nav__drop-list-btn:hover {
  cursor: pointer;
}

.nav__drop-list-btn svg {
  width: 100%;
  height: 100%;
}

.nav__drop-list-wrapper {
  display: flex;
  flex-direction: column;
  max-height: 0;
  overflow: hidden;
  transition: all 500ms;
  flex-basis: 100%;
  position: absolute;
  right: 0;
  top: 4.5rem;
  margin: 0.2rem;
}
@media (min-width: 960px) {
  .nav__drop-list-wrapper {
    position: unset;
    right: unset;
    top: unset;
    display: unset;
    flex-direction: unset;
    max-height: unset;
    overflow: unset;
    transition: unset;
    flex-basis: unset;
  }
}

.landing-nav__li {
  margin: 0;
  list-style: none;
  padding: 0.5rem 0;
  margin: 0 1rem;
}

.landing-nav__li:has(.btn--landing) {
  margin-right: 0;
  padding-bottom: 0;
  padding-top: 0;
  padding-right: 0;
}

.landing-nav__li--link {
  color: var(--primary-1-1);
  position: relative;
}

.landing-nav__logo-link {
  position: relative;
}

.landing-nav__li--link.active::before,
.landing-nav__li--link:hover::before,
.landing-nav__logo-link:hover::before {
  position: absolute;
  /* bottom: -33px; */
  left: 0;
  content: "";
  /* border-bottom: 9px solid #90b2a8; */
  width: 100%;
  /* background-color: #90b2a8; */
  /* height: 0.3rem; */
  /* border-top-right-radius: 1rem; */
  /* border-top-left-radius: 1rem; */
  /* border-color: red; */
  /* background-color: var(--primary-1-1); */
  /* background-color: #c6c6c6; */
  /* background-color: #90b2a8; */
  /* background-color: #acc7bf; */
  /* background-color: #b3b3b3; */
  /* height: 5px; */
  /* bottom: -33px; */
  /* border-radius: 1rem; */
  /* bottom: -16px; */
  border-bottom: 4px dotted #9c9c9c;
  bottom: -6px;
}
@media (min-width: 960px) {
  .landing-nav__li--link.active::before,
  .landing-nav__li--link:hover::before,
  .landing-nav__logo-link:hover::before {
    bottom: -14px;
  }
}

.landing-nav__logo-link:hover::before {
  bottom: -10px;
}

.landing__trial-button {
  margin-top: 1rem;
}
@media (min-width: 960px) {
  .landing__trial-button {
    margin-top: 0;
  }
}

.footer__main-heading {
  display: flex;
}

.footer__main-heading-fleuron {
  margin-right: auto;
  height: 1.2rem;
  width: 1.2rem;
  display: inline-block;
}

.footer__main-heading-period {
  font-size: 44px;
  color: #587baa;
  line-height: 1.05rem;
  display: inline-block;
  margin-left: -1px;
}

.footer__ul li {
  display: flex;
  min-width: 10rem;
  margin-bottom: 0.7rem;
}

.footer__ul li a {
  width: 100%;
}

/*# sourceMappingURL=landing.css.map */
