@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body,
h1,
h2,
h3,
h4,
p,
ul,
ol {
  margin: 0;
}

ul,
ol {
  padding: 0;
}

img {
  display: block;
  height: auto;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  display: block;
}

body.has-fixed-header {
  padding-top: var(--certifq-header-height, 0);
}

body {
  color: #353535;
  font-family: "Geist", "Segoe UI", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

p {
  color: #4A4A4A;
  font-size: 18px;
  text-wrap: pretty;
}

h1,
h2,
h3,
h4 {
  font-feature-settings: "ss01" 1;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.o-container {
  margin-inline: auto;
  max-width: calc(1200px + 24px * 2);
  padding-inline: 24px;
  width: 100%;
}

.wp-block-cover.alignfull .wp-block-cover__background {
  margin-block-start: 0;
  max-width: 100%;
}
.o-container .wp-block-cover.alignfull {
  left: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  position: relative;
  width: 100vw;
  max-width: 100vw;
}

.wp-block-list {
  padding-inline-start: 1.4em;
}
.wp-block-list li {
  padding-left: 0.6rem;
}

.negative-top {
  margin-top: -64px;
}
@media (min-width: 768px) {
  .negative-top {
    margin-top: -96px;
    padding: 40px;
  }
}

.c-button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  font-size: 0.95rem;
  gap: 8px;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  text-align: center;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.c-button--primary {
  background-color: #11b7ab;
  color: #ffffff;
}

.c-button--secondary {
  background-color: #ffffff;
  color: #353535;
}

.c-button--outline {
  background-color: transparent;
  border-color: #11b7ab;
  color: #353535;
}

.c-button:hover {
  transform: translateY(-1px);
}

.c-button:focus-visible {
  outline: 3px solid rgba(17, 183, 171, 0.28);
  outline-offset: 2px;
}

.c-button--primary:hover {
  background-color: #09948a;
}

.c-button--secondary:hover {
  background-color: #f3f3f1;
}

.c-button--outline:hover {
  background-color: rgba(17, 183, 171, 0.08);
  border-color: #09948a;
}

.site-header {
  background-color: #ffffff;
  border-bottom: 1px solid rgba(53, 53, 53, 0.08);
  position: relative;
  transition: box-shadow 0.2s ease;
  z-index: 10;
}

.site-header.is-scrolled {
  animation: header-settle 0.28s ease both;
  box-shadow: 0 7px 14px rgba(6, 65, 61, 0.1);
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
}

@media (prefers-reduced-motion: reduce) {
  .site-header {
    transition: none;
  }
  .site-header.is-scrolled {
    animation: none;
  }
}
.site-header__inner {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  min-height: 76px;
  padding-block: 16px;
}

.site-header__brand {
  align-items: center;
  display: inline-flex;
  flex-shrink: 0;
}

.site-header__brand-logo {
  display: block;
  height: auto;
  max-width: 132px;
  width: 100%;
}
@media (min-width: 768px) {
  .site-header__brand-logo {
    max-width: 148px;
  }
}

.site-header__nav {
  display: none;
}
@media (min-width: 1024px) {
  .site-header__nav {
    display: block;
    margin-left: auto;
  }
}

.site-header.is-menu-open .site-header__nav {
  background-color: #ffffff;
  border: 1px solid rgba(53, 53, 53, 0.08);
  border-radius: 12px;
  box-shadow: 0 18px 32px rgba(6, 65, 61, 0.12);
  display: block;
  left: 24px;
  padding: 24px;
  position: absolute;
  right: 24px;
  top: calc(100% + 8px);
}
@media (min-width: 1024px) {
  .site-header.is-menu-open .site-header__nav {
    background-color: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    margin-left: auto;
    padding: 0;
    position: static;
  }
}

.site-header__toggle {
  align-items: center;
  appearance: none;
  background-color: #f6f6f4;
  border-radius: 6px;
  border: 0;
  cursor: pointer;
  display: inline-grid;
  gap: 2px;
  height: 40px;
  justify-items: center;
  margin-left: auto;
  padding: 7px;
  width: 45px;
}
@media (min-width: 1024px) {
  .site-header__toggle {
    display: none;
  }
}

.site-header__toggle-line {
  background-color: #4a4a4a;
  border-radius: 999px;
  display: block;
  height: 3px;
  transition: transform 0.2s ease, opacity 0.2s ease;
  width: 30px;
}

.site-header.is-menu-open .site-header__toggle-line:nth-child(2) {
  transform: translateY(9px) rotate(45deg);
}

.site-header.is-menu-open .site-header__toggle-line:nth-child(3) {
  opacity: 0;
}

.site-header.is-menu-open .site-header__toggle-line:nth-child(4) {
  transform: translateY(-10px) rotate(-45deg);
}

.site-header__menu {
  display: grid;
  gap: 16px;
  list-style: none;
}
@media (min-width: 1024px) {
  .site-header__menu {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 24px;
    justify-content: flex-end;
  }
}

.site-header__menu a {
  color: #4a4a4a;
  font-size: 16px;
  opacity: 1;
  transition: opacity 0.2s ease;
}

.site-header__menu a:hover,
.site-header__menu a:focus-visible {
  opacity: 0.8;
}

.site-footer {
  background-color: #f6f6f4;
  border-top: 1px solid rgba(53, 53, 53, 0.08);
  padding-top: 64px;
}
@media (min-width: 768px) {
  .site-footer {
    padding-top: 64px;
  }
}

.site-footer__cta {
  align-items: flex-start;
  background-color: #09948a;
  border-radius: 24px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 40px;
  overflow: hidden;
  padding: 40px 24px;
  position: relative;
}
@media (min-width: 768px) {
  .site-footer__cta {
    align-items: flex-end;
    flex-direction: row;
    justify-content: space-between;
    padding: 64px;
  }
}

.site-footer__cta::after {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  content: "";
  height: 280px;
  pointer-events: none;
  position: absolute;
  right: -110px;
  top: -170px;
  width: 280px;
}

.site-footer__cta-content {
  max-width: 720px;
  position: relative;
  z-index: 1;
}

.site-footer__eyebrow {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin: 0 0 16px;
  text-transform: uppercase;
}

.site-footer__cta-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 0;
}

.site-footer__cta-text {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.6;
  margin: 24px 0 0;
  max-width: 640px;
}

.site-footer__cta-link {
  align-items: center;
  background-color: #ffffff;
  border-radius: 999px;
  color: #08756f;
  display: inline-flex;
  flex-shrink: 0;
  gap: 12px;
  min-height: 52px;
  padding: 12px 24px;
  position: relative;
  text-decoration: none;
  z-index: 1;
}

.site-footer__cta-link:hover,
.site-footer__cta-link:focus-visible {
  background-color: #dff2ef;
}

.site-footer__cta-link:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 3px;
}

.site-footer__main {
  display: grid;
  gap: 64px;
  padding-block: 64px;
}
@media (min-width: 768px) {
  .site-footer__main {
    grid-template-columns: minmax(0, 1.6fr) minmax(320px, 1fr);
  }
}

.site-footer__brand {
  max-width: 520px;
}

.site-footer__logo {
  display: block;
  height: auto;
  width: 152px;
}

.site-footer__description {
  color: #6d6d6d;
  line-height: 1.65;
  margin: 24px 0 0;
}

.site-footer__nav {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.site-footer__nav-title {
  color: #353535;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin: 0 0 24px;
  text-transform: uppercase;
}

.site-footer__links {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer__links a {
  color: #6d6d6d;
  text-decoration: none;
}

.site-footer__links a:hover,
.site-footer__links a:focus-visible {
  color: #08756f;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.site-footer__bottom {
  border-top: 1px solid #d7dfdc;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-block: 24px;
}
@media (min-width: 768px) {
  .site-footer__bottom {
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
  }
}

.site-footer__copyright,
.site-footer__note {
  color: #6d6d6d;
  font-size: 14px;
  margin: 0;
}

.entry {
  background-color: #ffffff;
}

.entry__header {
  padding-block: 64px 24px;
}
@media (min-width: 768px) {
  .entry__header {
    padding-block: 64px 40px;
  }
}

.entry__title {
  color: #353535;
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 300;
  letter-spacing: -0.045em;
  line-height: 1;
  margin: 0;
  max-width: 920px;
}

.entry__meta {
  align-items: center;
  color: #6d6d6d;
  display: flex;
  flex-wrap: wrap;
  font-size: 14px;
  gap: 8px;
  margin-top: 24px;
}

.entry__meta a {
  color: inherit;
  text-decoration: none;
}

.entry__meta a:hover,
.entry__meta a:focus-visible {
  color: #09948a;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.entry__categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
}

.entry__categories a {
  background-color: #dff2ef;
  border: 1px solid transparent;
  border-radius: 999px;
  color: #08756f;
  display: inline-flex;
  font-size: 14px;
  font-weight: 600;
  padding: 7px 16px;
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.single .entry__categories a {
  background-color: #08756f;
  color: #ffffff;
}

.entry__categories a:hover,
.entry__categories a:focus-visible {
  background-color: #ffffff;
  border-color: #11b7ab;
}
.single .entry__categories a:hover,
.single .entry__categories a:focus-visible {
  color: #08756f;
}

.entry__categories a:focus-visible {
  outline: 2px solid rgba(17, 183, 171, 0.25);
  outline-offset: 2px;
}

.entry__hero {
  position: relative;
}

.entry__hero--without-image {
  display: block;
}

.entry__intro {
  background-color: #dff2ef;
  border-radius: 24px;
  margin: -40px auto 0;
  max-width: 1040px;
  padding: 24px;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .entry__intro {
    margin-top: -96px;
    padding: 40px;
  }
}

.entry__hero--without-image .entry__intro {
  margin-top: 0;
  max-width: 1040px;
}

.entry--single .entry__categories {
  margin-block: 0 24px;
}

.entry--single .entry__title {
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
}

.entry__featured-media {
  margin: 0;
  position: relative;
}

.entry__featured-image {
  aspect-ratio: 16/8;
  border-radius: 24px;
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.entry__featured-caption {
  background-color: rgba(53, 53, 53, 0.82);
  border-radius: 6px;
  color: #ffffff;
  font-size: 14px;
  left: 16px;
  line-height: 1.5;
  margin: 0;
  max-width: calc(100% - 16px * 2);
  padding: 8px 12px;
  position: absolute;
  top: 16px;
}

.entry__summary {
  background-color: #dff2ef;
  border-left: 4px solid #11b7ab;
  border-radius: 0 12px 12px 0;
  margin: 40px auto 0;
  max-width: 920px;
  padding: 24px;
}
@media (min-width: 768px) {
  .entry__summary {
    padding: 40px;
  }
}

.entry__summary-title {
  color: #08756f;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.entry__summary p {
  color: #353535;
  font-size: clamp(1.125rem, 2vw, 1.35rem);
  line-height: 1.55;
  margin: 0;
}

.block-content {
  padding-bottom: 64px;
}
@media (min-width: 768px) {
  .block-content {
    padding-bottom: 96px;
  }
}

.block-content--has-footer {
  padding-bottom: 40px;
}

.block-content > * {
  margin-inline: auto;
  max-width: 760px;
}

.block-content > .alignwide {
  max-width: calc(1200px + 24px * 2);
}

.block-content > .alignfull {
  max-width: none;
  padding-inline: 0;
}

.block-content h2:not(.has-text-color),
.block-content h3:not(.has-text-color) {
  color: #353535;
  font-weight: 300;
  line-height: 1.08;
  margin-bottom: 16px;
  margin-top: 40px;
}

.block-content p,
.block-content li {
  color: #4A4A4A;
  font-size: 16px;
  line-height: 1.7;
}
@media (min-width: 768px) {
  .block-content p,
  .block-content li {
    font-size: 18px;
  }
}

.block-content p + p {
  margin-top: 24px;
}

.block-content .wp-block-button__link {
  border-radius: 999px;
  font-weight: 600;
  min-height: 48px;
  padding: 12px 24px;
}

.entry__footer {
  padding: 0 24px 64px;
}
@media (min-width: 768px) {
  .entry__footer {
    padding-bottom: 96px;
  }
}

.entry__tags {
  border-top: 1px solid #d7dfdc;
  margin-inline: auto;
  max-width: 760px;
  padding-top: 24px;
}

.entry__tags-title {
  color: #353535;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin: 0 0 16px;
  text-transform: uppercase;
}

.entry__tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.entry__tags-list a {
  border: 1px solid #d7dfdc;
  border-radius: 999px;
  color: #6d6d6d;
  display: inline-flex;
  font-size: 14px;
  padding: 7px 16px;
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.entry__tags-list a:hover,
.entry__tags-list a:focus-visible {
  background-color: #dff2ef;
  border-color: #11b7ab;
  color: #08756f;
}

.entry__tags-list a:focus-visible {
  outline: 2px solid rgba(17, 183, 171, 0.25);
  outline-offset: 2px;
}

.entry--blog {
  padding-block: 64px;
}

.breadcrumbs {
  margin-bottom: 40px;
}

.breadcrumbs__list {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.breadcrumbs__item {
  align-items: center;
  display: inline-flex;
  gap: 8px;
}

.breadcrumbs__link,
.breadcrumbs__current {
  font-size: 14px;
}

.breadcrumbs__link {
  color: #6d6d6d;
  text-decoration: none;
}

.breadcrumbs__link:hover,
.breadcrumbs__link:focus-visible {
  color: #09948a;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.breadcrumbs__current {
  color: #353535;
  font-weight: 600;
}

.breadcrumbs__separator {
  color: #d7dfdc;
}

.blog-posts {
  display: grid;
  gap: 24px;
}
@media (min-width: 768px) {
  .blog-posts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .blog-posts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.blog-posts__item {
  background-color: #ffffff;
  border: 1px solid #d7dfdc;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.blog-posts__thumbnail {
  aspect-ratio: 16/9;
  display: block;
  overflow: hidden;
}

.blog-posts__thumbnail img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.blog-posts__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.blog-posts__title {
  font-size: 1.5rem;
  line-height: 1.2;
  margin: 0;
}

.blog-posts__title a {
  color: #353535;
  text-decoration: none;
}

.blog-posts__title a:hover,
.blog-posts__title a:focus-visible {
  color: #09948a;
}

.blog-posts__meta {
  align-items: center;
  color: #6d6d6d;
  display: flex;
  flex-wrap: wrap;
  font-size: 14px;
  gap: 8px;
  margin-top: 12px;
}

.blog-posts__meta a {
  color: inherit;
  text-decoration: none;
}

.blog-posts__meta a:hover,
.blog-posts__meta a:focus-visible {
  color: #09948a;
  text-decoration: underline;
}

.blog-posts__excerpt {
  color: #6d6d6d;
  line-height: 1.6;
  margin-top: 16px;
}

.blog-posts__excerpt > :last-child {
  margin-bottom: 0;
}

.blog-posts__item--featured {
  border: 0;
  grid-column: 1/-1;
}
@media (min-width: 768px) {
  .blog-posts__item--featured {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}

@media (min-width: 768px) {
  .blog-posts__item--featured .blog-posts__thumbnail {
    aspect-ratio: auto;
    border-radius: 12px;
    height: 100%;
    min-height: 250px;
  }
}

@media (min-width: 768px) {
  .blog-posts__item--featured .blog-posts__title {
    font-size: 2rem;
  }
}

@media (min-width: 768px) {
  .blog-posts__item--featured .blog-posts__content {
    justify-content: center;
    padding: 40px;
  }
}

.blog-posts__search {
  grid-column: 1/-1;
  padding-bottom: 24px;
  padding-top: 16px;
}
@media (min-width: 768px) {
  .blog-posts__search {
    padding-bottom: 40px;
    padding-top: 40px;
  }
}

.blog-posts__search .search-form {
  display: flex;
  gap: 12px;
  margin-inline: auto;
  max-width: 720px;
}

.blog-posts__search label {
  flex: 1;
}

.blog-posts__search .search-field {
  border: 1px solid #d7dfdc;
  border-radius: 999px;
  color: #353535;
  min-height: 48px;
  padding: 10px 24px;
  width: 100%;
}

.blog-posts__search .search-field:focus {
  border-color: #11b7ab;
  outline: 2px solid rgba(17, 183, 171, 0.2);
  outline-offset: 2px;
}

.blog-posts__search .search-submit {
  background-color: #11b7ab;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  cursor: pointer;
  font-weight: 600;
  min-height: 48px;
  padding-inline: 24px;
}

.blog-posts__search .search-submit:hover,
.blog-posts__search .search-submit:focus-visible {
  background-color: #09948a;
}

.entry--blog .navigation.pagination {
  margin-top: 64px;
}

.entry--blog .pagination .nav-links {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.entry--blog .pagination .page-numbers {
  align-items: center;
  border: 1px solid #d7dfdc;
  border-radius: 999px;
  color: #353535;
  display: inline-flex;
  font-size: 14px;
  font-weight: 600;
  justify-content: center;
  min-height: 44px;
  min-width: 44px;
  padding: 8px 14px;
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.entry--blog .pagination a.page-numbers:hover,
.entry--blog .pagination a.page-numbers:focus-visible {
  background-color: #dff2ef;
  border-color: #11b7ab;
  color: #08756f;
}

.entry--blog .pagination a.page-numbers:focus-visible {
  outline: 2px solid rgba(17, 183, 171, 0.25);
  outline-offset: 2px;
}

.entry--blog .pagination .page-numbers.current {
  background-color: #11b7ab;
  border-color: #11b7ab;
  color: #ffffff;
}

.entry--blog .pagination .page-numbers.dots {
  border-color: transparent;
  min-width: 32px;
  padding-inline: 4px;
}

.entry--blog .pagination .prev,
.entry--blog .pagination .next {
  padding-inline: 24px;
}

.landing-header {
  background-color: #ffffff;
  color: #353535;
  padding: 14px 0;
  position: relative;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  z-index: 20;
}
@media (min-width: 1024px) {
  .landing-header {
    padding: 0;
  }
}

.landing-header.is-scrolled {
  animation: header-settle 0.28s ease both;
  box-shadow: 0 10px 30px rgba(6, 65, 61, 0.1);
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
}

@keyframes header-settle {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .landing-header {
    transition: none;
  }
  .landing-header.is-scrolled {
    animation: none;
  }
}
.landing-header__nav {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
@media (min-width: 1024px) {
  .landing-header__nav {
    min-height: 90px;
  }
}

.landing-header__brand {
  align-items: center;
  display: inline-flex;
  flex-shrink: 0;
}

.landing-header__brand-logo {
  display: block;
  height: auto;
  max-width: 132px;
  width: 100%;
}
@media (min-width: 768px) {
  .landing-header__brand-logo {
    max-width: 148px;
  }
}

.landing-header__actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-end;
  margin-left: auto;
}
@media (min-width: 1024px) {
  .landing-header__actions {
    gap: 24px;
  }
}

.landing-header__toggle {
  align-items: center;
  appearance: none;
  background-color: #ffffff;
  border: 1px solid rgba(53, 53, 53, 0.14);
  border-radius: 50%;
  display: inline-grid;
  gap: 3px;
  height: 40px;
  justify-items: center;
  padding: 0;
  width: 40px;
}
@media (min-width: 1024px) {
  .landing-header__toggle {
    display: none;
  }
}

.landing-header__toggle-line {
  background-color: #4a4a4a;
  border-radius: 999px;
  display: block;
  height: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
  width: 16px;
}

.landing-header.is-menu-open .landing-header__toggle-line:nth-child(2) {
  transform: translateY(5px) rotate(45deg);
}

.landing-header.is-menu-open .landing-header__toggle-line:nth-child(3) {
  opacity: 0;
}

.landing-header.is-menu-open .landing-header__toggle-line:nth-child(4) {
  transform: translateY(-5px) rotate(-45deg);
}

.landing-header__menu {
  display: none;
  list-style: none;
}
@media (min-width: 1024px) {
  .landing-header__menu {
    display: flex;
    gap: 24px;
    position: static;
  }
}

.landing-header.is-menu-open .landing-header__menu {
  background-color: #ffffff;
  border: 1px solid rgba(53, 53, 53, 0.08);
  border-radius: 12px;
  box-shadow: 0 18px 32px rgba(6, 65, 61, 0.12);
  display: grid;
  gap: 16px;
  left: 24px;
  padding: 24px;
  position: absolute;
  right: 24px;
  top: calc(100% + 8px);
}
@media (min-width: 1024px) {
  .landing-header.is-menu-open .landing-header__menu {
    background-color: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    display: flex;
    padding: 0;
    position: static;
  }
}

.landing-header__menu a {
  color: #4a4a4a;
  font-size: 16px;
  font-weight: 600;
  opacity: 0.88;
  transition: opacity 0.2s ease;
}

.landing-header__menu a:hover,
.landing-header__menu a:focus-visible {
  opacity: 1;
}

.landing-header__cta {
  align-items: center;
  display: inline-flex;
  font-size: 14px;
  gap: 8px;
  min-height: 40px;
  padding-inline: 24px;
}
@media (min-width: 768px) {
  .landing-header__cta {
    padding-inline: 40px;
  }
}
@media (min-width: 1024px) {
  .landing-header__cta {
    min-height: 45px;
  }
}

.landing-header__cta-icon {
  display: none;
  height: 14px;
  width: 14px;
}
@media (min-width: 1024px) {
  .landing-header__cta-icon {
    display: block;
  }
}

.hero {
  background-image: url("../imgs/background-hero.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #ffffff;
  padding: 64px 0 64px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .hero {
    padding: 96px 0 64px;
  }
}
@media (min-width: 1024px) {
  .hero {
    padding: 128px 0 96px;
  }
}

.hero__body {
  padding-top: 0;
  padding-bottom: 64px;
}

.hero__grid {
  display: grid;
  gap: 40px;
}
@media (min-width: 768px) {
  .hero__grid {
    gap: 64px;
  }
}
@media (min-width: 1024px) {
  .hero__grid {
    align-items: start;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.hero__content {
  max-width: 720px;
}

.hero__eyebrow {
  font-size: 0.9rem;
  font-weight: 650;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.hero__title {
  color: #fdfdfd;
  font-size: 40px;
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.4;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .hero__title {
    font-size: 52px;
  }
}
@media (min-width: 1024px) {
  .hero__title {
    font-size: 62px;
    line-height: 1.2;
  }
}

.hero__lead {
  font-size: 1rem;
  line-height: 1.62;
  max-width: 54ch;
}
@media (min-width: 768px) {
  .hero__lead {
    font-size: 1.05rem;
    line-height: 1.72;
  }
}

.hero__actions {
  margin-top: 40px;
}

.hero__cta {
  gap: 8px;
}

.hero__cta-icon {
  display: block;
  height: 14px;
  width: 14px;
}

@media (min-width: 1024px) {
  .hero__aside {
    padding-top: 24px;
  }
}

.hero__summary {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .hero__summary {
    font-size: 18px;
  }
}

.hero-stats-wrap {
  margin-top: -34px;
  position: relative;
  z-index: 5;
}
@media (min-width: 768px) {
  .hero-stats-wrap {
    margin-top: -52px;
  }
}

.hero__stats {
  background-color: #11b7ab;
  border-radius: 24px;
  box-shadow: 0 5px 15px rgba(6, 65, 61, 0.25);
  display: grid;
  gap: 1px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .hero__stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

.hero__stat {
  background-color: rgba(255, 255, 255, 0.04);
  padding: 16px 24px;
}
@media (min-width: 768px) {
  .hero__stat {
    padding: 64px;
  }
}

.hero__stat--featured {
  align-items: center;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  column-gap: 14px;
}
@media (min-width: 768px) {
  .hero__stat--featured {
    grid-template-columns: 54px minmax(0, 1fr);
  }
}

.hero__stat-icon-wrap {
  align-items: center;
  display: inline-flex;
  justify-content: center;
}

.hero__stat-icon {
  display: block;
  height: 38px;
  width: 38px;
}

.hero__stat-content {
  display: grid;
  color: #fdfdfd;
}

.hero__stat-label {
  font-size: 18px;
  font-weight: 500;
  color: #fdfdfd;
}

.hero__stat-value {
  color: #fdfdfd;
  margin-left: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 8px;
}

.landing-section {
  padding: 64px 0;
}
@media (min-width: 768px) {
  .landing-section {
    padding: 96px 0;
  }
}

.landing-section:last-of-type {
  padding-bottom: 0;
}

.landing-section--platform,
.landing-section--deliverables,
.landing-section--cta {
  background-color: #ffffff;
}

.landing-section--governance,
.landing-section--platform {
  background-color: #f6f6f4;
}

.landing-section--process {
  background-color: #dff2ef;
}

.landing-section--deliverables {
  padding: 0 0;
}

.landing-section__title {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.4;
  margin-bottom: 16px;
}

.landing-section__text {
  color: #6d6d6d;
  max-width: 65ch;
}

.governance__header {
  margin-bottom: 40px;
}

.governance__eyebrow {
  color: #a8a8a8;
  font-size: 1.35rem;
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 12px;
}
@media (min-width: 768px) {
  .governance__eyebrow {
    font-size: 1.62rem;
  }
}

.governance__title {
  font-size: clamp(2rem, 4.6vw, 3.45rem);
  font-weight: 300;
  letter-spacing: -0.038em;
  line-height: 1.4;
  margin-bottom: 24px;
}

.governance__intro {
  color: #4A4A4A;
  font-size: 16px;
}
@media (min-width: 768px) {
  .governance__intro {
    font-size: 18px;
  }
}

.governance__body {
  display: grid;
  gap: 40px;
}

.governance__lead {
  color: #4A4A4A;
  font-size: 16px;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .governance__lead {
    font-size: 18px;
  }
}

.governance__list {
  display: grid;
  gap: 16px;
  list-style: none;
}

.governance__item {
  color: #4A4A4A;
  font-size: 16px;
  padding-left: 30px;
  position: relative;
}
@media (min-width: 768px) {
  .governance__item {
    font-size: 18px;
  }
}

.governance__item::before {
  background-image: url("../imgs/icon-v.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 16px;
  left: 0;
  position: absolute;
  top: 5px;
  width: 16px;
}

.governance__summary {
  color: #4A4A4A;
  font-size: 16px;
}
@media (min-width: 768px) {
  .governance__summary {
    font-size: 18px;
  }
}

.platform__tab {
  align-items: center;
  display: grid;
  gap: 0;
}
@media (min-width: 768px) {
  .platform__tab {
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 18px;
  }
}

.platform__brand {
  align-items: center;
  background-color: #e9e9e8;
  border-radius: 10px 10px 0 0;
  display: block;
  justify-self: start;
  padding: 16px 24px;
  width: 100%;
}
@media (min-width: 768px) {
  .platform__brand {
    display: inline-flex;
    width: 150px;
  }
}

.platform__brand-logo {
  display: block;
  height: auto;
  max-width: 100%;
}

.platform__heading {
  background-color: #e9e9e8;
  color: #4a4a4a;
  display: block;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.35;
  padding: 0 24px;
  width: 100%;
}
@media (min-width: 768px) {
  .platform__heading {
    background-color: transparent;
    font-size: 20px;
    max-width: 55ch;
    padding-left: 0;
  }
}

.platform {
  background-color: #e9e9e8;
  border-radius: 0 10px 10px 10px;
  padding: 16px;
}
@media (min-width: 768px) {
  .platform {
    padding: 22px;
  }
}

.platform__intro {
  background-color: transparent;
  padding: 0;
}
@media (min-width: 768px) {
  .platform__intro {
    padding: 0;
  }
}

.platform__url {
  background-color: #ffffff;
  border-radius: 8px;
  color: #4A4A4A;
  font-size: 1rem;
  line-height: 1;
  margin-bottom: 26px;
  padding: 13px 16px;
  overflow-wrap: anywhere;
}

.platform__copy {
  display: grid;
  gap: 20px;
}

.platform__text {
  color: #4A4A4A;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.58;
  max-width: 100%;
}
@media (min-width: 768px) {
  .platform__text {
    font-size: 18px;
    line-height: 1.65;
  }
}

.platform__panel {
  background: repeating-radial-gradient(circle at -12% 130%, rgba(255, 255, 255, 0.16) 0 1px, transparent 1px 16px), radial-gradient(circle at 72% 130%, rgba(255, 255, 255, 0.14), transparent 0 38%), linear-gradient(135deg, #11b7ab 0%, #10968d 100%);
  border-radius: 8px;
  color: #ffffff;
  margin-top: 28px;
  padding: 26px 22px 30px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .platform__panel {
    padding: 40px 48px 48px;
  }
}

.platform__panel::after {
  background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.05) 100%);
  content: "";
  inset: 0;
  position: absolute;
}

.platform__panel-title,
.platform__features {
  position: relative;
  z-index: 1;
}

.platform__panel-title {
  font-size: 26px;
  letter-spacing: 0;
  font-weight: 400;
  margin-bottom: 28px;
}
@media (min-width: 768px) {
  .platform__panel-title {
    font-size: 32px;
    margin-bottom: 34px;
  }
}

.platform__features {
  display: grid;
  gap: 26px;
}
@media (min-width: 768px) {
  .platform__features {
    gap: 34px 72px;
  }
}
@media (min-width: 1024px) {
  .platform__features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.platform__feature {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  column-gap: 14px;
  row-gap: 4px;
  align-items: start;
}

.platform__feature-icon {
  display: block;
  grid-row: 1/span 2;
  height: 28px;
  margin-top: 0;
  width: 28px;
}

.platform__feature-title {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .platform__feature-title {
    font-size: 20px;
  }
}

.platform__feature-text {
  color: #ffffff;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.58;
}
@media (min-width: 768px) {
  .platform__feature-text {
    font-size: 18px;
    line-height: 1.65;
  }
}

.details__header {
  margin-bottom: 64px;
}

.details__title {
  font-size: clamp(2rem, 4.6vw, 3.45rem);
  font-weight: 300;
  letter-spacing: -0.038em;
  line-height: 1.4;
  margin-bottom: 24px;
}

.details__intro {
  color: #4A4A4A;
  font-size: 16px;
}
@media (min-width: 768px) {
  .details__intro {
    font-size: 18px;
  }
}

.details__list {
  border-left: 10px solid #11b7ab;
  display: grid;
  gap: 26px;
  padding-left: 18px;
}
@media (min-width: 768px) {
  .details__list {
    border-left-width: 16px;
  }
}

.details__item-title {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 4px;
}
@media (min-width: 768px) {
  .details__item-title {
    font-size: 20px;
  }
}

.details__item-text {
  color: #4A4A4A;
  font-size: 16px;
}
@media (min-width: 768px) {
  .details__item-text {
    font-size: 18px;
  }
}

.details__footer {
  color: #4A4A4A;
  font-size: 16px;
  margin-top: 64px;
}
@media (min-width: 768px) {
  .details__footer {
    font-size: 18px;
  }
}

.audience__header {
  margin-bottom: 64px;
}

.audience__title {
  font-size: clamp(2rem, 4.6vw, 3.45rem);
  font-weight: 300;
  letter-spacing: -0.038em;
  line-height: 1.4;
  margin-bottom: 24px;
}

.audience__intro {
  color: #4A4A4A;
  font-size: 16px;
}
@media (min-width: 768px) {
  .audience__intro {
    font-size: 18px;
  }
}

.audience__grid {
  display: grid;
  gap: 34px;
}
@media (min-width: 1024px) {
  .audience__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.audience__card {
  display: grid;
  gap: 24px;
}

.audience__card-title {
  color: #4A4A4A;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.55;
}
@media (min-width: 768px) {
  .audience__card-title {
    font-size: 20px;
    line-height: 1.75;
  }
}

.audience__card-text {
  color: #4A4A4A;
  font-size: 16px;
}
@media (min-width: 768px) {
  .audience__card-text {
    font-size: 18px;
  }
}

.process__header {
  margin-bottom: 64px;
}

.process__eyebrow {
  color: #6d6d6d;
  font-size: 24px;
  font-weight: 300;
}
@media (min-width: 768px) {
  .process__eyebrow {
    font-size: 32px;
  }
}

.process__title {
  font-size: clamp(2rem, 4.6vw, 3.45rem);
  font-weight: 300;
  letter-spacing: -0.038em;
  line-height: 1.4;
  margin-bottom: 24px;
}

.process__intro {
  color: #4A4A4A;
  font-size: 16px;
}
@media (min-width: 768px) {
  .process__intro {
    font-size: 18px;
  }
}

.process__list {
  counter-reset: process-step;
  display: grid;
  gap: 22px;
  list-style: none;
  padding-left: 20px;
  position: relative;
}

.process__list::before {
  background-color: #11b7ab;
  content: "";
  display: none;
  inset: 12px auto 82px 6px;
  position: absolute;
  width: 3px;
}
@media (min-width: 768px) {
  .process__list::before {
    display: inline-flex;
  }
}

.process__item {
  counter-increment: process-step;
  padding: 0 0 0 24px;
  position: relative;
}

.process__item::before {
  align-items: center;
  background-color: #11b7ab;
  border: 0;
  border-radius: 50%;
  content: "";
  display: inline-flex;
  height: 14px;
  justify-content: center;
  left: -20px;
  position: absolute;
  top: 7px;
  width: 14px;
}

.process__item-title {
  font-size: 19px;
  color: #4A4A4A;
  font-weight: 400;
  margin-bottom: 5px;
}
@media (min-width: 768px) {
  .process__item-title {
    font-size: 22px;
  }
}

.process__item-text {
  color: #4A4A4A;
  font-size: 16px;
  line-height: 1.62;
}
@media (min-width: 768px) {
  .process__item-text {
    font-size: 18px;
    line-height: 1.75;
  }
}

.deliverables {
  display: grid;
  border-radius: 0;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .deliverables {
    grid-template-columns: minmax(0, 35%) minmax(0, 65%);
  }
}

.deliverables__media {
  background-image: url("../imgs/background-deliverables.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 260px;
  overflow: hidden;
  position: relative;
}
@media (min-width: 768px) {
  .deliverables__media {
    min-height: 340px;
  }
}
@media (min-width: 1024px) {
  .deliverables__media {
    align-self: stretch;
    min-height: 100%;
  }
}

.deliverables__content {
  background-color: #ffffff;
  padding: 28px 24px 32px;
}
@media (min-width: 768px) {
  .deliverables__content {
    padding: 34px 30px 36px;
  }
}
@media (min-width: 1024px) {
  .deliverables__content {
    align-items: center;
    display: flex;
    min-height: 100%;
    padding-left: 48px;
    padding-right: max(24px, (100vw - 1200px) / 2 + 24px);
  }
}

.deliverables__content-inner {
  max-width: 800px;
}

.deliverables__title {
  font-size: clamp(2rem, 4.6vw, 3.45rem);
  font-weight: 300;
  letter-spacing: -0.038em;
  line-height: 1.4;
  margin-bottom: 24px;
}

.deliverables__intro,
.deliverables__text {
  color: #4A4A4A;
  font-size: 16px;
}
@media (min-width: 768px) {
  .deliverables__intro,
  .deliverables__text {
    font-size: 18px;
  }
}

.deliverables__text {
  margin-top: 18px;
}

.deliverables__list {
  display: grid;
  gap: 10px;
  list-style: none;
  margin-left: 16px;
  margin-top: 24px;
  padding-left: 0;
}

.deliverables__item {
  color: #4A4A4A;
  font-size: 16px;
  padding-left: 18px;
  line-height: 1.58;
  position: relative;
}
@media (min-width: 768px) {
  .deliverables__item {
    font-size: 18px;
    line-height: 1.65;
  }
}

.deliverables__item::before {
  color: #353535;
  content: "·";
  font-size: 2.2rem;
  left: 0;
  position: absolute;
  top: -15px;
}

.regulation__header {
  margin-bottom: 64px;
}

.regulation__eyebrow {
  color: #a8a8a8;
  font-size: 24px;
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 12px;
}
@media (min-width: 768px) {
  .regulation__eyebrow {
    font-size: 32px;
  }
}

.regulation__title {
  font-size: 34px;
  font-weight: 300;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .regulation__title {
    font-size: 42px;
  }
}

.regulation__grid {
  display: grid;
  gap: 64px;
}
@media (min-width: 1024px) {
  .regulation__grid {
    align-items: center;
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  }
}

.regulation__content {
  display: grid;
  gap: 24px;
  max-width: 64ch;
}

.regulation__text {
  color: #4A4A4A;
  font-size: 16px;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .regulation__text {
    font-size: 18px;
  }
}

.regulation__quote {
  background-color: #E1F0ED;
  border-radius: 12px;
  padding: 24px;
}
@media (min-width: 768px) {
  .regulation__quote {
    padding: 64px;
  }
}

.regulation__quote-mark {
  font-size: 6rem;
  font-weight: 900;
  line-height: 0.5;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .regulation__quote-mark {
    font-size: 10rem;
  }
}

.regulation__quote-text {
  color: #4A4A4A;
  font-size: 1.08rem;
  font-weight: 400;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .regulation__quote-text {
    font-size: 1.28rem;
  }
}

.landing-section--faq {
  background-color: #11b7ab;
  color: #ffffff;
}

.faq__title {
  font-size: clamp(2rem, 4.6vw, 3.45rem);
  font-weight: 300;
  letter-spacing: -0.038em;
  line-height: 1.4;
  margin-bottom: 64px;
}

.faq__list {
  display: grid;
  gap: 24px;
}

.faq__item {
  background-color: #ffffff;
  border-radius: 8px;
  color: #353535;
  overflow: hidden;
}

.faq__question {
  cursor: pointer;
  color: #4A4A4A;
  font-size: 17px;
  font-weight: 400;
  list-style: none;
  padding: 16px 40px 16px 24px;
  position: relative;
}
@media (min-width: 768px) {
  .faq__question {
    font-size: 20px;
    padding: 24px 64px 24px 40px;
  }
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__question::after {
  content: "+";
  font-size: 1.5rem;
  line-height: 1;
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
}

.faq__question:hover {
  color: #08756f;
}

.faq__item[open] .faq__question::after {
  content: "−";
}

.faq__answer {
  padding: 0 40px 40px;
}

.faq__answer p {
  line-height: 1.75;
  max-width: 72ch;
}

.cta-final {
  display: grid;
  gap: 40px;
  padding-bottom: 40px;
}
@media (min-width: 1024px) {
  .cta-final {
    align-items: center;
    grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  }
}

.cta-final__eyebrow {
  color: #6d6d6d;
  font-size: 24px;
  font-weight: 300;
}
@media (min-width: 768px) {
  .cta-final__eyebrow {
    font-size: 32px;
  }
}

.cta-final__title {
  font-size: clamp(2rem, 4.6vw, 3.45rem);
  font-weight: 300;
  letter-spacing: -0.038em;
  line-height: 1.4;
  margin-bottom: 24px;
}

.cta-final__text {
  color: #4A4A4A;
  font-size: 16px;
}
@media (min-width: 768px) {
  .cta-final__text {
    font-size: 18px;
  }
}

.cta-final__text + .cta-final__text {
  margin-top: 24px;
}

.cta-final__actions {
  display: grid;
  gap: 16px;
  width: 100%;
}
@media (min-width: 768px) {
  .cta-final__actions {
    max-width: 340px;
  }
}

.cta-final__button {
  gap: 8px;
  min-height: 48px;
  width: 100%;
}

.cta-final__button-icon {
  display: block;
  height: 14px;
  width: 14px;
}

.cta-final__footnote {
  background-color: #dddddb;
  margin-top: 64px;
  padding: 16px 0;
}

.cta-final__footnote-text {
  color: #4A4A4A;
  font-size: 16px;
  text-align: center;
}

._opacity-50 {
  opacity: 0.5;
}

.u-visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}
