html {
  scroll-padding-top: 96px;
}
.reading-progress {
  position: fixed;
  inset: 0 auto auto 0;
  height: 3px;
  width: 100%;
  background: #1769df;
  z-index: 30;
  transform: scaleX(var(--read-progress, 0));
  transform-origin: left;
  pointer-events: none;
}
.site-header {
  position: absolute;
  top: 0;
  transition:
    background 0.25s,
    box-shadow 0.25s,
    height 0.25s,
    top 0.25s;
}
.is-interactive .site-header {
  position: fixed;
}
.site-header.is-scrolled {
  top: 14px;
  height: 72px;
  padding-inline: 24px;
  border-radius: 50px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 36px #152e5112;
}
.site-header.is-scrolled .wordmark > img {
  width: 156px;
}
.site-header.is-scrolled .wordmark > span {
  display: none;
}
.site-header.is-scrolled .header-cta {
  color: white;
  background: #14263b;
}
.main-nav a {
  position: relative;
}
.main-nav a::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s;
}
.main-nav a[aria-current="location"]::after {
  transform: scaleX(1);
}
.hero {
  min-height: 700px;
  height: 100svh;
}
.hero-content {
  padding-top: clamp(145px, 19svh, 195px);
}
.hero h1 {
  font-size: clamp(74px, 6.8vw, 112px);
}
.hero-description {
  margin-block: 24px;
}
.hero-brief {
  bottom: 95px;
}
.hero-image {
  scale: 1.015;
  object-position: right center;
  transform: translate3d(0, var(--hero-shift, 0px), 0);
}
.hero-foot a span {
  transition: transform 0.25s;
}
.hero-foot a:hover span {
  transform: translateY(5px);
}
.button .icon,
.brief-bottom a .icon {
  transition: transform 0.3s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.button:hover .icon,
.brief-bottom a:hover .icon {
  transform: translateX(5px);
}
.pill-tabs button {
  transition:
    background 0.25s,
    color 0.25s,
    box-shadow 0.25s;
}
.pill-tabs button[aria-selected="true"] {
  box-shadow: 0 4px 14px #101f2e12;
}
.product-stage {
  perspective: 1400px;
}
.product-window {
  grid-template-columns: 1fr;
  transform: rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition:
    transform 0.35s ease-out,
    box-shadow 0.35s;
}
.product-sidebar {
  display: none;
}
.product-topline {
  align-items: center;
}
.product-topline > img {
  width: 130px;
  height: auto;
}
.product-views {
  position: relative;
}
.product-view {
  transform-origin: center top;
}
.holding-chart > span {
  transform-origin: left;
}
.possibilities {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.north-watermark {
  position: absolute;
  right: -160px;
  top: 15%;
  width: 700px;
  height: 700px;
  opacity: 0.035;
  z-index: -1;
  transform: rotate(var(--north-turn, -14deg));
  pointer-events: none;
}
.possibility-card {
  position: relative;
  overflow: hidden;
}
.possibility-card ul {
  min-height: 252px;
}
.possibility-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    500px circle at var(--glow-x, 70%) var(--glow-y, 10%),
    #a9d4ff18,
    transparent 65%
  );
  pointer-events: none;
}
.experience-grid article {
  position: relative;
}
.experience-grid article::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -1px;
  height: 2px;
  background: #438ff0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.9s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.experience-grid article.has-entered::before {
  transform: scaleX(1);
}
.closing {
  min-height: 70svh;
  display: grid;
  align-items: center;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.closing::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(110deg, #0c336738, transparent 70%);
}
@media (min-width: 1001px) {
  html {
    scroll-padding-top: 0;
  }
  .platform,
  .possibilities,
  .people {
    min-height: 100svh;
    display: grid;
    align-items: center;
    padding-block: 104px 48px;
  }
  .platform > .wrap {
    display: grid;
    grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.6fr);
    gap: 28px 50px;
    align-items: start;
  }
  .platform {
    padding-bottom: 20px;
  }
  .platform .section-heading {
    grid-column: 1;
    grid-row: 1;
    text-align: left;
    margin: 0;
    align-self: end;
  }
  .platform .section-heading h2 {
    font-size: clamp(46px, 4vw, 60px);
  }
  .platform .section-heading .eyebrow {
    max-width: 260px;
    margin-bottom: 20px;
  }
  .platform .section-heading > p:not(.eyebrow) {
    font-size: 18px;
    line-height: 1.6;
  }
  .platform .section-heading br {
    display: none;
  }
  .platform .section-heading h2 br {
    display: block;
  }
  .platform .workflow-tabs {
    grid-column: 1;
    grid-row: 2;
    justify-content: flex-start;
    gap: 5px;
    margin: 0;
  }
  .platform .workflow-tabs button {
    padding-inline: 18px;
  }
  .platform .product-stage {
    grid-column: 2;
    grid-row: 1 / 4;
    align-self: center;
    padding: 24px;
  }
  .platform .product-window {
    min-height: 0;
  }
  .platform .product-main {
    padding: 24px;
  }
  .platform .product-topline {
    padding-bottom: 20px;
  }
  .platform .product-title {
    margin-block: 20px;
  }
  .platform .product-title h3 {
    font-size: 28px;
  }
  .platform .research-layout {
    grid-template-columns: 1fr;
  }
  .platform .insight-card {
    display: none;
  }
  .platform .company-card {
    padding: 24px;
  }
  .platform .funding-chart {
    height: 150px;
  }
  .platform .platform-caption {
    grid-column: 1;
    grid-row: 3;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin: 0;
  }
  .platform .platform-caption p {
    font-size: 16px;
    max-width: 345px;
    min-height: 77px;
  }
  .platform .strategy-table > div {
    padding-block: 21px;
  }
  .platform .execution-list li {
    padding-block: 24px;
  }
  .possibilities > .wrap {
    position: relative;
    min-height: 560px;
  }
  .possibilities .section-heading {
    text-align: left;
    width: 46%;
    max-width: none;
    margin: 0;
  }
  .possibilities .section-heading .eyebrow {
    margin-bottom: 20px;
  }
  .possibilities .section-heading h2 {
    font-size: clamp(44px, 3.7vw, 56px);
  }
  .possibilities .goal-tabs {
    width: 46%;
    justify-content: flex-start;
    margin: 26px 0;
    gap: 8px;
  }
  .possibilities .goal-tabs button {
    padding: 11px 17px;
    min-height: 44px;
  }
  .possibilities .goal-panel {
    position: static;
    display: block;
    min-height: 0;
    padding: 0;
  }
  .possibilities .goal-copy {
    width: 44%;
  }
  .possibilities .goal-copy h3 {
    font-size: 32px;
    line-height: 1.16;
    letter-spacing: -1px;
    min-height: 75px;
  }
  .possibilities .goal-copy > p {
    font-size: 18px;
    line-height: 1.6;
    margin-block: 18px 22px;
    min-height: 116px;
  }
  .possibilities .possibility-card {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    width: 44%;
    max-width: 480px;
    min-height: 480px;
  }
  .possibilities .solutions-note {
    position: absolute;
    bottom: -30px;
    right: 0;
    width: 48%;
    font-size: 14px;
    line-height: 1.6;
    max-width: 530px;
  }
  .people .section-heading h2 {
    font-size: clamp(48px, 4.4vw, 66px);
  }
  .people .section-heading > p:not(.eyebrow) {
    font-size: 18px;
  }
  .people .experience-grid {
    margin-top: 48px;
  }
  .people .experience-grid article {
    padding-top: 20px;
  }
  .people .experience-grid .experience-year {
    margin-bottom: 18px;
  }
  .people .experience-grid h3 {
    font-size: 24px;
  }
  .questions {
    min-height: 85svh;
    align-content: center;
    padding-block: 80px;
  }
}
@media (min-width: 1001px) and (max-height: 760px) {
  .hero {
    min-height: 660px;
  }
  .hero-content {
    padding-top: 132px;
  }
  .hero h1 {
    font-size: clamp(72px, 6.6vw, 96px);
  }
  .hero-description {
    margin-block: 20px;
    font-size: 21px;
  }
  .hero-brief {
    bottom: 78px;
    width: 360px;
    padding: 23px;
  }
  .hero-brief > p {
    font-size: 26px;
    padding-block: 22px;
  }
  .hero-foot {
    bottom: 18px;
  }
  .platform,
  .possibilities,
  .people {
    padding-block: 96px 36px;
  }
  .platform .funding-chart {
    height: 145px;
  }
  .platform .company-card {
    padding: 20px;
  }
  .platform .product-title {
    margin-block: 20px;
  }
  .platform .section-heading h2 {
    font-size: 48px;
  }
  .platform {
    padding-bottom: 20px;
  }
  .people .section-heading h2 {
    font-size: 54px;
  }
  .people .experience-grid {
    margin-top: 36px;
  }
}
@media (min-width: 801px) and (max-width: 1000px) {
  .site-header {
    gap: 24px;
  }
  .site-header .main-nav {
    margin-left: 0;
    gap: 20px;
  }
  .site-header .wordmark > img {
    width: 160px;
  }
  .site-header.is-scrolled {
    padding-inline: 20px;
  }
  .site-header.is-scrolled .wordmark > img {
    width: 140px;
  }
  .hero {
    min-height: 760px;
  }
  .hero h1 {
    font-size: 78px;
  }
}
@media (max-width: 1000px) {
  .section-space {
    padding-block: 64px;
  }
  .platform .section-heading,
  .possibilities .section-heading {
    max-width: 640px;
  }
  .platform .section-heading h2,
  .possibilities .section-heading h2 {
    font-size: 48px;
  }
  .product-window {
    min-height: 0;
  }
  .product-stage {
    padding: 18px;
  }
  .product-main {
    padding: 24px;
  }
  .product-title {
    margin-block: 22px;
  }
  .research-layout {
    grid-template-columns: 1fr;
  }
  .insight-card {
    display: none;
  }
  .goal-copy > p {
    min-height: 116px;
  }
  .possibility-card ul {
    min-height: 252px;
  }
  .possibility-card h4 {
    min-height: 82px;
  }
  .north-watermark {
    width: 580px;
    height: 580px;
    right: -300px;
    top: 35%;
  }
}
@media (max-width: 800px) {
  html {
    scroll-padding-top: 92px;
  }
  .site-header.is-scrolled {
    top: 10px;
    padding-inline: 16px;
    height: 66px;
  }
  .site-header.is-scrolled .wordmark > img {
    width: 144px;
  }
  .site-header.is-scrolled .header-cta {
    padding-inline: 12px;
    min-height: 40px;
  }
  .site-header.is-scrolled .mobile-nav {
    top: 75px;
  }
  .hero {
    height: auto;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    padding-bottom: 24px;
  }
  .hero-content {
    padding-top: 140px;
  }
  .hero h1 {
    font-size: clamp(49px, 12vw, 80px);
  }
  .hero-brief {
    position: relative;
    inset: auto;
    width: calc(100% - 48px);
    max-width: 420px;
    margin: clamp(48px, 8svh, 80px) 24px 28px;
    align-self: flex-end;
  }
  .hero-foot {
    position: relative;
    inset: auto;
    margin-top: auto;
  }
  .hero-image {
    scale: 1.07;
  }
  .hero-description {
    font-size: 20px;
    margin-block: 24px;
  }
  .hero .eyebrow {
    margin-bottom: 22px;
  }
  .goal-copy > p {
    min-height: 144px;
  }
  .experience-grid {
    margin-top: 40px;
  }
  .closing {
    min-height: 70svh;
    padding-block: 76px;
  }
}
@media (max-width: 600px) {
  .site-header.is-scrolled {
    gap: 6px;
  }
  .site-header.is-scrolled .wordmark > img {
    width: 130px;
  }
  .site-header.is-scrolled .header-cta {
    font-size: 16px;
    padding: 11px 10px;
  }
  .site-header.is-scrolled .menu-toggle {
    width: 38px;
  }
  .hero-content {
    padding-top: 128px;
  }
  .hero h1 {
    font-size: clamp(48px, 13.5vw, 64px);
  }
  .hero-brief {
    padding: 22px;
    margin-top: 48px;
    margin-bottom: 24px;
  }
  .hero-brief > p {
    padding-block: 20px;
    font-size: 26px;
  }
  .hero-foot {
    font-size: 14px;
  }
  .hero-brief .brief-bottom > span {
    max-width: 210px;
  }
  .platform .section-heading h2,
  .possibilities .section-heading h2 {
    font-size: 44px;
  }
  .platform .section-heading .eyebrow {
    margin-bottom: 18px;
  }
  .platform .section-heading > p:not(.eyebrow) {
    margin-top: 20px;
  }
  .product-stage {
    padding: 10px;
    margin-inline: -10px;
  }
  .product-main {
    padding: 20px 16px;
  }
  .product-topline {
    flex-wrap: wrap;
    gap: 14px;
  }
  .product-topline > img {
    width: 120px;
  }
  .product-topline .illustrative {
    font-size: 14px;
  }
  .product-title h3 {
    font-size: 27px;
  }
  .company-card {
    padding: 18px 14px;
  }
  .funding-chart {
    height: 155px;
  }
  .platform-caption p {
    min-height: 77px;
  }
  .goal-copy > p {
    min-height: 144px;
  }
  .goal-copy h3 {
    min-height: 83px;
  }
  .pill-tabs {
    margin-block: 25px;
  }
  .goal-panel {
    padding-top: 4px;
    gap: 30px;
  }
}
@media (max-width: 370px) {
  .hero-brief {
    width: calc(100% - 36px);
    margin-inline: 18px;
  }
  .platform .section-heading h2,
  .possibilities .section-heading h2 {
    font-size: 40px;
  }
  .site-header.is-scrolled .wordmark > img {
    width: 145px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .hero-image {
    scale: 1;
    transform: none;
  }
  .product-window {
    transform: none;
  }
  .north-watermark {
    transform: none;
  }
  .experience-grid article::before {
    transform: scaleX(1);
  }
}

.hero-foot {
  color: #0b2039;
  font-size: 18px;
  font-weight: 500;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 130px;
  z-index: -1;
  background: linear-gradient(180deg, #f3f7fb00, #f3f7fbf5 62%, #f3f7fb);
  pointer-events: none;
}
.hero-foot a {
  min-height: 44px;
}
@media (max-width: 800px) {
  .hero-image {
    object-position: center;
  }
  .hero-brief {
    display: none;
  }
  .hero {
    min-height: max(100svh, 780px);
  }
  .hero-foot {
    font-size: 16px;
    gap: 14px;
  }
  .hero-foot > span {
    max-width: 210px;
  }
  .hero-foot a {
    flex-shrink: 0;
  }
}

.hero-brief {
  display: flex;
  align-items: center;
  gap: 18px;
  left: max(56px, calc((100% - 1240px) / 2));
  right: auto;
  bottom: 104px;
  width: auto;
  max-width: 470px;
  padding: 18px 22px;
  border-radius: 16px;
  background: #f1f8fbc9;
  box-shadow: 0 8px 28px #07243e0c;
}
.hero-brief > span:nth-child(2) {
  display: grid;
  gap: 5px;
}
.hero-brief strong {
  font-size: 18px;
  font-weight: 500;
}
.hero-brief > span > span {
  font-size: 14px;
  color: #415974;
}
.brief-emblem {
  flex-shrink: 0;
}
.hero-brief > .icon {
  margin-left: 12px;
  flex-shrink: 0;
}
.hero-brief:hover > .icon {
  transform: translateX(4px);
}
.site-header.is-scrolled.on-dark {
  background: #142c43d9;
  color: white;
  box-shadow: 0 8px 36px #07172a14;
}
.site-header.is-scrolled.on-dark .header-cta {
  color: var(--ink);
  background: #edf5ff;
}
.client-snapshot {
  border: 1px solid #dce6ef;
  border-radius: 12px;
  padding: 22px;
}
.client-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin: 24px 0 18px;
}
.client-metrics > div > span {
  font-size: 14px;
  color: #526780;
  line-height: 1.4;
}
.client-metrics strong {
  display: block;
  font-size: 48px;
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: -2px;
  margin-top: 8px;
}
.client-metrics strong span {
  font-size: 30px;
}
.holding-chart {
  display: flex;
  gap: 4px;
  height: 18px;
  overflow: hidden;
  border-radius: 5px;
}
.holding-chart > span:first-child {
  width: 72%;
  background: #1769df;
}
.holding-chart > span:last-child {
  flex: 1;
  background: #cde3fb;
}
.holding-legend {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 9px;
  color: #526780;
  font-size: 14px;
}
.client-insight {
  margin: 24px -22px -22px;
  padding: 20px 22px;
  border-top: 1px solid #dce6ef;
  border-radius: 0 0 12px 12px;
  background: #f0f6ff;
}
.client-insight h4 {
  font-size: 21px;
  font-weight: 500;
  letter-spacing: -0.5px;
  margin: 8px 0;
}
.client-insight > p {
  font-size: 16px;
  color: #526780;
  line-height: 1.5;
}
.people .experience-grid {
  gap: 0;
  margin-top: 60px;
}
.people .experience-grid article {
  padding: 30px 28px 0 0;
}
.people .experience-grid article::after {
  content: "";
  position: absolute;
  left: 0;
  top: -5px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #1769df;
  box-shadow: 0 0 0 6px white;
}
.people .experience-grid .experience-year {
  font-size: clamp(54px, 5vw, 76px);
  line-height: 1;
  letter-spacing: -3px;
  margin-bottom: 24px;
  color: #1769df;
  font-weight: 500;
}
.people .experience-note {
  text-align: left;
}
.closing {
  min-height: 78svh;
  text-align: left;
  background:
    linear-gradient(
      90deg,
      #102f59ed 0%,
      #102f59d9 32%,
      #102f5938 68%,
      #102f5910
    ),
    url("/assets/possible-futures.png") right 44% / cover;
  background-color: #102f59;
}
.closing h2 {
  font-size: clamp(52px, 5.2vw, 76px);
  max-width: 710px;
}
.closing p {
  color: #e2efff;
}
@media (min-width: 801px) {
  .site-header.is-scrolled {
    width: min(960px, calc(100% - 80px));
    height: 64px;
    gap: 28px;
    background: #f4f8fbe8;
  }
  .site-header.is-scrolled .main-nav {
    margin-left: auto;
    gap: 28px;
  }
  .site-header.is-scrolled .header-cta {
    margin-left: auto;
    min-height: 42px;
    padding-block: 11px;
  }
}
@media (min-width: 1001px) {
  .people > .wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 70px;
  }
  .people .section-heading {
    display: contents;
    text-align: left;
  }
  .people .section-heading .eyebrow {
    grid-column: 1 / -1;
    margin-bottom: 24px;
  }
  .people .section-heading h2 {
    grid-column: 1;
    grid-row: 2 / 4;
  }
  .people .section-heading > p:not(.eyebrow) {
    grid-column: 2;
    align-self: end;
    font-size: 21px;
    margin: 0 0 22px;
    max-width: 440px;
  }
  .people .section-heading > p br {
    display: none;
  }
  .people .section-heading .button {
    grid-column: 2;
    justify-self: start;
    align-self: start;
    margin-top: 0;
  }
  .people .experience-grid,
  .people .experience-note {
    grid-column: 1 / -1;
  }
}
@media (min-width: 801px) and (max-height: 760px) {
  .hero-brief {
    bottom: 66px;
    padding: 14px 18px;
  }
  .people .experience-grid {
    margin-top: 38px;
  }
  .people .experience-grid .experience-year {
    font-size: 56px;
  }
}
@media (max-width: 1000px) {
  .people .experience-grid .experience-year {
    font-size: 54px;
  }
  .closing h2 {
    max-width: 600px;
  }
}
@media (max-width: 800px) {
  .hero-brief {
    display: none;
  }
  .closing {
    min-height: 680px;
    align-items: start;
    background:
      linear-gradient(180deg, #102f59ed, #102f59a6 50%, #102f5926),
      url("/assets/possible-futures-mobile.png") center 58% / cover;
  }
  .closing h2 {
    font-size: clamp(44px, 7.5vw, 60px);
  }
}
@media (max-width: 600px) {
  .client-snapshot {
    padding: 18px 14px;
  }
  .client-metrics {
    gap: 16px;
  }
  .client-metrics > div > span {
    display: block;
    min-height: 40px;
  }
  .client-metrics strong {
    font-size: 40px;
  }
  .client-insight {
    margin: 22px -14px -18px;
    padding: 18px 14px;
  }
  .people .experience-grid article {
    padding: 0 0 34px 28px;
    border-top: 0;
    border-left: 1px solid #bfcbd8;
  }
  .people .experience-grid article::before {
    left: -1px;
    top: 0;
    width: 2px;
    height: 100%;
    transform: scaleY(0);
    transform-origin: top;
  }
  .people .experience-grid article.has-entered::before {
    transform: scaleY(1);
  }
  .people .experience-grid article::after {
    left: -5px;
    top: 0;
  }
  .people .experience-grid .experience-year {
    margin-bottom: 18px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .people .experience-grid article::before {
    transform: none;
  }
}

@media (min-width: 1001px) and (max-height: 850px) {
  .platform .product-stage {
    padding: 16px;
  }
  .platform .product-main {
    padding: 18px;
  }
  .platform .product-topline {
    padding-bottom: 14px;
  }
  .platform .product-title {
    margin-block: 14px;
  }
  .platform .product-title h3 {
    margin-top: 6px;
  }
  .client-snapshot {
    padding: 18px;
  }
  .client-metrics {
    margin-block: 16px 14px;
  }
  .client-metrics strong {
    font-size: 42px;
  }
  .client-insight {
    margin: 18px -18px -18px;
    padding: 16px 18px;
  }
  .client-insight h4 {
    font-size: 20px;
    margin-block: 6px;
  }
  .platform .execution-list li {
    padding-block: 18px;
  }
  .platform .strategy-table > div {
    padding-block: 17px;
  }
}
@media (min-width: 371px) and (max-width: 600px) {
  .site-header:not(.is-scrolled) .wordmark > img {
    width: 144px;
  }
  .site-header:not(.is-scrolled) .header-cta {
    padding-inline: 12px;
  }
  .site-header:not(.is-scrolled) .menu-toggle {
    width: 38px;
    flex-shrink: 0;
  }
}
@media (min-width: 371px) and (max-width: 600px) {
  .site-header {
    gap: 4px;
  }
  .site-header:not(.is-scrolled) .wordmark > img {
    width: 136px;
  }
  .site-header.is-scrolled {
    gap: 4px;
    padding-inline: 12px;
  }
  .site-header.is-scrolled .wordmark > img {
    width: 128px;
  }
  .site-header.is-scrolled .header-cta {
    padding-inline: 8px;
  }
}
