:root {
  --blue: #0065ff;
  --deep-blue: #163bc1;
  --navy: #06227f;
  --brand-navy: var(--navy);
  --ink: #101010;
  --muted: #5f6368;
  --line: #e6e6e6;
  --soft: #f7f7f7;
  --cream: #fff0d8;
  --container-max: 1220px;
  --container-gutter: 48px;
  --font-sans: "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SFMono-Regular", "Roboto Mono", "Courier New", monospace;
  --radius-button: 8px;
  --radius-surface: 20px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-sans);
  background: white;
  font-feature-settings: "kern" 1;
  text-rendering: geometricPrecision;
}

a {
  color: inherit;
}

.container,
.marketing-header,
.marketing-cta--blue,
.home-section,
.home-cta,
.knowledge-hero__inner,
.knowledge-featured__inner,
.knowledge-section,
.faq-page-hero,
.faq-help-band__inner,
.article-template__hero,
.case-study-template__hero,
.case-study-testimonial__inner,
.solution-intro__inner,
.process-section,
.insurance-hero__inner,
.insurance-text-section__inner,
.insurance-contact__inner,
.why-matters-section__inner,
.usecase-hero__inner,
.usecase-features__inner {
  width: min(var(--container-max), calc(100% - var(--container-gutter)));
  margin-inline: auto;
}

.form-row,
.contact-form__row,
.company-contact-form__row,
.insurance-form__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--form-row-gap, 24px);
}

.form-field,
.field,
.company-contact-field {
  display: grid;
  gap: 8px;
}

.form-field input,
.form-field select,
.form-field textarea,
.field input,
.field select,
.field textarea,
.company-contact-field input,
.company-contact-field select,
.company-contact-field textarea {
  width: 100%;
  border-radius: var(--form-field-radius, 8px);
  font: inherit;
}

.form-field input[type="number"],
.field input[type="number"],
.company-contact-field input[type="number"] {
  appearance: textfield;
  -moz-appearance: textfield;
}

.form-field input[type="number"]::-webkit-outer-spin-button,
.form-field input[type="number"]::-webkit-inner-spin-button,
.field input[type="number"]::-webkit-outer-spin-button,
.field input[type="number"]::-webkit-inner-spin-button,
.company-contact-field input[type="number"]::-webkit-outer-spin-button,
.company-contact-field input[type="number"]::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

.scroll-carousel,
.card-grid--carousel,
.home-use-case-row,
.marketing-section--health-score-measures .card-grid,
.process-card-row {
  display: grid;
  grid-auto-flow: column;
  grid-template-columns: none;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}

.link-arrow::after,
.home-card span::after,
.knowledge-link::after {
  content: "";
  display: inline-block;
  width: 13px;
  height: 9px;
  background: url("/images/marketing/assets/arrow-right-alt.png") center / contain no-repeat;
}

.marketing-footer__top,
.marketing-footer__grid,
.marketing-footer__copyright,
.marketing-section,
.marketing-hero,
.marketing-article,
.marketing-cta,
.company-about__inner {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.marketing-header-shell {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgb(255 255 255 / 96%);
}

.marketing-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 24px 0;
}

.marketing-header__brand,
.marketing-footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #00245c;
  font-size: 28px;
  font-weight: 800;
  text-decoration: none;
}

.marketing-header__brand img {
  display: block;
  width: min(221px, 42vw);
  height: auto;
  max-height: 67px;
  object-fit: contain;
}

.marketing-footer__brand img {
  display: block;
  width: 186px;
  height: auto;
}

.marketing-header__mark {
  display: inline-block;
  width: 32px;
  height: 24px;
  background: var(--blue);
  border-radius: 2px;
}

.marketing-header__nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-sans);
}

.marketing-header__nav a,
.marketing-header__nav button,
.marketing-dropdown a {
  text-decoration: none;
}

.marketing-nav__item {
  position: static;
}

.marketing-nav__trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.marketing-nav__trigger.is-active {
  color: var(--blue);
}

.marketing-nav__trigger::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 11px;
  left: 0;
  height: 2px;
  background: transparent;
}

.marketing-nav__item::after {
  content: "";
  position: absolute;
  top: 56px;
  left: 0;
  right: 0;
  height: 34px;
  display: none;
}

.marketing-nav__trigger.is-active::after {
  background: var(--blue);
}

.marketing-nav__trigger.is-active::after {
  background: var(--blue);
}

.marketing-nav__item:hover .marketing-nav__trigger,
.marketing-nav__item.is-open .marketing-nav__trigger {
  color: var(--ink);
}

.marketing-nav__item:hover .marketing-nav__trigger::after,
.marketing-nav__item.is-open .marketing-nav__trigger::after {
  background: var(--ink);
}

.marketing-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  display: none;
  min-height: 270px;
  padding: 42px 0 46px;
  border-top: 1px solid #f0f0f0;
  background: white;
  box-shadow: 0 18px 28px rgb(0 0 0 / 5%);
}

.marketing-dropdown:has(.marketing-dropdown__grid--solutions) {
  min-height: min(710px, calc(100vh - 104px));
  padding: 30px 0 25px;
}

.marketing-dropdown:has(.marketing-dropdown__tools-card) {
  min-height: min(300px, calc(100vh - 104px));
  padding: 30px 0 64px;
}

.marketing-nav__item:hover::after,
.marketing-nav__item.is-open::after {
  display: block;
}

.marketing-nav__item:hover .marketing-dropdown,
.marketing-nav__item.is-open .marketing-dropdown {
  display: block;
}

.marketing-dropdown__inner {
  width: min(var(--container-max), calc(100% - 96px));
  margin-inline: auto;
}

.marketing-dropdown:has(.marketing-dropdown__tools-card) .marketing-dropdown__inner {
  width: min(var(--container-max), calc(100% - 204px));
}

.marketing-dropdown h2 {
  margin: 0 0 28px;
  color: var(--blue);
  font-size: 38px;
  font-weight: 500;
  line-height: 1.05;
}

.marketing-dropdown:has(.marketing-dropdown__grid--solutions) h2 {
  margin-bottom: 45px;
  font-size: 44px;
  line-height: 1;
}

.marketing-dropdown:has(.marketing-dropdown__tools-card) h2 {
  margin-bottom: 42px;
  font-size: 46px;
  line-height: 1;
}

.marketing-dropdown__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 42px;
  max-width: none;
}

.marketing-dropdown__grid--solutions {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 60px 60px;
  max-width: none;
}

.marketing-dropdown__grid--solutions a[href="/solutions/expert-insights"] {
  grid-column: 4;
  grid-row: 1;
}

.marketing-dropdown__grid--solutions a[href="/solutions/cohabit-pay"] {
  grid-column: 1;
  grid-row: 2;
}

.marketing-dropdown__grid--tools {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 620px;
}

.marketing-dropdown__link {
  display: grid;
  gap: 8px;
  align-content: start;
  color: var(--ink);
}

.marketing-dropdown__link strong {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.25;
}

.marketing-dropdown__link span {
  color: #444;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 400;
}

.marketing-dropdown__grid--solutions .marketing-dropdown__link {
  gap: 16px;
}

.marketing-dropdown__grid--solutions .marketing-dropdown__link strong {
  font-size: 20px;
  line-height: 1.2;
}

.marketing-dropdown__grid--solutions .marketing-dropdown__link span {
  color: #1b1b1b;
  font-size: 16px;
  line-height: 1.45;
}

.marketing-dropdown__link:hover strong,
.marketing-dropdown__link:focus strong {
  color: var(--blue);
}

.marketing-dropdown__promo {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  align-items: center;
  gap: 20px;
  width: min(900px, 100%);
  margin-top: 42px;
  padding: 28px 34px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--cream);
}

.marketing-dropdown__promo-copy {
  display: grid;
  gap: 10px;
}

.marketing-dropdown__promo small {
  color: var(--blue);
  font-weight: 900;
}

.marketing-dropdown__promo strong {
  max-width: 360px;
  color: var(--blue);
  font-size: 32px;
  font-weight: 500;
  line-height: 1.02;
}

.marketing-dropdown__promo span {
  color: #333;
  font-size: 15px;
  line-height: 1.4;
}

.marketing-dropdown__promo em {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  min-height: 34px;
  padding: 0 18px;
  border-radius: 5px;
  background: #000;
  color: white;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  text-transform: uppercase;
}


.marketing-dropdown__promo-logo {
  display: block;
  width: 300px;
  max-width: 100%;
  height: auto;
  transform: none;
}

.marketing-dropdown__promo--solutions {
  position: relative;
  grid-template-columns: minmax(440px, 1fr) minmax(420px, 48%);
  gap: 36px;
  width: 100%;
  min-height: 258px;
  margin-top: 60px;
  padding: 25px 25px 0;
  border-radius: 18px;
  background: #fff0d8;
}

.marketing-dropdown__promo--solutions .marketing-dropdown__promo-copy {
  align-self: start;
  gap: 28px;
}

.marketing-dropdown__promo--solutions small {
  display: none;
}

.marketing-dropdown__promo--solutions strong {
  max-width: 520px;
  font-size: 48px;
  line-height: 1.12;
}

.marketing-dropdown__promo--solutions span,
.marketing-dropdown__promo--solutions em {
  display: none;
}

.marketing-dropdown__promo--solutions > img {
  width: 415px;
  justify-self: left;
  align-self: end;
  margin-bottom: 10px;
  transform: none;
}

.marketing-dropdown__promo--blue {
  background: var(--brand-navy);
  color: white;
}

.marketing-dropdown__promo--blue strong,
.marketing-dropdown__promo--blue small {
  color: white;
}

.marketing-dropdown__promo--blue span {
  color: #dce7ff;
}

.marketing-dropdown__tools-card {
  position: relative;
  display: block;
  width: min(750px, 100%) !important;
  min-height: 286px;
  overflow: visible;
  border-radius: 10px;
  background: var(--brand-navy);
  color: white;
  box-shadow: 0 28px 46px rgb(0 0 0 / 10%);
}

.marketing-dropdown__tools-card::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, rgb(0 0 0 / 18%), rgb(0 0 0 / 0) 58%);
  content: "";
  pointer-events: none;
}

.marketing-dropdown__tools-device {
  position: absolute;
  top: -12px;
  right: 24px;
  z-index: 2;
  width: 100%;
  max-width: 312px;
  height: auto;
  pointer-events: none;
}

.marketing-dropdown__tools-copy {
  position: relative;
  z-index: 3;
  display: grid;
  gap: 14px;
  width: min(285px, 58%);
  padding: 46px 0 32px 34px;
}

.marketing-dropdown__tools-logo {
  display: block;
  width: 150px;
  height: auto;
}

.marketing-dropdown__tools-copy strong {
  color: #fff5dd;
  font-family: var(--font-mono);
  font-size: 30px;
  font-weight: 800;
  line-height: 0.92;
  text-transform: uppercase;
}

.marketing-dropdown__tools-copy span {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.marketing-dropdown__tools-copy b {
  display: block;
  margin-bottom: 4px;
  font-weight: 800;
}

body:has(.marketing-nav__item:hover) main,
body:has(.marketing-nav__item.is-open) main {
  filter: blur(8px);
  opacity: 0.42;
  transition: filter 160ms ease, opacity 160ms ease;
}

body:has(.marketing-mobile-nav[open]) main,
body:has(.marketing-mobile-nav[open]) .marketing-footer {
  filter: blur(8px);
  opacity: 0.42;
  transition: filter 160ms ease, opacity 160ms ease;
}

body:has(.marketing-mobile-nav[open]) {
  overflow: hidden;
}

.marketing-header__actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.marketing-header__actions .button {
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  text-align: center;
  text-transform: uppercase;
}

.marketing-mobile-nav {
  display: none;
}

.marketing-mobile-nav__toggle {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  cursor: pointer;
  list-style: none;
}

.marketing-mobile-nav__toggle::-webkit-details-marker {
  display: none;
}

.marketing-mobile-nav__toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 2px 0;
  border-radius: 2px;
  background: var(--navy);
}

.marketing-mobile-nav__panel {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  display: grid;
  gap: 0;
  max-height: calc(100dvh - 100%);
  padding: 12px 0 24px;
  overflow-y: auto;
  overscroll-behavior: contain;
  border-top: 1px solid #f2e0dc;
  border-radius: 0;
  background: white;
  box-shadow: 0 18px 34px rgb(0 0 0 / 8%);
  -webkit-overflow-scrolling: touch;
}

.marketing-mobile-nav__panel a {
  text-decoration: none;
}

.marketing-mobile-nav__group {
  border-bottom: 1px solid #f3dfdb;
}

.marketing-mobile-nav__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 54px;
  padding: 0 22px;
  color: var(--blue);
  font-size: 22px;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
}

.marketing-mobile-nav__summary::-webkit-details-marker {
  display: none;
}

.marketing-mobile-nav__summary::after {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid #111;
  border-bottom: 2px solid #111;
  transform: translateY(-3px) rotate(45deg);
}

.marketing-mobile-nav__group[open] .marketing-mobile-nav__summary::after {
  transform: translateY(3px) rotate(225deg);
}

.marketing-mobile-nav__content {
  display: grid;
  gap: 14px;
  padding: 0 22px 22px;
}

.marketing-mobile-nav__link {
  display: grid;
  gap: 4px;
  color: var(--ink);
}

.marketing-mobile-nav__link strong {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
}

.marketing-mobile-nav__link span {
  max-width: 33ch;
  color: #171212;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

.marketing-mobile-nav__solo {
  padding: 16px 22px;
  border-bottom: 1px solid #f3dfdb;
  color: var(--blue);
  font-size: 22px;
  font-weight: 500;
}

.marketing-mobile-nav__promo {
  display: grid;
  justify-items: center;
  gap: 14px;
  margin-top: 8px;
  padding: 24px 18px 28px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--cream);
  color: var(--blue);
  text-align: center;
}

.marketing-mobile-nav__promo-copy {
  display: contents;
}

.marketing-mobile-nav__promo small {
  color: var(--blue);
  font-size: 15px;
  font-weight: 500;
  text-transform: none;
}

.marketing-mobile-nav__promo strong {
  max-width: 290px;
  color: var(--blue);
  font-size: 26px;
  font-weight: 500;
  line-height: 1.08;
}

.marketing-mobile-nav__promo span {
  max-width: 300px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
}

.marketing-mobile-nav__promo em {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 28px;
  border-radius: 6px;
  background: #190000;
  color: white;
  font-family: var(--font-mono);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  text-transform: uppercase;
}

.marketing-mobile-nav__promo img {
  width: min(230px, 86%);
  order: 3;
}

.marketing-mobile-nav__promo-logo {
  display: block;
  width: min(260px, 86%);
  height: auto;
}

.marketing-mobile-nav__promo--solutions small {
  display: none;
}

.marketing-mobile-nav__promo--solutions img {
  order: 3;
  margin-block: -6px 2px;
}

.marketing-mobile-nav__promo--solutions .marketing-mobile-nav__promo-logo {
  order: 0;
  margin: 0;
}

.marketing-mobile-nav__promo--solutions span {
  order: 4;
}

.marketing-mobile-nav__promo--solutions em {
  order: 5;
}

.marketing-mobile-nav__promo--tools {
  background: var(--brand-navy);
  color: #fff;
}

.marketing-mobile-nav__promo--tools strong,
.marketing-mobile-nav__promo--tools span {
  color: #fff;
}

.marketing-mobile-nav__promo--tools img {
  width: min(360px, 100%);
  margin: 0 -28px -28px;
}

.marketing-mobile-nav__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 24px 22px 0;
}

.marketing-mobile-nav__actions .button {
  min-height: 42px;
  padding-inline: 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 24px;
  border: 1px solid #000;
  border-radius: 6px;
  background: #000;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  text-decoration: none;
}

.button--secondary {
  background: #fff;
  color: #000;
}

.button,
.marketing-dropdown__promo em,
.marketing-dropdown__tools-copy strong,
.home-hero--instant h1,
.home-card small,
.knowledge-featured__copy small,
.knowledge-featured__copy span,
.knowledge-card__meta,
.article-template__tags,
.article-template__meta,
.case-study-template__tags,
.case-study-template__meta,
.process-card small,
.insurance-hero__logo-label,
.insurance-contact__member span {
  font-family: var(--font-mono);
}

.marketing-hero {
  padding: 96px 0 72px;
  text-align: center;
}

.marketing-hero h1,
.marketing-section h1,
.marketing-section h2,
.marketing-article h1,
.marketing-cta h2 {
  margin: 0;
  color: var(--blue);
  font-size: clamp(40px, 6vw, 40px);
  line-height: 0.98;
  font-weight: 500;
}

.marketing-hero p,
.marketing-section__intro,
.marketing-article__lede,
.marketing-cta p {
  color: #303030;
  font-size: 20px;
  line-height: 1.5;
}

.marketing-hero__content {
  width: min(820px, 100%);
  margin: 0 auto 40px;
}

.marketing-hero__image,
.marketing-article__image {
  display: block;
  width: 100%;
  max-height: 620px;
  object-fit: cover;
  border-radius: 8px;
}

.marketing-section {
  padding: 88px 0;
}

.marketing-section--soft {
  background: var(--soft);
  box-shadow: 0 0 0 100vmax var(--soft);
  clip-path: inset(0 -100vmax);
}

.marketing-section--expert-provides {
  background: #fafafa;
  box-shadow: 0 0 0 100vmax #fafafa;
  clip-path: inset(0 -100vmax);
}

.marketing-section--centered {
  text-align: center;
}

.marketing-section--insurance-faq > h2,
.marketing-section--insurance-faq > .marketing-section__intro {
  max-width: 842px;
  margin-inline: auto;
  text-align: center;
}

.marketing-section--insurance-faq > .marketing-section__intro {
  margin-top: 24px;
}

.marketing-section--insurance-faq > .marketing-section__intro a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.marketing-section--narrow,
.marketing-article {
  width: min(900px, calc(100% - 48px));
}

.marketing-section__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.marketing-section__header .marketing-section__intro {
  margin-bottom: 0;
}

.marketing-section__intro-group .marketing-section__intro {
  margin: 0;
}

.marketing-section__intro-group .marketing-section__intro + .marketing-section__intro {
  margin-top: 14px;
}

.marketing-section__header .home-arrows {
  margin-left: auto;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 36px;
}

.card-grid--carousel {
  grid-auto-columns: minmax(255px, 1fr);
  padding-bottom: 12px;
}

.card {
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.card__image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.marketing-section .card-grid .card__image[src*="expert-icon"] {
  width: 34px;
  height: 34px;
  margin-bottom: 70px;
  object-fit: contain;
  border-radius: 0;
  aspect-ratio: auto;
}

.marketing-section .card-grid .card__image[src*="health-score-icon"] {
  width: 32px;
  height: 32px;
  margin-bottom: 74px;
  object-fit: contain;
  border-radius: 0;
  aspect-ratio: auto;
}

.card h2,
.card h3 {
  margin: 0 0 10px;
  font-size: 28px;
  line-height: 1.1;
}

.card p {
  color: var(--muted);
  line-height: 1.45;
}

.marketing-section--compact-icon-grid {
  padding: 64px 0;
}

.marketing-section--compact-icon-grid h2 {
  font-size: clamp(38px, 4vw, 58px);
}

.marketing-section--expert-provides h2 {
  font-size: clamp(34px, 3.7vw, 40px);
  line-height: 1.08;
}

.marketing-section--compact-icon-grid .marketing-section__intro {
  max-width: 980px;
  font-size: 18px;
}

.marketing-section--compact-icon-grid .card-grid {
  grid-auto-columns: auto;
  grid-auto-flow: row;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 28px;
  overflow-x: visible;
  padding-bottom: 0;
}

.marketing-section--compact-icon-grid .card--compact-icon {
  min-height: 210px;
  padding: 22px;
}

.marketing-section--compact-icon-grid .card__image--icon {
  width: 44px;
  height: 44px;
  margin-bottom: 46px;
  object-fit: contain;
  border-radius: 0;
  aspect-ratio: auto;
}

.marketing-section--compact-icon-grid .card h3 {
  font-size: 28px;
  font-weight: 500;
}

.marketing-section--compact-icon-grid .card p {
  font-size: 16px;
}

.marketing-section .card-grid .card:has(.card__image[src*="expert-icon"]) {
  min-height: 245px;
}

.marketing-section .card-grid .card:has(.card__image[src*="health-score-icon"]) {
  min-height: 320px;
}

.marketing-section--health-score-measures .card-grid {
  grid-auto-columns: minmax(280px, calc((100% - 72px) / 4));
  gap: 24px;
  padding: 6px 0 12px;
}

.marketing-section--health-score-measures .home-arrows {
  align-items: center;
  gap: 16px;
}

.marketing-section--health-score-measures .home-arrows button {
  width: 40px;
  height: 40px;
  border-color: #dfe2e6;
  color: inherit;
  border-radius: 1.5rem;
}

.marketing-section--health-score-measures .home-arrows button:hover,
.marketing-section--health-score-measures .home-arrows button:focus-visible {
  border-color: #dfe2e6;
  color: inherit;
}

.marketing-section--health-score-measures .home-arrows img {
  display: block;
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.marketing-section--health-score-measures h2 {
  font-size: clamp(34px, 3.7vw, 40px);
  line-height: 1.08;
}

.marketing-section--health-score-measures .card {
  min-height: 320px;
  scroll-snap-align: start;
}

.marketing-section--building-health-score-measures .card-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 302px;
  gap: 24px;
  column-gap: 140px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}

.marketing-section--building-health-score-measures .card {
  width: 302px;
  height: 380px;
  min-height: 380px;
}

.marketing-faq-list {
  display: grid;
  gap: 12px;
  margin: 34px 0;
}

.marketing-faq {
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}

.marketing-faq summary {
  cursor: pointer;
  font-size: 20px;
  font-weight: 800;
}

.marketing-faq__answer {
  color: #333;
  line-height: 1.5;
}

.marketing-cta {
  margin-block: 80px;
  padding: 88px 24px;
  border-radius: 8px;
  background: var(--cream);
  text-align: center;
}

.marketing-cta h2 {
  font-size: clamp(32px, 4vw, 50px);
}

.marketing-cta--blue {
  background: var(--brand-navy);
}

.marketing-cta--blue h2,
.marketing-cta--blue p {
  color: #fff;
}

.marketing-cta__copy-link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  color: inherit;
  text-decoration: none;
}

.marketing-cta__copy-link h2 {
  color: var(--cream);
  font-size: 28px;
  line-height: 1.2;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

.marketing-cta__copy-link p {
  margin: 24px 0 0;
  color: #fff;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
}

.marketing-cta--instant-intelligence {
  width: min(1280px, calc(100% - 48px));
  margin-block: 92px;
  padding: 0;
  overflow: visible;
  border-radius: 20px;
  background: transparent;
  text-align: left;
}

.instant-intelligence-banner {
  position: relative;
  display: grid;
  min-height: 345px;
  grid-template-columns: minmax(0, 1.08fr) 300px minmax(0, 0.92fr);
  align-items: center;
  gap: 34px;
  padding: 58px 58px 48px;
  border-radius: 20px;
  background: var(--brand-navy);
  color: #fff;
}

.instant-intelligence-banner__copy {
  max-width: 440px;
}

.instant-intelligence-banner__brand {
  display: inline-flex;
  align-items: center;
  width: 156px;
  margin-bottom: 22px;
}

.instant-intelligence-banner__brand img {
  display: block;
  width: 100%;
  height: auto;
}

.instant-intelligence-banner h2 {
  margin: 0 0 18px;
  color: #fff1cb;
  font-family: var(--font-mono);
  font-size: clamp(44px, 4.25vw, 60px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.86;
  text-shadow:
    0 3px 0 #111,
    3px 3px 0 #111;
  text-transform: uppercase;
}

.instant-intelligence-banner h2 sup {
  font-size: 0.36em;
  line-height: 0;
}

.instant-intelligence-banner__copy p {
  margin: 0;
  color: #fff;
  font-size: 15px;
  line-height: 1.45;
}

.instant-intelligence-banner__copy strong {
  font-weight: 800;
}

.instant-intelligence-banner__device {
  position: relative;
  z-index: 1;
  align-self: center;
  margin: -72px -54px -82px;
  pointer-events: none;
}

.instant-intelligence-banner__device::after {
  position: absolute;
  right: 16px;
  bottom: -12px;
  left: 34px;
  z-index: -1;
  height: 44px;
  border-radius: 50%;
  background: rgb(0 0 0 / 42%);
  content: "";
  filter: blur(20px);
}

.instant-intelligence-banner__device img {
  display: block;
  width: 312px;
  height: auto;
}

.instant-intelligence-banner__action {
  justify-self: end;
  width: min(100%, 330px);
}

.instant-intelligence-banner__action h3 {
  margin: 0 0 24px;
  color: #fff;
  font-size: clamp(38px, 3.6vw, 48px);
  font-weight: 500;
  line-height: 1.16;
}

.instant-intelligence-banner__action p {
  margin: 0 0 24px;
  color: #fff;
  font-size: 21px;
  line-height: 1.35;
}

.instant-intelligence-banner__action .button {
  min-width: 285px;
  justify-content: center;
  background: #0867ff;
  color: #fff;
  font-family: var(--font-mono);
  font-size: 16px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.contact-form {
  display: grid;
  gap: 24px;
}

.contact-form__row {
  --form-row-gap: 24px;
}

.field label {
  font-weight: 600;
}

.field input,
.field select,
.field textarea {
  border: 1px solid var(--line);
  padding: 16px;
}

.field--checkbox {
  display: flex;
  align-items: center;
  gap: 12px;
}

.field--checkbox input {
  width: 24px;
  height: 24px;
}

.contact-form__submit {
  width: 100%;
}

.company-contact-page {
  width: min(730px, calc(100% - 48px));
  margin: 0 auto;
  padding: 126px 0 80px;
}

.company-contact-hero {
  margin-bottom: 98px;
  text-align: center;
}

.company-contact-hero h1 {
  margin: 0;
  color: var(--blue);
  font-size: clamp(48px, 5vw, 64px);
  font-weight: 500;
  line-height: 1;
}

.company-contact-hero p {
  margin: 34px 0 0;
  color: #1c1c1c;
  font-size: 20px;
  line-height: 1.45;
}

.company-contact-form {
  display: grid;
  gap: 22px;
}

.company-contact-form__row {
  --form-row-gap: 20px;
}

.company-contact-field {
  --form-field-radius: 7px;
}

.company-contact-field label {
  color: #1c1c1c;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.2;
}

.company-contact-field input,
.company-contact-field select,
.company-contact-field textarea {
  border: 1px solid #e2e2e2;
  background: #fbfbfb;
  color: #111;
  font-size: 15px;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.company-contact-field input,
.company-contact-field select {
  height: 42px;
  padding: 0 14px;
}

.company-contact-field textarea {
  min-height: 174px;
  resize: vertical;
  padding: 14px;
}

.company-contact-field select {
  appearance: none;
  padding-right: 40px;
  background-image: linear-gradient(45deg, transparent 50%, #111 50%), linear-gradient(135deg, #111 50%, transparent 50%);
  background-position: calc(100% - 20px) 18px, calc(100% - 14px) 18px;
  background-repeat: no-repeat;
  background-size: 7px 7px, 7px 7px;
  font-weight: 600;
}

.company-contact-field input::placeholder,
.company-contact-field textarea::placeholder {
  color: #9b9b9b;
  font-style: italic;
}

.company-contact-field input:focus,
.company-contact-field select:focus,
.company-contact-field textarea:focus {
  border-color: #bdbdbd;
  background: #fff;
  box-shadow: 0 0 0 3px rgb(0 101 255 / 8%);
}

.company-contact-field input.is-invalid {
  border-color: #ff6a2a;
}

.field input.is-invalid,
.field textarea.is-invalid {
  border: 1px solid #ff6a2a;
}

.company-contact-field__error,
.form-field__error {
  color: #f15d22;
  font-size: 14px;
  line-height: 1.2;
}

.company-contact-checkbox {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 8px;
  color: #222;
  font-size: 17px;
  line-height: 1.35;
}

.company-contact-checkbox input {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  margin: 0;
  appearance: none;
  border: 1px solid #e2e2e2;
  border-radius: 7px;
  background: #fbfbfb;
}

.company-contact-checkbox input:checked {
  border-color: #000;
  background: #000;
  box-shadow: inset 0 0 0 6px #fff;
}

.company-contact-form__submit {
  width: 100%;
  justify-content: center;
  margin-top: 0;
  background: #000;
  color: #fff;
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.company-contact-location {
  display: grid;
  justify-items: center;
  gap: 8px;
  margin-top: 90px;
  padding: 28px 24px;
  border-radius: 18px;
  background: #fafafa;
  color: #1a1a1a;
  text-align: center;
}

.company-contact-location strong {
  font-size: 20px;
  line-height: 1.1;
}

.company-contact-location span {
  font-size: 19px;
  line-height: 1.25;
}

.flash {
  width: min(900px, calc(100% - 48px));
  margin: 24px auto;
  padding: 16px;
  border-radius: 8px;
}

.flash--notice {
  background: #ebf7ef;
}

.flash--alert {
  background: #fff1eb;
}

.marketing-footer {
  margin-top: 0;
  background: var(--deep-blue);
  color: white;
  line-height: 150%;
}

.marketing-footer__top {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 36px 0;
}

.marketing-footer__top::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0 50%;
  width: 100vw;
  margin-left: -50vw;
  background: var(--blue);
}

.marketing-footer__top > strong {
  font-family: var(--font-sans);
  font-size: 24px;
}

.marketing-footer__socials {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.marketing-footer__socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.marketing-footer__socials a.marketing-footer__app-store {
  width: 141px;
}

.marketing-footer__socials img {
  display: block;
  height: auto;
}

.marketing-footer__app-store img {
  width: 141px;
}

.marketing-footer__social img {
  width: 48px;
}

.marketing-footer__brand {
  color: white;
}

.marketing-footer__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 32px;
  padding: 56px 0;
}

.marketing-footer__group {
  display: grid;
  align-content: start;
  gap: 12px;
}

.marketing-footer__group h2 {
  margin: 0 0 10px;
  font-size: 16px;
}

.marketing-footer__group a {
  color: #d9e3ff;
  text-decoration: none;
}

.marketing-footer__copyright {
  padding: 24px 0 40px;
  border-top: 1px solid rgb(255 255 255 / 18%);
}

@media (max-width: 1024px) {
  .marketing-header-shell {
    position: sticky;
  }

  .marketing-header {
    position: relative;
    align-items: center;
    flex-direction: row;
    gap: 16px;
    width: min(calc(100% - 32px), var(--container-max));
    padding: 18px 0;
  }

  .marketing-header__brand img {
    width: clamp(150px, 44vw, 221px);
  }

  .marketing-header__nav,
  .marketing-header__actions {
    display: none;
  }

  .marketing-mobile-nav {
    display: block;
    margin-left: auto;
  }

  .marketing-dropdown {
    display: none !important;
  }

  .contact-form__row,
  .marketing-footer__grid {
    grid-template-columns: 1fr;
  }

  .marketing-footer__grid {
    gap: 28px;
  }

  .marketing-hero,
  .marketing-section,
  .marketing-article,
  .marketing-cta,
  .marketing-footer__top,
  .marketing-footer__grid,
  .marketing-footer__copyright,
  .knowledge-hero__inner,
  .knowledge-featured__inner,
  .knowledge-section,
  .faq-page-hero,
  .faq-page,
  .faq-help-band__inner,
  .article-template__header,
  .article-template__hero,
  .article-template__body {
    width: min(calc(100% - 40px), 1180px);
  }

  .marketing-hero {
    padding: 82px 0 62px;
  }

  .marketing-section {
    padding: 76px 0;
  }

  .company-contact-page {
    width: min(730px, calc(100% - 40px));
    padding: 96px 0 72px;
  }

  .company-contact-hero {
    margin-bottom: 72px;
  }

  .marketing-cta--instant-intelligence {
    width: min(calc(100% - 40px), 1180px);
    margin-block: 72px;
  }

  .instant-intelligence-banner {
    grid-template-columns: minmax(0, 1fr) 240px;
    gap: 22px 28px;
    padding: 42px 36px;
  }

  .instant-intelligence-banner__copy {
    max-width: none;
  }

  .instant-intelligence-banner__device {
    grid-row: span 2;
    justify-self: center;
    margin: -50px -12px -62px;
  }

  .instant-intelligence-banner__device img {
    width: 240px;
  }

  .instant-intelligence-banner__action {
    justify-self: start;
    width: min(100%, 420px);
  }

  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .marketing-section--compact-icon-grid {
    padding: 54px 0;
  }

  .marketing-section--compact-icon-grid h2 {
    font-size: 36px;
  }

  .marketing-section--compact-icon-grid .marketing-section__intro {
    margin-bottom: 0;
    font-size: 17px;
  }

  .marketing-section--compact-icon-grid .card-grid,
  .marketing-section--latest-content .card-grid--latest-content {
    display: grid;
    grid-auto-flow: column;
    grid-template-columns: none;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
  }

  .marketing-section--compact-icon-grid .card-grid {
    grid-auto-columns: minmax(196px, 72vw);
    gap: 14px;
    margin-top: 24px;
    padding: 0 24px 12px;
  }

  .marketing-section--compact-icon-grid .card {
    min-height: 188px;
    padding: 18px;
    scroll-snap-align: start;
  }

  .marketing-section--compact-icon-grid .card-grid .card--compact-icon {
    min-height: 188px;
  }

  .marketing-section--compact-icon-grid .card-grid .card__image--icon {
    width: 26px;
    height: 26px;
    margin-bottom: 24px;
  }

  .marketing-section--compact-icon-grid .card h3 {
    font-size: 23px;
  }

  .marketing-section--compact-icon-grid .card p {
    font-size: 16px;
  }

  .marketing-section--latest-content .card-grid--latest-content {
    grid-auto-columns: minmax(238px, 78vw);
    gap: 16px;
    padding: 0 24px 12px;
  }

  .marketing-section--latest-content .card-grid--latest-content .card {
    min-height: 0;
    padding: 18px;
    scroll-snap-align: start;
  }

  .marketing-section--latest-content .card-grid--latest-content .card__image {
    aspect-ratio: 16 / 10;
    margin-bottom: 16px;
  }

  .knowledge-hero {
    padding: 76px 0 64px;
  }

  .knowledge-featured {
    padding: 64px 0 76px;
  }

  .knowledge-featured__inner,
  .knowledge-case-study,
  .knowledge-resource {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .knowledge-featured__image {
    order: -1;
  }

  .knowledge-featured h2,
  .knowledge-featured p {
    max-width: 680px;
  }

  .knowledge-section {
    padding: 72px 0;
  }

  .knowledge-section__header {
    align-items: flex-start;
    flex-direction: column;
  }

  .knowledge-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .knowledge-card__image {
    aspect-ratio: 16 / 10;
  }

  .knowledge-section--resources {
    gap: 56px;
  }

  .knowledge-resource__image {
    order: -1;
  }

  .faq-page-hero {
    padding: 76px 0 58px;
  }

  .faq-page {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 72px;
  }

  .faq-page__categories {
    padding: 0 0 18px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .faq-page__categories nav {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .faq-page__categories a {
    flex: 0 0 auto;
  }

  .faq-page__categories a.is-active::after {
    top: auto;
    right: 0;
    bottom: -8px;
    left: 0;
    width: auto;
    height: 3px;
  }

  .faq-page__item summary {
    align-items: flex-start;
    font-size: 18px;
  }

  .faq-page__answer {
    padding-right: 0;
  }

  .faq-page__contact {
    align-items: flex-start;
    flex-direction: column;
  }

  .faq-help-band__inner {
    grid-template-columns: 1fr;
    gap: 32px;
    min-height: 0;
    padding: 72px 0;
  }

  .faq-help-band__image {
    order: -1;
    width: min(320px, 100%);
  }

  .faq-page__cta {
    margin-block: 72px;
  }

  .article-template {
    padding-top: 62px;
  }

  .article-template__header {
    margin-bottom: 36px;
  }

  .article-template__hero {
    margin-bottom: 46px;
  }

  .article-template__hero img {
    aspect-ratio: 1.35 / 1;
  }

  .article-template__body {
    margin-bottom: 72px;
  }

  .article-template__placeholder {
    min-height: 230px;
  }

  .article-template__related {
    padding-inline: 24px;
  }

  .marketing-footer__top {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }
}

@media (max-width: 640px) {
  .marketing-footer {
    margin-inline: auto;
    overflow: hidden;
  }
  
  .home-hero-slider .home-hero:first-child .home-hero__media {
    min-height: 500px !important;
  }
  .marketing-footer__top,
  .marketing-footer__grid,
  .marketing-footer__copyright {
    width: 100%;
  }

  .marketing-footer__top {
    gap: 26px;
    padding: 36px 20px 39px;
  }

  .marketing-footer__top::before {
    inset: 0;
    width: auto;
    margin-left: 0;
  }

  .marketing-footer__brand img {
    width: 137px;
  }

  .marketing-footer__top > strong {
    font-size: 19px;
    line-height: 1.25;
  }

  .marketing-footer__socials {
    width: 100%;
    gap: 25px;
    margin-left: 0;
  }

  .marketing-footer__socials a.marketing-footer__app-store,
  .marketing-footer__app-store img {
    width: 137px;
  }

  .marketing-footer__social img {
    width: 46px;
  }

  .marketing-footer__grid {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 38px 14px 32px;
  }

  .marketing-footer__group {
    gap: 8px;
  }

  .marketing-footer__group h2 {
    margin-bottom: 4px;
    font-size: 11px;
    line-height: 1.2;
  }

  .marketing-footer__group a {
    color: #ecf1ff;
    font-size: 12px;
    line-height: 1.45;
  }

  .marketing-footer__copyright {
    padding: 18px 14px 28px;
    font-size: 11px;
  }
}

.home-hero-slider {
  position: relative;
  width: 100%;
  min-height: 690px;
  margin: 0;
  overflow: visible;
  background: white;
}

.home-hero {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  align-items: start;
  gap: 48px;
  width: 100%;
  min-height: 690px;
  margin: 0;
  padding: 76px max(24px, calc((100vw - 1220px) / 2)) 40px;
  overflow: visible;
  opacity: 0;
  visibility: hidden;
  background: white;
  animation: homeHeroPanel 24s infinite;
}

.home-hero:first-child {
  position: relative;
  padding-top: 1rem;
}

.home-hero:nth-child(2) {
  animation-delay: 8s;
}

.home-hero:nth-child(3) {
  animation-delay: 16s;
}

.home-hero-slider:hover .home-hero,
.home-hero-slider:focus-within .home-hero,
.home-hero-slider:hover .home-hero-indicator::after,
.home-hero-slider:focus-within .home-hero-indicator::after {
  animation-play-state: paused;
}

.home-hero h1 {
  margin: 0;
  color: var(--blue);
  max-width: 694px;
  font-size: 60px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0;
}

.home-hero h1 span {
  color: var(--navy);
}

.home-hero__copy {
  max-width: 553px;
  margin: 20px 0 22px;
  color: #303030;
  font-size: 20px;
  line-height: 1.6;
}

.home-hero__primary-cta {
  margin-top: 22px;
}

.home-search {
  display: grid;
  gap: 6px;
  width: min(520px, 100%);
}

.home-search label {
  font-weight: 800;
  font-size: 16px;
  line-height: 1.6;
}

.home-search p {
  margin: -4px 0 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.home-search input {
  width: 100%;
  height: 60px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 22px;
  color: var(--ink);
  font: inherit;
  font-size: 14px;
  font-style: italic;
  line-height: 1.5;
  background: #fafafa;
}

.home-hero__media {
  position: relative;
  min-height: 570px;
  overflow: visible;
}

.home-hero__media img {
  position: absolute;
  display: block;
  max-width: none;
  pointer-events: none;
}

.home-hero--primary .home-hero__media img {
  top: 50%;
  right: -42px;
  width: min(520px, 40vw);
  transform: translateY(-50%);
}

.home-hero--insurance {
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: 0;
  padding: 112px max(24px, calc((100vw - 1220px) / 2)) 40px;
  overflow: hidden;
}

.home-hero--insurance h1 {
  max-width: 694px;
  line-height: 1.2;
}

.home-hero--insurance .home-hero__content {
  position: relative;
  z-index: 2;
  padding-left: 64px;
}

.home-hero--insurance .home-hero__copy {
  max-width: 470px;
  margin-bottom: 24px;
}

.home-hero--insurance .home-hero__media {
  position: absolute;
  inset: 0;
  z-index: 1;
  min-height: 0;
  overflow: hidden;
}

.home-hero--insurance .home-hero__media img {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 66% 47%;
  transform: none;
}

.home-hero--instant {
  --instant-hero-blue-offset: 40px;
  grid-template-columns: minmax(0, 0.78fr) minmax(460px, 1.08fr);
  gap: 34px;
  padding: 173px max(24px, calc((100vw - 1220px) / 2 + 42px)) 40px;
  overflow: visible;
  background: linear-gradient(
    to bottom,
    transparent 0 var(--instant-hero-blue-offset),
    var(--blue) var(--instant-hero-blue-offset) 100%
  );
}

.home-hero--instant .home-hero__content {
  position: relative;
  z-index: 2;
}

.home-hero--instant h1 {
  max-width: 440px;
  color: #fff1cb;
  font-size: 60px;
  font-weight: 900;
  line-height: 0.86;
  text-transform: uppercase;
}

.home-hero--instant .home-hero__copy {
  max-width: 460px;
  color: #e5efff;
}

.home-hero--instant .home-hero__media {
  position: static;
  align-self: stretch;
  min-height: 560px;
  overflow: visible;
}

.home-hero--instant .home-hero__media img {
  top: 3px;
  right: max(230px, calc((1220px - 100vw) / 2 + 94px));
  bottom: auto;
  z-index: 3;
  width: min(750px, 48vw);
  transform: none;
}

.home-hero-indicators {
  display: none;
}

.home-hero-indicator {
  position: relative;
  display: block;
  width: 46px;
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: rgb(16 16 16 / 14%);
}

.home-hero-indicator::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--ink);
  content: "";
  transform: scaleX(0);
  transform-origin: left center;
  animation: homeHeroIndicator 24s infinite;
}

.home-hero-indicator:nth-child(2)::after {
  animation-delay: 8s;
}

.home-hero-indicator:nth-child(3)::after {
  animation-delay: 16s;
}

@keyframes homeHeroPanel {
  0%,
  27% {
    opacity: 1;
    visibility: visible;
  }

  33%,
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes homeHeroIndicator {
  0% {
    opacity: 1;
    transform: scaleX(0);
  }

  27% {
    opacity: 1;
    transform: scaleX(1);
  }

  33%,
  100% {
    opacity: 0;
    transform: scaleX(1);
  }
}

.home-stats {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(1224px, calc(100% - 112px));
  margin: -25px auto 96px;
  overflow: hidden;
  border-radius: 20px;
  background: #000;
  box-shadow: 0 18px 42px rgb(0 0 0 / 12%);
}

.home-stat {
  display: grid;
  justify-items: center;
  gap: 3px;
  padding: 22px 18px;
  color: white;
  text-align: center;
}

.home-stat strong {
  font-size: 20px;
}

.home-stat span {
  color: #d9d9d9;
}

.home-section {
  padding: 88px 0;
}

.home-section--centered {
  text-align: center;
}

.home-section--white {
  background: #fff;
  box-shadow: 0 0 0 100vmax #fff;
  clip-path: inset(0 -100vmax);
}

.home-section--grey {
  background: #fafafa;
  box-shadow: 0 0 0 100vmax #fafafa;
  clip-path: inset(0 -100vmax);
}

.home-section h2,
.home-cta h2 {
  margin: 0;
  color: var(--blue);
  font-size: clamp(34px, 3.7vw, 48px);
  font-weight: 500;
  line-height: 1.08;
}

.home-section__intro {
  max-width: 780px;
  margin: 22px auto 0;
  color: #303030;
  font-size: 19px;
  line-height: 1.55;
}

.home-section__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}



.home-section__header .home-section__intro {
  margin-left: 0;
}

.home-section--products .home-section__header {
  display: block;
  margin-bottom: 0;
  text-align: center;
}

.home-section--products .home-section__header .home-section__intro {
  margin-inline: auto;
}

.home-solution-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 52px 24px;
  margin-top: 58px;
}

.home-card {
  display: block;
  color: var(--ink);
  text-align: left;
  text-decoration: none;
}

.home-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  object-fit: cover;
  object-position: top center;
  background: #eee;
  height: 320px;
}

.home-card h3 {
  margin: 18px 0 8px;
  font-size: 26px;
  line-height: 1.1;
}

.home-card p {
  margin: 0 0 12px;
  color: #343434;
  line-height: 1.45;
}

.home-card span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 15px;
  font-weight: 800;
}

.home-card small {
  display: inline-block;
  margin-top: 14px;
  color: #7a7a7a;
  font-size: 13px;
  text-transform: uppercase;
}

.home-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.home-card__tags small {
  margin-top: 0;
  padding: 5px 9px;
  border: 1px solid #dedede;
  border-radius: 4px;
  background: #fff;
  color: #969696;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0;
}

.home-band {
  margin-top: 40px;
  background: var(--soft);
}

.home-band .home-section {
  padding-block: 96px;
}

.home-arrows {
  display: flex;
  gap: 10px;
}

.home-arrows span,
.home-arrows button {
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: white;
  color: #777;
}

.home-arrows button {
  padding: 0;
  cursor: pointer;
  font: inherit;
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.home-arrows button span {
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.home-arrows button:hover,
.home-arrows button:focus-visible {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-1px);
}

.home-use-case-row {
  grid-auto-columns: minmax(340px, 392px);
  gap: 24px;
  padding-bottom: 12px;
  scroll-behavior: smooth;
}

.home-use-case-row .home-card {
  scroll-snap-align: start;
}

.home-card--compact img {
  aspect-ratio: 1.36 / 1;
}

.home-card--compact h3 {
  font-size: 22px;
}

.home-card--compact p {
  font-size: 16px;
}

.home-testimonial {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}

.home-testimonial__photo {
  min-height: 360px;
  border-radius: 8px;
  overflow: hidden;
  background: #eee;
}

.home-testimonial__photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.home-testimonial blockquote {
  margin: 0;
}

.home-testimonial p {
  margin: 0 0 18px;
  max-width: 680px;
  font-size: 28px;
  line-height: 1.35;
}

.home-testimonial cite {
  display: block;
  margin-bottom: 18px;
  font-style: normal;
  font-weight: 800;
}

.home-market-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

img.market-trends-card__image {
  display: block;
  width: 100%;
  aspect-ratio: 1.16 / 1;
  min-height: 290px;
  object-fit: cover;
  object-position: top center;
  border-radius: 20px;
}

.home-market-grid .home-card h3,
.marketing-section--latest-content .card h3 {
  margin-top: 18px;
}

.home-band--light {
  background: #fafafa;
}

.home-band--white {
  background: #fff;
}

.home-cta {
  margin-block: 96px 120px;
  padding: 88px 24px;
  border-radius: 8px;
  background: var(--cream);
  text-align: center;
}

.home-cta p {
  margin: 22px 0 26px;
}

.knowledge-hero {
  padding: 120px 0 106px;
  text-align: center;
}

.knowledge-hero h1 {
  max-width: 740px;
  margin: 0 auto;
  color: var(--blue);
  font-size: clamp(44px, 5.4vw, 66px);
  font-weight: 500;
  line-height: 1.03;
}

.knowledge-hero p {
  max-width: 780px;
  margin: 22px auto 0;
  color: #303030;
  font-size: 19px;
  line-height: 1.45;
}

.knowledge-featured,
.knowledge-band {
  background: #fafafa;
}

.knowledge-featured {
  padding: 110px 0 118px;
}

.knowledge-featured__inner {
  display: grid;
  grid-template-columns: minmax(270px, 0.55fr) minmax(0, 1.35fr);
  align-items: center;
  gap: 68px;
}

.knowledge-featured__copy {
  align-self: center;
}

.knowledge-featured__copy small,
.knowledge-featured__copy span,
.knowledge-card__meta {
  color: #999;
  font-size: 13px;
  /* font-weight: 800; */
  text-transform: uppercase;
}

.knowledge-featured__copy span {
  margin-left: 14px;
}

.knowledge-featured h2,
.knowledge-section h2,
.knowledge-resource h2 {
  margin: 0;
  color: var(--blue);
  font-size: clamp(32px, 3vw, 44px);
  font-weight: 500;
  line-height: 1.08;
}

.knowledge-featured h2 {
  margin-top: 12px;
  max-width: 340px;
}

.knowledge-featured p {
  max-width: 380px;
  margin: 26px 0 28px;
  color: #303030;
  font-size: 17px;
  line-height: 1.45;
}

.knowledge-featured__image {
  display: block;
  width: 100%;
  aspect-ratio: 1.72 / 1;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
}

.knowledge-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #000;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
}

.knowledge-section {
  padding: 104px 0;
}

.knowledge-section__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.knowledge-section__header p {
  margin: 14px 0 0;
  color: #303030;
  font-size: 17px;
  line-height: 1.45;
}

.knowledge-section__header h1 {
  margin: 0;
  color: var(--blue);
  font-size: clamp(36px, 3.4vw, 52px);
  font-weight: 500;
  line-height: 1.08;
}

.knowledge-section--listing {
  padding-top: 108px;
}

.knowledge-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.knowledge-card {
  min-width: 0;
}

.knowledge-card__image {
  display: block;
  width: 100%;
  aspect-ratio: 1.16 / 1;
  min-height: 290px;
  margin-bottom: 18px;
  border-radius: 20px 20px 0 0;
  object-fit: cover;
  object-position: center;
  background: #eee;
}

.knowledge-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.knowledge-card__meta small,
.knowledge-card__meta span {
  padding: 5px 9px;
  border: 1px solid #dedede;
  border-radius: 4px;
  background: #fff;
  color: #969696;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0;
}

.knowledge-card h3 {
  margin: 0 0 10px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.1;
}

.knowledge-card p {
  margin: 0 0 12px;
  color: #303030;
  font-size: 15px;
  line-height: 1.42;
}

.knowledge-card[hidden] {
  display: none;
}

.knowledge-listing__actions {
  display: flex;
  justify-content: center;
  margin-top: 54px;
}

.knowledge-listing__actions .button {
  min-width: 220px;
  min-height: 48px;
  background: #fff;
  color: #101010;
}

.knowledge-section--case {
  padding: 104px 0 112px;
}

.knowledge-case-study {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  align-items: center;
  gap: 48px;
}

.knowledge-case-study__image {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  object-fit: cover;
}

.knowledge-case-study blockquote {
  margin: 0;
}

.knowledge-case-study p {
  max-width: 700px;
  margin: 0 0 18px;
  color: #111;
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.35;
}

.knowledge-case-study cite {
  display: block;
  margin-bottom: 18px;
  font-size: 15px;
  font-style: normal;
  font-weight: 800;
}

.knowledge-section--resources {
  display: grid;
  gap: 70px;
  padding: 112px 0 86px;
}

.knowledge-resource {
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) minmax(0, 1fr);
  align-items: center;
  gap: 72px;
  color: inherit;
  text-decoration: none;
}

.knowledge-resource__copy p {
  margin: 20px 0 0;
  color: #303030;
  font-size: 17px;
  line-height: 1.45;
}

.knowledge-resource__image {
  display: block;
  width: 100%;
  aspect-ratio: 1.46 / 1;
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
  background: #fafafa;
}

.market-trends-hero {
  padding: 128px 0 112px;
}

.market-trends-hero h1 {
  max-width: 760px;
}

.market-trends-hero p {
  max-width: 520px;
  font-size: 16px;
}

.market-trends-featured {
  padding: 112px 0 116px;
}

.market-trends-featured .knowledge-featured__inner {
  grid-template-columns: minmax(260px, 0.52fr) minmax(0, 1.42fr);
}

.market-trends-featured .knowledge-featured__image {
  aspect-ratio: 1.65 / 1;
}

.market-trends-latest {
  padding: 108px 0 104px;
}

.market-trends-latest .knowledge-section__header {
  display: block;
  margin-bottom: 34px;
}

.market-trends-latest .knowledge-card__image {
  min-height: 0;
  border-radius: 8px;
}

.market-trends-latest .knowledge-listing__actions .button {
  min-width: 176px;
}

.market-trends-resources {
  padding-top: 72px;
}

.market-trends-resources .knowledge-resource {
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1fr);
}

.market-trends-resources .knowledge-resource__image {
  max-width: 560px;
  justify-self: end;
}

.market-trends-cta {
  margin-top: 36px;
}

.case-studies-hero {
  padding: 128px 0 112px;
}

.case-studies-hero h1 {
  max-width: 650px;
}

.case-studies-hero p {
  max-width: 520px;
  font-size: 16px;
}

.case-studies-featured {
  padding: 112px 0 116px;
}

.case-studies-featured .knowledge-featured__inner {
  grid-template-columns: minmax(260px, 0.52fr) minmax(0, 1.42fr);
}

.case-studies-featured .knowledge-featured__image {
  aspect-ratio: 1.65 / 1;
  background: #d9d9d9;
}

.case-studies-latest {
  padding: 108px 0 104px;
}

.case-studies-latest .knowledge-section__header {
  display: block;
  margin-bottom: 34px;
}

.case-studies-latest .knowledge-card__image {
  min-height: 0;
  border-radius: 8px;
  background: #d9d9d9;
}

.case-studies-latest .knowledge-listing__actions .button {
  min-width: 176px;
}

.case-studies-resources {
  padding-top: 72px;
}

.case-studies-resources .knowledge-resource {
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1fr);
}

.case-studies-resources .knowledge-resource__image {
  max-width: 560px;
  justify-self: end;
}

.case-studies-cta {
  margin-top: 36px;
}

.faq-page-hero {
  padding: 118px 0 90px;
  text-align: center;
}

.faq-page-hero h1 {
  max-width: 640px;
  margin: 0 auto;
  color: var(--blue);
  font-size: clamp(44px, 5vw, 68px);
  font-weight: 500;
  line-height: 1.03;
}

.faq-page-hero p {
  margin: 26px 0 0;
  color: #303030;
  font-size: 20px;
  line-height: 1.45;
}

.faq-page {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 26px;
  width: min(1050px, calc(100% - 48px));
  margin: 0 auto 92px;
}

.faq-page--preview {
  width: 100%;
  margin: 36px 0 30px;
}

.faq-page__categories {
  padding: 14px 22px 0 18px;
  border-right: 1px solid var(--line);
  height: fit-content;
}

.faq-page__categories h2 {
  margin: 0 0 14px;
  color: #111;
  font-size: 19px;
  font-weight: 900;
  line-height: 1.2;
}

.faq-page__categories nav {
  display: grid;
  gap: 10px;
}

.faq-page__categories a {
  display: block;
  color: #6a6a6a;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.25;
  text-decoration: none;
}

.faq-page__categories a.is-active {
  position: relative;
  color: var(--blue);
}

.faq-page__categories a.is-active::after {
  content: "";
  position: absolute;
  top: -3px;
  right: -24px;
  width: 3px;
  height: 26px;
  border-radius: 2px;
  background: var(--blue);
}

.faq-page__questions {
  min-width: 0;
}

.faq-page__item {
  padding: 0;
  border: 0;
}

.faq-page__item + .faq-page__item {
  margin-top: 25px;
}

.faq-page__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 28px;
  cursor: pointer;
  color: #111;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.25;
  list-style: none;
}

.faq-page__item summary::-webkit-details-marker {
  display: none;
}

.faq-page__item summary::after {
  content: "+";
  flex: 0 0 auto;
  color: #111;
  font-size: 25px;
  font-weight: 500;
  line-height: 1;
}

.faq-page__item[open] summary::after {
  content: "-";
}

.faq-page__answer {
  max-width: 780px;
  padding: 14px 32px 0 0;
}

.faq-page__answer p {
  margin: 0 0 12px;
  color: #303030;
  font-size: 18px;
  line-height: 1.48;
}

.faq-page__contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 28px;
  padding: 24px;
  border-radius: 8px;
  background: #fafafa;
}

.faq-page__contact h2,
.faq-page__empty h2 {
  margin: 0 0 14px;
  color: #111;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.2;
}

.faq-page__contact p,
.faq-page__empty p {
  margin: 0;
  color: #303030;
  font-size: 17px;
  line-height: 1.45;
}

.faq-page__contact .button {
  min-width: 142px;
}

.faq-page__empty {
  grid-column: 1 / -1;
  padding: 34px;
  border-radius: 8px;
  background: #fafafa;
}

.faq-help-band {
  background: #fafafa;
}

.faq-help-band__inner {
  display: grid;
  grid-template-columns: minmax(240px, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: 72px;
  min-height: 620px;
  padding: 88px 0;
}

.faq-help-band__copy h2 {
  margin: 0;
  color: var(--blue);
  font-size: clamp(34px, 3.2vw, 44px);
  font-weight: 500;
  line-height: 1.08;
}

.faq-help-band__copy p {
  margin: 22px 0 0;
  color: #303030;
  font-size: 19px;
  line-height: 1.45;
}

.faq-help-band__image {
  display: block;
  width: min(440px, 100%);
  justify-self: center;
}

.faq-page__cta {
  margin-block: 116px 112px;
}

.article-template {
  padding: 86px 0 0;
}

.article-template__header {
  width: min(820px, calc(100% - 48px));
  margin: 0 auto 48px;
  text-align: center;
}

.article-template__tags,
.article-template__meta {
  display: flex;
  justify-content: center;
  color: #686868;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.article-template__tags {
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 24px;
}

.article-template h1 {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: clamp(44px, 5vw, 66px);
  font-weight: 500;
  line-height: 1.04;
}

.article-template__meta {
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  color: #777;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.2;
  text-transform: none;
}

.article-template__meta span + span::before {
  display: inline-block;
  width: 1px;
  height: 14px;
  margin-right: 12px;
  background: #c9c9c9;
  content: "";
  vertical-align: -2px;
}

.article-template__hero {
  margin-block: 0 70px;
}

.article-template__hero img {
  display: block;
  width: 100%;
  aspect-ratio: 1.98 / 1;
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
  background: #eee;
}

.article-template__body {
  width: min(720px, calc(100% - 48px));
  margin: 0 auto 110px;
}

.article-template__lede {
  margin: 0 0 34px;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
  color: #303030;
  font-size: 19px;
  line-height: 1.55;
}

.article-template__body h2 {
  margin: 38px 0 14px;
  color: var(--blue);
  font-size: clamp(30px, 3vw, 40px);
  font-weight: 500;
  line-height: 1.12;
}

.article-template__body h3 {
  margin: 30px 0 12px;
  font-size: 26px;
  line-height: 1.15;
}

.article-template__body p,
.article-template__body li {
  color: #242424;
  font-size: 18px;
  line-height: 1.7;
}

.article-template__body li {
  line-height: 1.5;
}

.article-template__body p {
  margin: 0 0 22px;
}

.article-template__body ul {
  margin: 0 0 24px;
  padding-left: 20px;
}

.article-template__body li + li {
  margin-top: 3px;
}

.article-template__takeaways {
  margin: 0 0 38px;
  padding: 28px 30px 30px;
  border: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.article-template__takeaways h2 {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 24px;
}

.article-template__takeaways ul {
  margin-bottom: 0;
}

.article-template__placeholder,
.article-template__inline-image {
  display: block;
  width: 100%;
  margin: 42px 0;
  border-radius: 8px;
  background: #d9d9d9;
}

.article-template__placeholder {
  min-height: 390px;
}

.article-template__inline-image {
  height: auto;
}

.article-template__body blockquote {
  max-width: 620px;
  margin: 42px auto;
  color: #111;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 500;
  line-height: 1.25;
  text-align: center;
}

.article-template__related {
  width: 100%;
  max-width: none;
  padding-inline: max(24px, calc((100% - 1220px) / 2));
  background: #fafafa;
}

.case-study-template {
  padding: 86px 0 0;
}

.case-study-template__header {
  width: min(780px, calc(100% - 48px));
  margin: 0 auto 56px;
  text-align: center;
}

.case-study-template__tags,
.case-study-template__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  color: #989898;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.case-study-template__tags span {
  padding: 5px 8px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
}

.case-study-template h1 {
  margin: 18px 0 20px;
  color: var(--blue);
  font-size: clamp(44px, 5vw, 66px);
  font-weight: 500;
  line-height: 1.04;
}

.case-study-template__excerpt {
  width: min(100%, 680px);
  margin: 0 auto;
  color: #303030;
  font-size: 18px;
  line-height: 1.55;
}

.case-study-template__meta {
  margin-top: 26px;
  text-transform: none;
}

.case-study-template__hero {
  min-height: 580px;
  margin-block: 0 62px;
  overflow: hidden;
  border-radius: 8px;
  background: #d9d9d9;
}

.case-study-template__hero img {
  display: block;
  width: 100%;
  min-height: 580px;
  object-fit: cover;
  object-position: center;
}

.case-study-template__body {
  width: min(760px, calc(100% - 48px));
  margin: 0 auto 92px;
}

.case-study-template__section {
  margin: 0 0 30px;
}

.case-study-template__section h2,
.case-study-template__rich-text h2 {
  margin: 0 0 12px;
  color: #202020;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.18;
}

.case-study-template__section p,
.case-study-template__section li,
.case-study-template__rich-text p,
.case-study-template__rich-text li {
  color: #303030;
  font-size: 15px;
  line-height: 1.58;
}

.case-study-template__section p,
.case-study-template__rich-text p {
  margin: 0 0 14px;
}

.case-study-template__section ul,
.case-study-template__rich-text ul {
  margin: 0;
  padding-left: 20px;
}

.case-study-template__section li + li,
.case-study-template__rich-text li + li {
  margin-top: 5px;
}

.case-study-template__quote,
.case-study-template__rich-text blockquote {
  width: min(620px, 100%);
  margin: 34px auto 38px;
  color: #111;
  font-size: clamp(24px, 2.7vw, 34px);
  font-weight: 500;
  line-height: 1.36;
  text-align: center;
}

.case-study-template__outcome {
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}

.case-study-template__outcome-headline {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  margin: 18px 0 18px;
  padding: 16px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: #111;
  font-weight: 800;
  text-align: center;
}

.case-study-template__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.case-study-template__stats article {
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 150px;
  padding: 20px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  text-align: center;
}

.case-study-template__stats strong {
  display: block;
  margin-bottom: 6px;
  color: #111;
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
}

.case-study-template__stats span {
  color: #303030;
  font-size: 13px;
  line-height: 1.25;
}

.case-study-template__why {
  margin-top: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
}

.case-study-template__why h2 {
  color: var(--blue);
  font-size: clamp(32px, 3vw, 42px);
  font-weight: 500;
}

.case-study-template__rich-text h3 {
  margin: 28px 0 10px;
  font-size: 24px;
  line-height: 1.18;
}

.case-study-template__inline-image {
  display: block;
  width: 100%;
  height: auto;
  margin: 38px 0;
  border-radius: 8px;
}

.case-study-testimonial {
  padding: 104px 0 112px;
  background: #fafafa;
}

.legal-page {
  width: min(920px, calc(100% - 48px));
  margin: 0 auto;
  padding: 58px 0 86px;
}

.legal-page__hero {
  max-width: 720px;
  margin: 0 auto 54px;
  text-align: center;
}

.legal-page__hero > p:first-child {
  margin: 0 0 12px;
  color: #6a6a6a;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.legal-page__hero h1 {
  margin: 0;
  color: var(--blue);
  font-size: clamp(36px, 4.2vw, 54px);
  font-weight: 500;
  line-height: 1.04;
}

.legal-page__hero span {
  display: block;
  margin-top: 16px;
  color: #303030;
  font-size: 14px;
  font-weight: 600;
}

.legal-page__description {
  margin: 22px auto 0;
  max-width: 640px;
  color: #303030;
  font-size: 15px;
  line-height: 1.5;
}

.legal-page__content {
  display: grid;
  counter-reset: legal-section;
  gap: 58px;
  max-width: 760px;
  margin: 0 auto;
}

.legal-page__section--numbered {
  counter-increment: legal-section;
}

.legal-page__intro {
  margin: 0 0 6px;
  color: #171717;
  font-size: 18px;
  line-height: 1.65;
}

.legal-page__intro p {
  margin: 0 0 22px;
}

.legal-page__section h2 {
  margin: 0 0 20px;
  color: var(--blue);
  font-size: clamp(30px, 3vw, 40px);
  font-weight: 500;
  line-height: 1.12;
}

.legal-page__section h2::before {
  content: counter(legal-section) ". ";
}

.legal-page__subsection {
  margin: 26px 0;
}

.legal-page__subsection h3 {
  margin: 0 0 12px;
  color: #111;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
}

.legal-page__section p,
.legal-page__section li {
  color: #171717;
  font-size: 18px;
  line-height: 1.65;
}

.legal-page__section p {
  margin: 0 0 22px;
}

.legal-page__section ul {
  display: grid;
  gap: 10px;
  margin: 16px 0 26px;
  padding-left: 30px;
}

.legal-testimonial-band {
  background: #fafafa;
}

.solution-intro {
  padding: 88px 0 82px;
  background: white;
  text-align: center;
}

.solution-intro h1 {
  max-width: 860px;
  margin: 0 auto;
  color: var(--blue);
  font-size: clamp(44px, 5.4vw, 60px);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: 0;
}

.solution-intro__lead {
  max-width: 720px;
  margin: 28px auto 34px;
  color: #303030;
  font-size: 19px;
  line-height: 1.45;
}

.solution-intro__media {
  margin: 0 auto 42px;
  overflow: hidden;
  border-radius: 20px;
  background: #dff5ff;
}

.solution-intro--building-health-score .solution-intro__media {
  background: white;
}

.solution-intro--cohabit-pay .solution-intro__media {
  background: white;
}

.solution-intro--expert-insights .solution-intro__media {
  background: white;
}

.solution-intro__media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.solution-intro__body {
  max-width: 820px;
  margin: 0 auto 20px;
  color: #303030;
  font-size: 19px;
  line-height: 1.48;
}

.process-band {
  overflow: hidden;
  background: var(--soft);
}

.process-section {
  padding: 110px 0 104px;
}

.process-section .home-section__intro {
  max-width: 610px;
  margin-top: 22px;
}

.process-section--building-intelligence h2,
.process-section--cohabit-pay h2 {
  font-size: clamp(34px, 3.7vw, 40px);
  line-height: 1.08;
  color: var(--blue);
  font-weight: 600;
}

.process-section--three .home-section__header {
  margin-bottom: 56px;
}

.process-section--building-intelligence .home-arrows {
  align-items: center;
  gap: 16px;
}

.process-section--building-intelligence .home-arrows > span.home-arrows__image {
  width: 40px;
  height: 40px;
  border: 1px solid #dfe2e6;
  border-radius: 50%;
  background: white;
}

.process-section--building-intelligence .home-arrows img {
  display: block;
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.process-card-row {
  grid-auto-columns: minmax(280px, calc((100% - 72px) / 4));
  gap: 24px;
  padding: 6px 0 12px;
}

.process-card-row--four {
  grid-auto-columns: minmax(320px, calc((100% - 84px) / 4));
  gap: 28px;
}

.process-card-row--building-intelligence {
  grid-auto-columns: minmax(320px, calc((100% - 68px) / 3));
  gap: 34px;
}

.process-card-row--three {
  grid-auto-columns: minmax(320px, calc((100% - 68px) / 3));
  gap: 34px;
  overflow-x: auto;
}

.process-card {
  min-height: 340px;
  padding: 22px 22px 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  scroll-snap-align: start;
}

.process-card-row--four .process-card {
  min-height: 400px;
  padding: 28px 28px 30px;
}

.process-card-row--building-intelligence .process-card {
  min-height: 356px;
  padding: 22px 28px 28px;
}

.process-card-row--three .process-card {
  min-height: 356px;
  padding: 22px 28px 28px;
}

.process-card small {
  display: block;
  margin-bottom: 18px;
  color: #414141;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.process-card img {
  display: block;
  width: 100%;
  height: 150px;
  margin-bottom: 28px;
  object-fit: contain;
}

.process-card-row--four .process-card img {
  height: 184px;
  margin-bottom: 32px;
}

.process-card-row--building-intelligence .process-card img {
  height: 178px;
  margin-bottom: 30px;
}

.process-card-row--three .process-card img {
  height: 178px;
  margin-bottom: 30px;
}

.process-card h3 {
  margin: 0 0 10px;
  font-size: 27px;
  font-weight: 500;
  line-height: 1.12;
}

.process-card p {
  margin: 0;
  color: #303030;
  font-size: 16px;
  line-height: 1.42;
}

.process-card--renewal h3 {
  font-size: 23px;
}

.process-card--renewal p {
  font-size: 15px;
}

.insurance-hero {
  padding: 78px 0 70px;
  text-align: center;
}

.insurance-hero h1 {
  max-width: 640px;
  margin: 0 auto;
  color: var(--blue);
  font-size: clamp(40px, 4.4vw, 60px);
  font-weight: 500;
  line-height: 1.02;
}

.insurance-hero__lead,
.insurance-hero__body {
  max-width: 640px;
  margin: 22px auto 0;
  color: #303030;
  font-size: 17px;
  line-height: 1.45;
}

.insurance-hero__media {
  max-width: 1060px;
  margin: 30px auto 28px;
  overflow: hidden;
  border-radius: 8px;
  background: white;
}

.insurance-hero__media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: top center;
}

.insurance-hero .button {
  margin-top: 24px;
}

.insurance-hero__logo-label {
  margin: 36px 0 16px;
  color: #737373;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.insurance-logo-row {
  display: flex;
  width: min(100%, 1302px);
  margin-top: 14px;
  overflow: hidden;
}

.insurance-logo-track {
  display: flex;
  width: max-content;
  animation: insurance-logo-rotate 28s linear infinite;
  will-change: transform;
}

.insurance-logo-row:hover .insurance-logo-track {
  animation-play-state: paused;
}

.insurance-logo-set {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
  padding-right: 10px;
}

.insurance-logo-card {
  display: grid;
  flex: 0 0 207px;
  width: 207px;
  min-height: 120px;
  place-items: center;
  padding: 20px 38px 21px 35px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  overflow: hidden;
}

.insurance-logo-card img {
  display: block;
  max-width: 100%;
  max-height: 79px;
  object-fit: contain;
}

.insurance-logo-card strong {
  color: #111;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

@keyframes insurance-logo-rotate {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .insurance-logo-track {
    animation: none;
  }

  .insurance-logo-set[aria-hidden="true"] {
    display: none;
  }

  .insurance-logo-row {
    justify-content: center;
    overflow-x: auto;
    scrollbar-width: thin;
  }
}

.insurance-text-section {
  padding: 96px 0;
  background: #f7f7f7;
}

.insurance-text-section + .insurance-text-section {
  background: white;
}

.insurance-text-section h2 {
  margin: 0;
  color: var(--blue);
  font-size: clamp(32px, 3vw, 44px);
  font-weight: 500;
  line-height: 1.1;
  text-align: center;
}

.insurance-text-section__intro {
  max-width: 760px;
  margin: 18px auto 42px;
  color: #303030;
  text-align: center;
  line-height: 1.5;
}

.insurance-text-section__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 58px;
  align-items: start;
}

.insurance-text-section:not(.insurance-text-section--with-aside) .insurance-text-section__layout {
  display: block;
}

.insurance-text-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px 44px;
}

.insurance-text-grid article h3 {
  margin: 0 0 8px;
  font-size: 28px;
  line-height: 1.15;
}

.insurance-text-grid article p {
  margin: 0;
  color: #303030;
  font-size: 16px;
  line-height: 1.45;
}

.insurance-text-section__aside {
  color: var(--blue);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.22;
}

.insurance-text-section__aside p {
  margin: 0 0 16px;
}

.insurance-text-section__aside-disclaimer {
  color: #9a9a9a;
  font-family: "SFMono-Regular", "Roboto Mono", Consolas, monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-transform: uppercase;
}

.insurance-text-section__aside ul {
  margin: 34px 0 0;
  padding-left: 28px;
}

.insurance-text-section__aside li {
  margin: 0 0 8px;
  color: var(--blue);
}

.insurance-text-section--capability {
  background: white;
}

.insurance-text-section--capability .insurance-text-section__inner {
  width: min(var(--container-max), calc(100% - 96px));
  padding-left: 0;
}

.insurance-text-section--capability h2 {
  margin-bottom: 34px;
  text-align: left;
}

.insurance-text-section--capability .insurance-text-section__layout {
  display: grid;
  grid-template-columns: minmax(0, 845px) minmax(300px, 420px);
  gap: 82px;
  align-items: start;
}

.insurance-text-section--capability .insurance-text-section__aside {
  display: block;
  padding-top: 48px;
  font-size: 28px;
  line-height: 1.16;
}

.insurance-text-section--capability .insurance-text-grid {
  grid-template-columns: 1fr;
  gap: 30px;
}

.insurance-text-section--capability .insurance-text-grid article h3 {
  margin-bottom: 6px;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.18;
}

.insurance-text-section--capability .insurance-text-grid article p {
  max-width: 820px;
  color: #050505;
  font-size: 20px;
  line-height: 1.45;
}

.insurance-text-section--capability .insurance-quote-card {
  max-width: 866px;
  margin-top: 58px;
  grid-template-columns: 124px minmax(0, 1fr);
  gap: 24px;
  padding: 32px;
  border-radius: 16px;
  background: #b8c5ff;
}

.insurance-text-section--capability .insurance-quote-card img {
  width: 124px;
  height: 124px;
}

.insurance-text-section--capability .insurance-quote-card p {
  font-size: 18px;
  line-height: 1.45;
}

.insurance-text-section--capability .insurance-quote-card strong,
.insurance-text-section--capability .insurance-quote-card span {
  font-size: 16px;
}

.insurance-quote-card {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 20px;
  max-width: 630px;
  margin-top: 38px;
  padding: 22px 26px;
  border-radius: 8px;
  background: #b7c4fb;
}

.insurance-quote-card img {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  object-fit: cover;
}

.insurance-quote-card p {
  grid-column: 2;
  margin: 0;
  color: #050505;
  font-size: 14px;
  line-height: 1.5;
  white-space: pre-line;
}

.insurance-quote-card strong,
.insurance-quote-card span {
  grid-column: 2;
  color: #050505;
  font-size: 14px;
}

.insurance-appointments__heading {
  margin: 78px 0 24px;
  color: #000;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.15;
}

.insurance-appointments {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  width: 100%;
}

.insurance-appointments article {
  display: flex;
  min-height: 248px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 20px 23px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfbfb;
}

.insurance-appointments img {
  display: block;
  width: 40px;
  height: 40px;
  margin-bottom: auto;
  object-fit: contain;
}

.insurance-appointments span {
  margin-bottom: auto;
  color: var(--blue);
  font-size: 24px;
}

.insurance-appointments h4 {
  max-width: 360px;
  margin: 74px 0 8px;
  color: #000;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.08;
}

.insurance-appointments p {
  margin: 0;
  color: #000;
  font-size: 16px;
  line-height: 1.25;
}

.insurance-contact {
  padding: 122px 0 154px;
  background: var(--brand-navy);
  color: white;
}

.insurance-contact__inner {
  display: grid;
  grid-template-columns: minmax(0, 920px) minmax(280px, 330px);
  column-gap: 88px;
  row-gap: 0;
  align-items: start;
}

.insurance-contact__form {
  display: contents;
}

.insurance-contact__form > h2 {
  grid-column: 1;
  margin: 0;
  color: white;
  font-size: clamp(38px, 3.4vw, 52px);
  font-weight: 500;
  line-height: 1.12;
}

.insurance-contact__form > p {
  grid-column: 1;
  max-width: 780px;
  margin: 36px 0 0;
  color: #dce7ff;
  font-size: 21px;
  line-height: 1.5;
}

.insurance-form {
  grid-column: 1;
  display: grid;
  gap: 30px;
  margin-top: 62px;
}

.insurance-form__row {
  --form-row-gap: 30px;
}

.insurance-form label {
  display: inline-block;
  margin-bottom: 10px;
  color: white;
  font-size: 17px;
  font-weight: 800;
}

.insurance-form input,
.insurance-form textarea {
  min-height: 58px;
  border: 0;
  border-radius: 7px;
  background: white;
  color: #080808;
  padding: 14px 16px;
}

.insurance-form textarea {
  min-height: 176px;
  resize: vertical;
}

.insurance-form__submit {
  width: 100%;
  min-height: 56px;
  border-color: var(--blue);
  background: var(--blue) !important;
  color: white !important;
  font-size: 16px;
  letter-spacing: 0.08em;
  font-family: var(--font-mono) !important;
}

.insurance-contact__details {
  grid-column: 2;
  grid-row: 3;
  color: #dce7ff;
  font-size: 19px;
  line-height: 1.45;
}

.insurance-contact__form:not(:has(> p)) + .insurance-contact__details {
  grid-row: 2;
}

.insurance-contact__details p {
  margin: 0 0 24px;
  color: white;
}

.insurance-contact__details strong,
.insurance-contact__details b {
  display: block;
  margin-bottom: 4px;
  color: white;
  font-weight: 800;
}

.insurance-contact__details span {
  display: block;
}

.insurance-contact__member {
  margin-top: 34px;
}

.insurance-contact__member span {
  display: block;
  margin-bottom: 14px;
  color: white;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.insurance-contact__badges {
  display: flex;
  gap: 12px;
  align-items: center;
}

.insurance-contact__badges img {
  width: 106px;
  height: auto;
  border-radius: 4px;
  object-fit: contain;
}

.why-matters-section {
  padding: 86px 0;
  background: white;
}

.why-matters-section h2 {
  margin: 0 0 34px;
  color: var(--blue);
  font-size: clamp(32px, 3vw, 44px);
  font-weight: 500;
}

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

.why-matters-grid h3 {
  margin: 0 0 8px;
  font-size: 27px;
  font-weight: 500;
}

.why-matters-grid p {
  margin: 0;
  color: #303030;
  font-size: 16px;
  line-height: 1.45;
}

.usecase-hero {
  padding: 78px 0 94px;
  background: white;
}

.usecase-hero__inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 96px;
}

.usecase-hero__copy h1 {
  max-width: 520px;
  margin: 0;
  color: var(--blue);
  font-size: clamp(44px, 5vw, 64px);
  font-weight: 500;
  line-height: 1.03;
  letter-spacing: 0;
}

.usecase-hero__copy p {
  max-width: 520px;
  margin: 24px 0 26px;
  color: #303030;
  font-size: 19px;
  line-height: 1.45;
}

.usecase-hero__media,
.usecase-feature__media {
  width: 100%;
  aspect-ratio: 1.16 / 1;
}

.usecase-hero__media img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.usecase-features {
  padding: 36px 0 70px;
  background: white;
}

.usecase-feature {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 48px;
  padding: 58px 0;
}

.usecase-features--living-score {
  padding: 0 0 12px;
}

.usecase-features--living-score .usecase-feature {
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  gap: 48px;
  padding: 150px 0 75px;
}

.usecase-features--living-score .usecase-feature__media {
  aspect-ratio: 3376 / 1520;
}

.usecase-features--living-score .usecase-feature__copy p + p {
  margin-top: 14px;
}

.usecase-feature--image-left .usecase-feature__media {
  order: -1;
}

.usecase-feature__media {
  display: flex;
  justify-content: center;
}

.usecase-feature__media img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: contain;
}

.usecase-feature__copy h2 {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: clamp(32px, 3vw, 44px);
  font-weight: 500;
  line-height: 1.08;
}

.usecase-feature__copy p,
.usecase-feature__copy li {
  color: #303030;
  font-size: 17px;
  line-height: 1.45;
}

.usecase-feature__copy p {
  max-width: 520px;
  margin: 0;
}

.usecase-feature__copy ul {
  margin: 0;
  padding-left: 20px;
}

.company-about {
  padding: 54px 0 92px;
  background: white;
}

.company-about__hero {
  display: grid;
  justify-items: center;
  text-align: center;
}

.company-about__hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--blue);
  font-size: clamp(40px, 4.7vw, 60px);
  font-weight: 500;
  line-height: 1.03;
}

.company-about__hero p {
  max-width: 680px;
  margin: 18px 0 38px;
  color: #303030;
  font-size: 16px;
  line-height: 1.45;
}

.company-about__hero-image {
  display: block;
  width: 100%;
  aspect-ratio: 1.9 / 1;
  border-radius: var(--radius-surface);
  object-fit: cover;
}

.company-about__team-photo {
  display: block;
  width: 100%;
  aspect-ratio: 1.98 / 1;
  border-radius: var(--radius-surface);
  object-fit: cover;
}

.company-about__mission {
  display: grid;
  grid-template-columns: 0.62fr 1fr;
  gap: 56px;
  align-items: center;
  margin-top: 76px;
  padding: 74px 112px;
  border-radius: 8px;
  background: var(--brand-navy);
  color: white;
}

.company-about__mission h2,
.company-about__mission p,
.company-about__values h2,
.company-about__team-video h2,
.company-about__people h2,
.company-about__cta h2,
.company-about__value-card h3,
.company-about__person h3,
.company-about__person p {
  margin: 0;
}

.company-about__mission h2 {
  font-size: 28px;
  font-weight: 500;
}

.company-about__mission p {
  max-width: 620px;
  font-size: 20px;
  line-height: 1.38;
}

.company-about__values,
.company-about__team-video,
.company-about__people {
  margin-top: 78px;
}

.company-about__values h2,
.company-about__team-video h2,
.company-about__people h2 {
  margin-bottom: 28px;
  color: var(--blue);
  font-size: 30px;
  font-weight: 500;
}

.company-about__value-grid,
.company-about__people-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.company-about__value-card {
  min-height: 176px;
  padding: 38px 30px;
  border-radius: 5px;
  background: #fafafa;
  text-align: center;
}

.company-about__value-card h3 {
  font-size: 19px;
  font-weight: 700;
}

.company-about__value-card p {
  margin: 24px 0 0;
  color: #414141;
  font-size: 14px;
  line-height: 1.45;
}

.company-about__video-frame {
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 1.98 / 1;
  overflow: hidden;
  border-radius: 8px;
  background: #d9d9d9;
}

.company-about__video-frame iframe,
.company-about__video-frame video {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

.company-about__team-intro {
  max-width: 660px;
  margin: 28px auto 0;
  color: #303030;
  font-size: 15px;
  line-height: 1.45;
  text-align: center;
}

.company-about__people-intro {
  max-width: 520px;
  margin: -12px 0 32px;
  color: #303030;
  font-size: 15px;
  line-height: 1.45;
}

.company-about__person {
  display: grid;
  align-content: start;
  gap: 7px;
}

.company-about__person-image {
  width: 100%;
  aspect-ratio: 1.34 / 1;
  margin-bottom: 9px;
  overflow: hidden;
  border-radius: 8px;
  background: #d9d9d9;
}

.company-about__person-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.company-about__person h3 {
  font-size: 17px;
  font-weight: 800;
}

.company-about__person p {
  color: #303030;
  font-size: 13px;
  line-height: 1.3;
}

.company-about__social {
  width: max-content;
  color: #111;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
}

.company-about__cta {
  display: grid;
  justify-items: center;
  gap: 22px;
  margin-top: 92px;
  padding: 74px 24px;
  background: #fbfbfb;
  text-align: center;
}

.company-about__cta h2 {
  max-width: 560px;
  color: var(--blue);
  font-size: 30px;
  font-weight: 500;
  line-height: 1.16;
}

.partners-page {
  padding: 112px 0 108px;
  background: #fff;
  overflow-x: hidden;
}

.partners-page__inner {
  width: min(1112px, calc(100% - 48px));
  margin: 0 auto;
}

.partners-page__hero {
  display: grid;
  justify-items: center;
  text-align: center;
}

.partners-page__hero h1,
.partners-page__benefits h2,
.partners-page__partners h2,
.partners-page__cta h2,
.partners-page__benefit-card h3,
.partners-page__partner h3,
.partners-page__partner p,
.partners-page__benefit-card p {
  margin: 0;
}

.partners-page__hero h1 {
  width: min(100%, 760px);
  max-width: 760px;
  color: var(--blue);
  font-size: clamp(44px, 5.1vw, 59px);
  font-weight: 500;
  line-height: 1.1;
}

.partners-page__hero p {
  width: min(100%, 720px);
  max-width: 720px;
  margin: 30px 0 0;
  color: #303030;
  font-size: 18px;
  line-height: 1.5;
}

.partners-page__benefits {
  margin-top: 112px;
}

.partners-page__benefits h2 {
  width: 100%;
  color: var(--blue);
  font-size: 36px;
  font-weight: 500;
  line-height: 1.15;
  text-align: center;
}

.partners-page__benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 34px;
}

.partners-page__benefit-card {
  display: grid;
  align-content: start;
  min-width: 0;
  min-height: 242px;
  padding: 22px 16px 18px;
  border: 1px solid #e4e4e4;
  border-radius: 12px;
  background: #fff;
}

.partners-page__benefit-icon {
  width: 34px;
  height: 34px;
  margin-bottom: 62px;
  background: var(--blue);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.partners-page__benefit-icon--network {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='5' r='2'/%3E%3Ccircle cx='5' cy='12' r='2'/%3E%3Ccircle cx='19' cy='12' r='2'/%3E%3Ccircle cx='12' cy='19' r='2'/%3E%3Cpath d='M10.5 6.5 6.5 10.5M13.5 6.5l4 4M6.5 13.5l4 4M17.5 13.5l-4 4M7 12h10M12 7v10'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='5' r='2'/%3E%3Ccircle cx='5' cy='12' r='2'/%3E%3Ccircle cx='19' cy='12' r='2'/%3E%3Ccircle cx='12' cy='19' r='2'/%3E%3Cpath d='M10.5 6.5 6.5 10.5M13.5 6.5l4 4M6.5 13.5l4 4M17.5 13.5l-4 4M7 12h10M12 7v10'/%3E%3C/svg%3E") center / contain no-repeat;
}

.partners-page__benefit-icon--boost {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M13 2 4 14h7l-1 8 10-13h-7l1-7Z'/%3E%3Cpath d='M2 9h5M2 14h3M3 5h4'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M13 2 4 14h7l-1 8 10-13h-7l1-7Z'/%3E%3Cpath d='M2 9h5M2 14h3M3 5h4'/%3E%3C/svg%3E") center / contain no-repeat;
}

.partners-page__benefit-icon--speed {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 12a9 9 0 1 1-18 0 9 9 0 0 1 18 0Z'/%3E%3Cpath d='M12 12 16 5'/%3E%3Cpath d='M7 13h10'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 12a9 9 0 1 1-18 0 9 9 0 0 1 18 0Z'/%3E%3Cpath d='M12 12 16 5'/%3E%3Cpath d='M7 13h10'/%3E%3C/svg%3E") center / contain no-repeat;
}

.partners-page__benefit-icon--featured {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 4h14v14H7z'/%3E%3Cpath d='M3 8v13h14'/%3E%3Cpath d='m14 7 1.2 2.4 2.6.4-1.9 1.8.5 2.6-2.4-1.2-2.4 1.2.5-2.6-1.9-1.8 2.6-.4L14 7Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 4h14v14H7z'/%3E%3Cpath d='M3 8v13h14'/%3E%3Cpath d='m14 7 1.2 2.4 2.6.4-1.9 1.8.5 2.6-2.4-1.2-2.4 1.2.5-2.6-1.9-1.8 2.6-.4L14 7Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.partners-page__benefit-card h3 {
  max-width: 210px;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.05;
}

.partners-page__benefit-card p {
  margin-top: 14px;
  color: #333;
  font-size: 15px;
  line-height: 1.42;
  overflow-wrap: break-word;
}

.partners-page__partners {
  margin-top: 120px;
}

.partners-page__partners h2 {
  width: 100%;
  color: var(--blue);
  font-size: 36px;
  font-weight: 500;
  line-height: 1.15;
}

.partners-page__partner-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px 20px;
  margin-top: 36px;
}

.partners-page__partner {
  display: grid;
  align-content: start;
  min-width: 0;
}

.partners-page__logo-card {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 220px;
  padding: 44px 54px;
  border: 1px solid #e4e4e4;
  border-radius: 12px;
  background: #fff;
}

.partners-page__logo-card img {
  display: block;
  max-width: min(310px, 100%);
  max-height: 114px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.partners-page__partner h3 {
  margin-top: 22px;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.15;
}

.partners-page__partner p {
  margin-top: 12px;
  color: #303030;
  font-size: 15px;
  line-height: 1.45;
  overflow-wrap: break-word;
}

.partners-page__cta {
  display: grid;
  justify-items: center;
  gap: 24px;
  margin-top: 94px;
  padding: 86px 24px;
  border-radius: 12px;
  background: #fafafa;
  text-align: center;
}

.partners-page__cta h2 {
  width: min(100%, 720px);
  color: var(--blue);
  font-size: 36px;
  font-weight: 500;
  line-height: 1.15;
}

@media(max-width: 1440px){
  .home-hero--instant .home-hero__media img{
    right: max(150px, calc((1220px - 100vw) / 2 + 94px));
  }
}

@media (max-width: 1024px) {
  .knowledge-hero {
    padding: 76px 0 64px;
  }

  .knowledge-hero__inner,
  .knowledge-featured__inner,
  .knowledge-section,
  .faq-page-hero,
  .faq-page,
  .faq-help-band__inner,
  .article-template__header,
  .article-template__hero,
  .article-template__body,
  .case-study-template__header,
  .case-study-template__hero,
  .case-study-template__body,
  .case-study-testimonial__inner {
    width: min(calc(100% - 40px), var(--container-max));
  }

  .knowledge-featured {
    padding: 64px 0 76px;
  }

  .knowledge-featured__inner,
  .knowledge-case-study,
  .knowledge-resource {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .knowledge-featured__image,
  .knowledge-resource__image {
    order: -1;
  }

  .knowledge-featured h2,
  .knowledge-featured p {
    max-width: 680px;
  }

  .knowledge-section {
    padding: 72px 0;
  }

  .knowledge-section__header {
    align-items: flex-start;
    flex-direction: column;
  }

  .knowledge-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .knowledge-card__image {
    aspect-ratio: 16 / 10;
  }

  .knowledge-section--resources {
    gap: 56px;
  }

  .market-trends-hero {
    padding: 84px 0 74px;
  }

  .market-trends-featured .knowledge-featured__inner,
  .market-trends-resources .knowledge-resource,
  .case-studies-featured .knowledge-featured__inner,
  .case-studies-resources .knowledge-resource {
    grid-template-columns: 1fr;
  }

  .market-trends-resources .knowledge-resource__image,
  .case-studies-resources .knowledge-resource__image {
    justify-self: start;
    max-width: 100%;
  }

  .article-template {
    padding-top: 62px;
  }

  .article-template__header {
    margin-bottom: 36px;
  }

  .article-template__hero {
    margin-bottom: 46px;
  }

  .article-template__hero img {
    aspect-ratio: 1.35 / 1;
  }

  .article-template__body {
    margin-bottom: 72px;
  }

  .article-template__placeholder {
    min-height: 230px;
  }

  .article-template__related {
    padding-inline: 24px;
  }

  .case-study-template {
    padding-top: 62px;
  }

  .case-study-template__header {
    margin-bottom: 38px;
  }

  .case-study-template__hero {
    min-height: 360px;
    margin-bottom: 48px;
  }

  .case-study-template__hero img {
    min-height: 360px;
  }

  .case-study-template__body {
    margin-bottom: 72px;
  }

  .case-study-testimonial {
    padding: 74px 0 82px;
  }

  .home-hero-slider {
    width: 100%;
    min-height: 920px;
    margin-bottom: 0;
  }

  .home-hero {
    grid-template-columns: 1fr;
    align-content: start;
    gap: 24px;
    min-height: 920px;
    padding-top: 36px;
  }

  .home-hero--insurance,
  .home-hero--instant {
    grid-template-columns: 1fr;
    padding-inline: 0;
  }

  .home-hero--insurance {
    padding-top: 56px;
  }

  .home-hero--insurance .home-hero__content {
    padding-inline: 28px;
  }

  .home-hero--instant {
    padding-inline: 28px;
  }

  .home-hero__media {
    min-height: 520px;
  }

  .home-hero--primary .home-hero__media img {
    top: 50%;
    right: 50%;
    width: min(500px, 78vw);
    transform: translate(50%, -50%);
  }

  .home-hero--insurance .home-hero__media {
    min-height: 430px;
  }

  .home-hero--insurance .home-hero__media img {
    object-position: 68% center;
  }

  .home-hero--instant .home-hero__media {
    min-height: 430px;
  }

  .home-hero--instant .home-hero__media img {
    top: auto;
    right: calc(50% + 40px);
    bottom: -70px;
    width: min(560px, 88vw);
    transform: translateX(50%);
  }

  .home-stats,
  .home-testimonial {
    grid-template-columns: 360px minmax(0, 1fr);
  }

  .home-stats {
    width: min(calc(100% - 40px), var(--container-max));
    margin: 32px auto 64px;
  }

  .home-section,
  .home-stats,
  .home-cta,
  .solution-intro__inner,
  .process-section,
  .insurance-hero__inner,
  .insurance-text-section__inner,
  .insurance-contact__inner,
  .why-matters-section__inner,
  .usecase-hero__inner,
  .usecase-features__inner,
  .company-about__inner {
    width: min(calc(100% - 40px), var(--container-max));
  }

  .home-solution-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-section__header,
  .marketing-section__header {
    align-items: start;
    flex-direction: column;
  }

  .home-market-grid {
    grid-auto-flow: column;
    grid-template-columns: none;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
  }

  .home-market-grid {
    grid-auto-columns: minmax(238px, 78vw);
    gap: 16px;
    padding-bottom: 12px;
  }

  .home-market-grid .home-card {
    scroll-snap-align: start;
  }

  img.market-trends-card__image {
    aspect-ratio: 1.16 / 1;
    min-height: 260px;
  }

  .home-use-case-row {
    grid-auto-columns: minmax(310px, 72vw);
  }

  .process-card-row {
    grid-auto-columns: minmax(260px, 72vw);
  }

  .process-card-row--four {
    grid-auto-columns: minmax(300px, 74vw);
  }

  .process-card-row--building-intelligence {
    grid-auto-columns: minmax(280px, 72vw);
  }

  .marketing-section--health-score-measures .card-grid {
    grid-auto-columns: minmax(260px, 72vw);
  }

  .marketing-section--building-health-score-measures .card-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(260px, 302px);
    gap: 24px;
    column-gap: 5px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
  }

  .marketing-section--building-health-score-measures .card {
    width: min(250px, 72vw);
    height: 380px;
    min-height: 380px;
  }

  .process-card-row--three {
    grid-auto-columns: minmax(280px, 72vw);
    overflow-x: auto;
  }

  .insurance-logo-row {
    width: 100%;
  }

  .insurance-text-section__layout,
  .insurance-contact__inner {
    grid-template-columns: 1fr;
  }

  .insurance-text-section--capability .insurance-text-section__inner {
    width: min(calc(100% - 40px), var(--container-max));
    padding-left: 0;
  }

  .insurance-text-section--capability .insurance-text-section__layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .insurance-text-section--capability .insurance-text-section__aside {
    padding-top: 0;
    font-size: 28px;
  }

  .insurance-text-section--capability .insurance-quote-card {
    max-width: 100%;
  }

  .insurance-appointments__heading {
    margin-top: 58px;
    font-size: 26px;
  }

  .insurance-appointments article {
    min-height: 230px;
  }

  .insurance-appointments h4 {
    font-size: 30px;
  }

  .insurance-appointments p {
    font-size: 18px;
  }

  .insurance-text-grid,
  .insurance-appointments {
    grid-template-columns: 1fr 1fr;
  }

  .insurance-contact__form {
    display: block;
  }

  .insurance-contact__details {
    grid-column: auto;
    grid-row: auto;
    padding-top: 0;
  }

  .insurance-form {
    margin-top: 42px;
  }

  .why-matters-grid {
    gap: 32px 48px;
  }

  .usecase-hero__inner,
  .usecase-feature {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .usecase-features--living-score .usecase-feature {
    grid-template-columns: 1fr;
    padding: 30px 0 18px;
  }

  .usecase-features--living-score .usecase-feature__media {
    aspect-ratio: 3376 / 1520;
  }

  .usecase-feature--image-left .usecase-feature__media {
    order: 0;
  }

  .company-about {
    padding-top: 42px;
  }

  .company-about__inner {
    width: min(calc(100% - 32px), 1180px);
  }

  .company-about__hero h1 {
    font-size: 40px;
  }

  .company-about__mission {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 48px;
    padding: 44px 32px;
  }

  .company-about__mission p {
    font-size: 18px;
  }

  .company-about__value-grid,
  .company-about__people-grid,
  .partners-page__benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .partners-page {
    padding-top: 72px;
  }

  .partners-page__inner {
    width: calc(100% - 32px);
    max-width: 1120px;
  }

  .partners-page__benefits,
  .partners-page__partners {
    margin-top: 78px;
  }

  .partners-page__benefit-card {
    min-height: 244px;
  }

  .partners-page__benefit-icon {
    margin-bottom: 42px;
  }

  .partners-page__logo-card {
    min-height: 220px;
    padding: 36px;
  }
}

@media (max-width: 640px) {
  .marketing-header,
  .home-section,
  .home-stats,
  .home-cta {
    width: min(calc(100% - 32px), 1180px);
  }

  .card-grid,
  .home-solution-grid,
  .knowledge-card-grid {
    grid-template-columns: 1fr;
  }

  .market-trends-hero,
  .case-studies-hero {
    padding: 64px 0 58px;
  }

  .market-trends-featured,
  .market-trends-latest,
  .market-trends-resources,
  .case-studies-featured,
  .case-studies-latest,
  .case-studies-resources {
    padding-block: 58px;
  }

  .market-trends-featured .knowledge-featured__image,
  .market-trends-latest .knowledge-card__image,
  .case-studies-featured .knowledge-featured__image,
  .case-studies-latest .knowledge-card__image {
    aspect-ratio: 1.35 / 1;
  }

  .home-hero-slider {
    min-height: 860px;
  }

  .home-hero {
    min-height: 860px;
  }

  .home-hero h1 {
    font-size: 44px;
  }

  .home-hero--instant h1 {
    font-size: 40px;
  }

  .home-hero__copy {
    font-size: 18px;
  }

  .home-use-case-row {
    grid-auto-columns: minmax(284px, 86vw);
    gap: 16px;
  }

  .company-contact-page {
    width: min(calc(100% - 32px), 730px);
    padding: 64px 0 56px;
  }

  .company-contact-hero {
    margin-bottom: 48px;
  }

  .company-contact-hero h1 {
    font-size: 44px;
  }

  .home-stats, .home-testimonial {
    grid-template-columns: 1fr;
  }

  .company-contact-hero p {
    margin-top: 22px;
    font-size: 18px;
  }

  .company-contact-form__row {
    grid-template-columns: 1fr;
  }

  .company-contact-location {
    margin-top: 56px;
  }

  .marketing-cta--instant-intelligence {
    width: min(calc(100% - 32px), 1180px);
    margin-block: 56px;
  }

  .instant-intelligence-banner {
    grid-template-columns: 1fr;
    gap: 26px;
    min-height: 0;
    padding: 32px 24px 34px;
  }

  .instant-intelligence-banner__brand {
    width: 118px;
  }

  .instant-intelligence-banner h2 {
    font-size: 35px;
  }

  .instant-intelligence-banner__copy p {
    font-size: 15px;
  }

  .instant-intelligence-banner__device {
    grid-row: auto;
    justify-self: center;
    margin: -10px 0 -22px;
  }

  .instant-intelligence-banner__device img {
    width: min(260px, 82vw);
  }

  .instant-intelligence-banner__action {
    width: 100%;
  }

  .instant-intelligence-banner__action h3 {
    font-size: 34px;
  }

  .instant-intelligence-banner__action .button {
    width: 100%;
    min-width: 0;
  }

  .solution-intro {
    padding-top: 52px;
  }

  .solution-intro__inner,
  .process-section {
    width: min(calc(100% - 32px), 1180px);
  }

  .solution-intro h1 {
    font-size: 40px;
  }

  .solution-intro__lead,
  .solution-intro__body {
    font-size: 17px;
  }

  .process-section {
    padding-block: 64px;
  }

  .process-card-row--three {
    grid-auto-columns: minmax(280px, 82vw);
    gap: 18px;
    overflow-x: auto;
  }

  .process-card-row--four {
    grid-auto-columns: minmax(286px, 84vw);
    gap: 18px;
  }

  .process-card-row--building-intelligence {
    grid-auto-columns: minmax(280px, 82vw);
    gap: 18px;
  }

  .process-card-row--four .process-card {
    min-height: auto;
    padding: 24px;
  }

  .process-card-row--building-intelligence .process-card {
    min-height: auto;
  }

  .process-card-row--four .process-card img {
    height: 164px;
    margin-bottom: 26px;
  }

  .process-card-row--three .process-card {
    min-height: auto;
  }

  .insurance-hero,
  .insurance-text-section,
  .insurance-contact {
    padding-block: 56px;
  }

  .insurance-hero__inner,
  .insurance-text-section__inner,
  .insurance-contact__inner {
    width: min(calc(100% - 32px), 1180px);
  }

  .usecase-hero__inner,
  .usecase-features__inner {
    width: min(calc(100% - 32px), 1180px);
  }

  .insurance-hero h1 {
    font-size: 38px;
  }

  .insurance-logo-row,
  .insurance-text-grid,
  .insurance-appointments,
  .insurance-form__row {
    grid-template-columns: 1fr;
  }

  .marketing-section--health-score-measures .card-grid {
    grid-auto-columns: minmax(260px, 72vw);
  }

  .marketing-section--building-health-score-measures .card-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(260px, 302px);
    gap: 24px;
    column-gap: 5px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
  }

  .marketing-section--building-health-score-measures .card {
    width: min(250px, 72vw);
    height: 380px;
    min-height: 380px;
  }

  .insurance-logo-row {
    overflow: hidden;
  }

  .insurance-logo-card {
    width: 207px;
    min-height: 120px;
  }

  .insurance-text-section--capability .insurance-text-section__inner {
    width: min(calc(100% - 32px), 1180px);
    padding-left: 0;
  }

  .insurance-text-section--capability .insurance-text-grid {
    gap: 24px;
  }

  .insurance-text-section--capability .insurance-text-grid article p {
    font-size: 19px;
  }

  .insurance-text-section--capability .insurance-text-section__aside {
    font-size: 25px;
  }

  .insurance-text-section--capability .insurance-quote-card {
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 18px;
    padding: 22px;
  }

  .insurance-text-section--capability .insurance-quote-card img {
    width: 86px;
    height: 86px;
  }

  .insurance-text-section--capability .insurance-quote-card p {
    font-size: 15px;
  }

  .insurance-appointments__heading {
    margin-top: 42px;
    font-size: 24px;
  }

  .insurance-appointments {
    gap: 18px;
  }

  .insurance-appointments article {
    min-height: 220px;
  }

  .insurance-appointments img {
    width: 42px;
    height: 42px;
  }

  .insurance-appointments h4 {
    max-width: 100%;
    margin-top: 56px;
    font-size: 29px;
  }

  .insurance-appointments p {
    font-size: 18px;
  }

  .insurance-text-section h2 {
    text-align: left;
  }

  .insurance-text-section__intro {
    margin-left: 0;
    text-align: left;
  }

  .usecase-hero {
    padding: 48px 0 58px;
  }

  .usecase-hero__copy h1 {
    font-size: 40px;
  }

  .usecase-hero__copy p {
    font-size: 17px;
  }

  .usecase-features {
    padding: 18px 0 44px;
  }

  .usecase-feature {
    padding: 36px 0;
  }

  .usecase-feature__copy h2 {
    font-size: 32px;
  }

  .home-hero__media {
    min-height: 380px;
  }

  .home-hero--primary .home-hero__media img {
    top: 0;
    width: min(390px, 90vw);
    transform: translateX(50%);
  }

  .home-hero--insurance .home-hero__media,
  .home-hero--instant .home-hero__media {
    min-height: 340px;
  }

  .home-hero--instant .home-hero__media img {
    width: min(420px, 92vw);
    bottom: -52px;
  }

  .home-stats {
    grid-template-columns: 1fr;
    width: min(calc(100% - 32px), 1180px);
    margin: 24px auto 40px;
  }

  .home-testimonial p {
    font-size: 22px;
  }

  .case-study-template {
    padding-top: 48px;
  }

  .case-study-template__header,
  .case-study-template__hero,
  .case-study-template__body,
  .case-study-testimonial__inner {
    width: min(calc(100% - 32px), 1180px);
  }

  .case-study-template h1 {
    font-size: 40px;
  }

  .case-study-template__excerpt {
    font-size: 16px;
  }

  .case-study-template__hero,
  .case-study-template__hero img {
    min-height: 260px;
  }

  .case-study-template__stats {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .case-study-template__stats article {
    min-height: 116px;
  }

  .case-study-template__quote,
  .case-study-template__rich-text blockquote {
    text-align: left;
  }

  .case-study-testimonial {
    padding: 62px 0 70px;
  }

  .company-about__hero-image,
  .company-about__team-photo,
  .company-about__video-frame {
    aspect-ratio: 1.35 / 1;
  }

  .company-about__mission {
    padding: 36px 24px;
  }

  .company-about__values,
  .company-about__team-video,
  .company-about__people {
    margin-top: 56px;
  }

  .company-about__value-grid,
  .company-about__people-grid,
  .partners-page__benefit-grid,
  .partners-page__partner-grid {
    grid-template-columns: 1fr;
  }

  .company-about__value-card {
    min-height: 0;
  }

  .company-about__cta {
    margin-top: 64px;
    padding: 56px 20px;
  }

  .partners-page {
    padding: 56px 0 72px;
  }

  .partners-page__hero {
    justify-items: start;
  }

  .partners-page__hero h1 {
    width: 100%;
    max-width: 300px;
    font-size: 32px;
  }

  .partners-page__hero p {
    width: 100%;
    max-width: 310px;
    font-size: 17px;
  }

  .partners-page__benefits,
  .partners-page__partners {
    margin-top: 64px;
  }

  .partners-page__benefits h2,
  .partners-page__partners h2,
  .partners-page__cta h2 {
    max-width: 310px;
    font-size: 28px;
  }

  .partners-page__benefit-card {
    width: 100%;
    max-width: calc(100vw - 32px);
    min-height: 0;
    padding: 24px;
  }

  .partners-page__benefit-icon {
    margin-bottom: 34px;
  }

  .partners-page__benefit-card h3,
  .partners-page__partner h3 {
    font-size: 24px;
  }

  .partners-page__benefit-card p,
  .partners-page__partner p {
    max-width: 300px;
  }

  .partners-page__logo-card {
    max-width: calc(100vw - 32px);
    min-height: 190px;
    padding: 34px 28px;
  }

  .partners-page__logo-card img {
    max-height: 100px;
  }

  .partners-page__cta {
    margin-top: 64px;
    padding: 56px 20px;
  }
}

@media (max-width: 1024px) {
  .faq-page-hero {
    padding: 76px 0 58px;
  }

  .faq-page {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 72px;
  }

  .faq-page__categories {
    padding: 0 0 18px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .faq-page__categories nav {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .faq-page__categories a {
    flex: 0 0 auto;
  }

  .faq-page__categories a.is-active::after {
    top: auto;
    right: 0;
    bottom: -8px;
    left: 0;
    width: auto;
    height: 3px;
  }

  .faq-page__item summary {
    align-items: flex-start;
    font-size: 18px;
  }

  .faq-page__answer {
    padding-right: 0;
  }

  .faq-page__contact {
    align-items: flex-start;
    flex-direction: column;
  }

  .faq-help-band__inner {
    grid-template-columns: 1fr;
    gap: 32px;
    min-height: 0;
    padding: 72px 0;
  }

  .faq-help-band__image {
    order: -1;
    width: min(320px, 100%);
  }

  .faq-page__cta {
    margin-block: 72px;
  }
}

@media (max-width: 768px) {
  .legal-page {
    width: min(calc(100% - 40px), 920px);
    padding: 48px 0 64px;
  }

  .legal-page__hero {
    margin-bottom: 46px;
  }

  .legal-page__content {
    gap: 42px;
  }

  .legal-page__section h2 {
    font-size: 30px;
  }

  .legal-page__section p,
  .legal-page__intro,
  .legal-page__section li {
    font-size: 16px;
  }

  .legal-page__subsection h3 {
    font-size: 18px;
  }

}

@media (min-width: 641px) and (max-width: 1024px) {
  .home-hero-slider {
    min-height: clamp(780px, 92vw, 900px);
    overflow: hidden;
  }

  .home-hero {
    gap: clamp(18px, 3vw, 30px);
    min-height: clamp(780px, 92vw, 900px);
    padding: 34px 28px 44px;
    overflow: hidden;
  }

  .home-hero h1 {
    max-width: min(680px, 100%);
    font-size: clamp(44px, 6.1vw, 56px);
  }

  .home-hero__copy {
    max-width: min(620px, 100%);
    margin-block: 18px 20px;
  }

  .home-hero__media {
    position: relative;
    min-height: clamp(360px, 45vw, 500px);
    overflow: hidden;
  }

  .home-hero--primary .home-hero__media img {
    top: 50%;
    right: 50%;
    width: min(520px, 72vw);
    transform: translate(50%, -50%);
  }

  .home-hero--insurance,
  .home-hero--instant {
    padding-inline: 28px;
  }

  .home-hero--insurance .home-hero__content {
    padding-inline: 0;
  }

  .home-hero--insurance .home-hero__media {
    position: relative;
    inset: auto;
    min-height: clamp(360px, 43vw, 440px);
    border-radius: var(--radius-surface);
  }

  .home-hero--insurance .home-hero__media img {
    position: absolute;
    inset: 0;
    object-position: 62% center;
  }

  .home-hero--instant {
    --instant-hero-blue-offset: 0px;
    background: var(--blue);
  }

  .home-hero--instant .home-hero__content {
    max-width: 620px;
  }

  .home-hero--instant h1 {
    max-width: 560px;
    font-size: clamp(44px, 7vw, 58px);
    line-height: 0.9;
  }

  .home-hero--instant .home-hero__media {
    position: relative;
    min-height: clamp(340px, 42vw, 430px);
  }

  .home-hero--instant .home-hero__media img {
    top: 50%;
    right: 50%;
    bottom: auto;
    width: min(620px, 82vw);
    transform: translate(50%, -50%);
  }

  .marketing-hero__image,
  .insurance-hero__media,
  .usecase-hero__media,
  .company-about__hero-image,
  .company-about__team-photo {
    width: 100%;
    max-width: 100%;
    margin-inline: 0;
    overflow: hidden;
    border-radius: var(--radius-surface);
  }

  .marketing-hero__image,
  .insurance-hero__media img,
  .usecase-hero__media img,
  .company-about__hero-image,
  .company-about__team-photo {
    max-height: min(560px, 58vw);
    object-fit: cover;
  }

  .usecase-hero__media {
    max-height: min(560px, 58vw);
  }
}

.button,
.marketing-dropdown__promo em,
.home-arrows > span,
.home-arrows button {
  border-radius: var(--radius-button);
}

.marketing-dropdown__promo,
.marketing-dropdown__tools-card,
.marketing-hero__image,
.marketing-article__image,
.card__image,
.card-grid--carousel .card,
.card-grid--carousel .card__image,
.marketing-cta,
.instant-intelligence-banner,
.instant-intelligence-banner__device img,
.home-hero-slider,
.home-hero--insurance .home-hero__media,
.home-card img,
.home-use-case-row .home-card img,
.home-testimonial__photo,
.home-cta,
.knowledge-featured__image,
.knowledge-card__image,
.knowledge-case-study__image,
.knowledge-resource__image,
.faq-help-band__image,
.faq-page__cta,
.article-template__hero img,
.solution-intro__media,
.process-card-row .process-card,
.process-card img,
.insurance-hero__media,
.insurance-logo-card,
.insurance-text-section--capability .insurance-quote-card,
.insurance-quote-card,
.insurance-appointments article,
.usecase-hero__media img,
.usecase-feature__media img,
.company-about__hero-image,
.company-about__mission,
.company-about__value-card,
.company-about__video-frame,
.company-about__person-image,
.company-about__cta,
.partners-page__benefit-card,
.partners-page__logo-card,
.partners-page__cta {
  border-radius: var(--radius-surface);
}

.marketing-dropdown__promo--solutions {
  border-radius: 18px;
}

@media (max-width: 640px) {
  .marketing-header-shell {
    background: #fff;
  }

  .marketing-header {
    width: min(calc(100% - 40px), 1180px);
    padding: 29px 0 27px;
  }

  .marketing-header__brand img {
    width: 134px;
  }

  .marketing-mobile-nav__toggle {
    position: relative;
    display: block;
    width: 28px;
    height: 22px;
    border: 0;
    background: transparent;
  }

  .marketing-mobile-nav__toggle span {
    display: none;
  }

  .marketing-mobile-nav__toggle::before {
    position: absolute;
    top: 2px;
    right: 0;
    width: 24px;
    height: 2px;
    background: var(--navy);
    box-shadow:
      0 7px 0 var(--navy),
      0 14px 0 var(--navy);
    content: "";
  }

  .marketing-mobile-nav {
    display: block !important;
    margin-left: auto;
  }

  .home-hero-slider {
    width: 100%;
    min-height: 942px;
    overflow: hidden;
    border-radius: 0;
  }

  .home-hero {
    grid-template-columns: 1fr;
    gap: 0;
    min-height: 942px;
    padding: 0 20px 42px;
    overflow: hidden;
  }

  .home-hero__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    order: 2;
    padding: 0;
  }

  .home-hero h1 {
    max-width: 370px;
    font-size: 42px;
    line-height: 1.02;
  }

  .home-hero__copy {
    max-width: 370px;
    margin: 26px 0 24px;
    color: #303030;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.52;
  }

  .home-search {
    display: none;
  }

  .home-hero .button {
    min-height: 48px;
    padding-inline: 28px;
    border-color: #1b0303;
    background: #1b0303;
    font-family: var(--font-mono);
    font-size: 14px;
    font-weight: 700;
  }

  .home-hero__media {
    order: 1;
    min-height: 458px;
    margin: 0 -20px;
  }

  .home-hero--primary .home-hero__media img {
    top: -23px;
    right: 50%;
    width: 100vw;
    transform: translateX(50%);
  }

  .home-hero--primary h1 {
    margin-top: -2px;
  }

  .home-hero--insurance {
    padding-top: 0;
  }

  .home-hero--insurance .home-hero__media {
    position: relative;
    inset: auto;
    min-height: 386px;
    margin-bottom: 22px;
    border-radius: 0px;
  }

  .home-hero--insurance .home-hero__media img {
    object-position: 58% center;
  }

  .home-hero--insurance .home-hero__content {
    padding-inline: 0;
  }

  .home-hero--insurance h1 {
    max-width: 360px;
    font-size: 39px;
    line-height: 1.05;
  }

  .home-hero--insurance .home-hero__copy {
    max-width: 338px;
    margin-top: 26px;
  }

  .home-hero--instant {
    min-height: 858px;
    padding: 0 20px 48px;
    background: var(--blue);
  }

  .home-hero--instant .home-hero__media {
    position: relative;
    align-self: stretch;
    min-height: 414px;
    margin: 0 -20px 24px;
    overflow: visible;
  }

  .home-hero--instant .home-hero__media img {
    top: -8px;
    right: 20px;
    bottom: auto;
    width: 100vw;
    transform: none;
  }

  .marketing-hero__image,
  .insurance-hero__media,
  .usecase-hero__media,
  .company-about__hero-image {
    width: 100vw;
    max-width: none;
    margin-inline: calc(50% - 50vw);
    border-radius: 0;
  }

  .insurance-hero__media img,
  .usecase-hero__media img,
  .company-about__hero-image {
    width: 100%;
  }

  .home-hero--instant h1 {
    max-width: 360px;
    color: var(--cream);
    font-size: 42px;
    line-height: 0.9;
  }

  .home-hero--instant .home-hero__copy {
    max-width: 354px;
    margin-top: 24px;
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.6;
  }
}

@media (min-width: 625px) and (max-width: 640px) {
  .home-hero-slider {
    min-height: 900px;
    overflow: hidden;
  }

  .home-hero {
    gap: 24px;
    min-height: 900px;
    padding: 34px 28px 44px;
    overflow: hidden;
  }

  .home-hero__content {
    order: 0;
  }

  .home-hero h1 {
    max-width: 100%;
    font-size: 44px;
    line-height: 1.08;
  }

  .home-hero__copy {
    max-width: 100%;
    margin-block: 18px 20px;
    font-size: 18px;
    font-weight: 400;
  }

  .home-search {
    display: grid;
  }

  .home-hero__media {
    position: relative;
    order: 0;
    min-height: 380px;
    margin: 0;
    overflow: hidden;
  }

  .home-hero--primary .home-hero__media img {
    top: 50%;
    right: 50%;
    width: min(520px, 72vw);
    transform: translate(50%, -50%);
  }

  .home-hero--insurance,
  .home-hero--instant {
    padding-inline: 28px;
  }

  .home-hero--insurance {
    padding-top: 34px;
  }

  .home-hero--insurance .home-hero__content {
    padding-inline: 0;
  }

  .home-hero--insurance .home-hero__media {
    position: relative;
    inset: auto;
    min-height: 360px;
    margin-bottom: 0;
    border-radius: var(--radius-surface);
  }

  .home-hero--insurance .home-hero__media img {
    position: absolute;
    inset: 0;
    object-position: 62% center;
  }

  .home-hero--instant {
    min-height: 900px;
    background: var(--blue);
  }

  .home-hero--instant h1 {
    max-width: 560px;
    font-size: 44px;
    line-height: 0.9;
  }

  .home-hero--instant .home-hero__media {
    position: relative;
    min-height: 350px;
    margin: 0;
  }

  .home-hero--instant .home-hero__media img {
    top: 50%;
    right: 50%;
    bottom: auto;
    width: min(620px, 82vw);
    transform: translate(50%, -50%);
  }

  .marketing-hero__image,
  .insurance-hero__media,
  .usecase-hero__media,
  .company-about__hero-image,
  .company-about__team-photo {
    width: 100%;
    max-width: 100%;
    margin-inline: 0;
    overflow: hidden;
    border-radius: var(--radius-surface);
  }
}

@media (max-width: 380px) {
  .home-hero-slider,
  .home-hero {
    min-height: 910px;
  }

  .home-hero h1,
  .home-hero--instant h1 {
    font-size: 38px;
  }

  .home-hero__media {
    min-height: 430px;
  }

  .home-hero--insurance .home-hero__media {
    min-height: 360px;
  }

  .home-hero--instant {
    min-height: 830px;
  }

  .home-hero--instant .home-hero__media {
    min-height: 390px;
  }

  .home-hero--instant .home-hero__copy {
    font-size: 18px;
  }
}
