:root {
  --ink: #141c29;
  --muted: #576474;
  --blue: #1160da;
  --sky: #b9deff;
  --paper: #f6f8fa;
  --line: #dce2e9;
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--ink);
  font-family: var(--sans);
  font-synthesis: none;
  font-size: 18px;
  background: #fff;
}
* {
  box-sizing: border-box;
}
html {
  overscroll-behavior-y: none;
  scroll-behavior: smooth;
  scroll-padding-top: 32px;
}
body {
  overscroll-behavior-y: none;
  margin: 0;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  font: inherit;
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
a {
  touch-action: manipulation;
}
p,
h1,
h2,
h3,
h4 {
  margin: 0;
}
h1,
h2,
h3,
h4 {
  font-weight: 500;
}
p {
  line-height: 1.6;
}
img,
svg {
  display: block;
}
svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.svg-library {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.icon {
  height: 24px;
  width: 24px;
  flex-shrink: 0;
}
[hidden] {
  display: none !important;
}
:focus-visible {
  outline: 3px solid #1769e8;
  outline-offset: 6px;
}
.possibilities :focus-visible,
.closing :focus-visible {
  outline-color: #a7d7ff;
}
.wrap {
  width: min(1240px, calc(100% - 112px));
  margin-inline: auto;
}
.section-space {
  padding-block: 120px;
}
.skip-link {
  position: fixed;
  z-index: 20;
  top: -100px;
  left: 20px;
  background: white;
  padding: 16px;
}
.skip-link:focus {
  top: 12px;
}
.eyebrow {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
}
.label {
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-height: 52px;
  padding: 15px 26px;
  border-radius: 100px;
  border: 1px solid transparent;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  transition:
    background 0.2s,
    transform 0.2s;
  white-space: nowrap;
}
.button:hover {
  transform: translateY(-2px);
}
.button-dark {
  background: var(--ink);
  color: white;
}
.button-dark:hover {
  background: #29394e;
}
.button-light {
  background: white;
  color: var(--ink);
}
.button-light:hover {
  background: #e9f3fc;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  font-size: 16px;
  font-weight: 500;
}
.text-link:hover .text-link-label,
.text-link:focus-visible .text-link-label {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.site-header {
  position: absolute;
  z-index: 5;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(1240px, calc(100% - 112px));
  height: 106px;
  display: flex;
  align-items: center;
  gap: 48px;
  color: white;
}
.wordmark {
  display: flex;
  flex-direction: column;
  font-size: 32px;
  line-height: 1;
  letter-spacing: -1.2px;
  font-weight: 600;
  flex-shrink: 0;
}
.wordmark > img {
  width: 190px;
  height: auto;
}
.wordmark > span {
  font-size: 14px;
  letter-spacing: 0;
  font-weight: 400;
  line-height: 1.6;
  margin-top: 5px;
  margin-left: 37px;
}
.main-nav {
  display: flex;
  gap: 34px;
  font-size: 16px;
  margin-left: 52px;
}
.main-nav a {
  padding: 12px 0;
}
.main-nav a:hover {
  opacity: 0.7;
}
.header-cta {
  margin-left: auto;
  background: white;
  color: var(--ink);
  min-height: 46px;
  padding: 13px 23px;
}
.menu-toggle,
.mobile-nav {
  display: none;
}
.hero {
  position: relative;
  min-height: 900px;
  height: min(100svh, 1080px);
  isolation: isolate;
  color: white;
  background: #66a9e5;
  overflow: hidden;
}
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -3;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 57, 110, 0.22), transparent 80%),
    linear-gradient(
      180deg,
      rgba(9, 46, 90, 0.16),
      transparent 50%,
      rgba(4, 25, 41, 0.2)
    );
  z-index: -2;
}
.hero-content {
  padding-top: 170px;
  position: relative;
}
.hero .eyebrow {
  margin-bottom: 26px;
}
.hero h1 {
  font-size: clamp(76px, 7.6vw, 116px);
  line-height: 1.02;
  letter-spacing: -0.055em;
  font-weight: 500;
  max-width: 890px;
}
.hero-description {
  font-size: 23px;
  line-height: 1.5;
  margin: 28px 0 30px;
}
.hero-brief {
  position: absolute;
  right: max(56px, calc((100% - 1240px) / 2));
  bottom: 118px;
  width: 408px;
  border-radius: 22px;
  padding: 26px;
  background: rgba(244, 250, 255, 0.89);
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 20px 65px #07243e24;
  backdrop-filter: blur(18px);
}
.brief-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
}
.brief-top > span:first-child {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brief-top .icon {
  width: 20px;
  height: 20px;
  color: #215daa;
}
.brief-dot {
  height: 7px;
  width: 7px;
  border-radius: 50%;
  background: #3979c8;
}
.hero-brief > p {
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -0.6px;
  padding-block: 28px;
}
.hero-brief strong {
  font-weight: 500;
  color: #2868b7;
}
.brief-bottom {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
}
.brief-bottom > a {
  display: grid;
  place-items: center;
  background: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-left: auto;
  flex-shrink: 0;
}
.hero-foot {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
}
.hero-foot a {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 10px 0;
}
.section-heading {
  text-align: center;
  margin-inline: auto;
  max-width: 860px;
}
.section-heading .eyebrow {
  margin-bottom: 23px;
  color: var(--muted);
}
h2 {
  font-size: clamp(46px, 5.1vw, 76px);
  letter-spacing: -0.045em;
  line-height: 1.05;
}
.section-heading > p:not(.eyebrow) {
  font-size: 20px;
  color: var(--muted);
  line-height: 1.55;
  margin-top: 26px;
}
.section-heading > .button {
  margin-top: 30px;
}
.pill-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 36px auto 42px;
  flex-wrap: wrap;
}
.pill-tabs button {
  border: 1px solid transparent;
  border-radius: 40px;
  background: transparent;
  color: var(--muted);
  font-size: 16px;
  min-height: 48px;
  padding: 13px 24px;
  line-height: 1.3;
  transition:
    background 0.2s,
    color 0.2s;
}
.pill-tabs button:hover {
  background: #eaf0f6;
  color: var(--ink);
}
.pill-tabs button[aria-selected="true"] {
  background: var(--ink);
  color: white;
}
.platform {
  background: var(--paper);
}
.product-stage {
  padding: 40px;
  border-radius: 28px;
  background: #d5eaff;
  box-shadow: inset 0 0 90px #b5d7f980;
}
.product-window {
  display: grid;
  grid-template-columns: 210px 1fr;
  background: #fff;
  border: 1px solid #d5e2ee;
  border-radius: 14px;
  min-height: 555px;
  overflow: hidden;
  box-shadow: 0 20px 45px #22476918;
}
.product-sidebar {
  background: #f8fafc;
  border-right: 1px solid #e3e9ee;
  padding: 30px 16px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.product-brand {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -1px;
  margin: 0 12px 36px;
}
.product-brand > img {
  width: 100%;
  max-width: 150px;
  height: auto;
}
.sidebar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  padding: 13px 12px;
  line-height: 1.45;
  color: #5c6a79;
  border-radius: 7px;
}
.sidebar-item.active {
  background: #e7f0fc;
  color: #225ca6;
}
.sidebar-item .icon {
  width: 18px;
  height: 18px;
}
.sidebar-bottom {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  line-height: 1.4;
  margin-top: auto;
  padding-top: 38px;
}
.avatar {
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #dfeafa;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}
.product-main {
  padding: 26px 30px 32px;
  min-width: 0;
}
.product-topline {
  display: flex;
  gap: 16px;
  justify-content: space-between;
  font-size: 14px;
  color: #617082;
  line-height: 1.5;
  padding-bottom: 24px;
  border-bottom: 1px solid #e7ebf0;
}
.illustrative {
  white-space: nowrap;
}
.product-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 30px 0 26px;
}
.product-title h3 {
  font-size: 30px;
  letter-spacing: -1px;
  line-height: 1.15;
  margin-top: 10px;
}
.product-symbol {
  color: #2877dd;
}
.product-symbol svg {
  width: 42px;
  height: 42px;
}
.research-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 18px;
}
.company-card {
  border: 1px solid #e0e6ee;
  border-radius: 10px;
  padding: 20px;
  min-width: 0;
}
.company-heading {
  display: flex;
  align-items: center;
  gap: 12px;
}
.company-avatar {
  height: 42px;
  width: 42px;
  flex-shrink: 0;
  background: #183d6c;
  color: white;
  font-size: 22px;
  display: grid;
  place-items: center;
  border-radius: 10px;
}
.company-heading strong {
  display: block;
  font-size: 18px;
  font-weight: 500;
}
.company-heading div > span {
  display: block;
  font-size: 14px;
  color: #647181;
  margin-top: 4px;
  line-height: 1.4;
}
.tag {
  margin-left: auto;
  color: #466285;
  background: #edf4fc;
  border-radius: 4px;
  padding: 5px 7px;
  font-size: 14px;
}
.chart-heading {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 14px;
  margin: 26px 0 15px;
  color: #586b80;
  line-height: 1.4;
}
.chart-heading > span:last-child {
  color: #737f8c;
}
.funding-chart {
  height: 160px;
  display: flex;
  gap: 15px;
  align-items: end;
  padding: 0 4px 30px;
  border-bottom: 1px solid #e4e9ee;
  background: repeating-linear-gradient(
    to top,
    transparent 0,
    transparent 38px,
    #edf1f5 39px,
    #edf1f5 40px
  );
}
.funding-chart > div {
  height: var(--bar);
  flex: 1;
  background: #8ebcff;
  position: relative;
  border-radius: 4px 4px 0 0;
}
.funding-chart > div:last-child {
  background: #276cdf;
}
.funding-chart span {
  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 14px;
  color: #5a6c80;
}
.company-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 15px;
  font-size: 14px;
  color: #657488;
  margin-top: 20px;
  line-height: 1.5;
}
.insight-card {
  padding: 22px;
  background: #edf5ff;
  border-radius: 10px;
}
.insight-card > .icon {
  color: #2b6fd1;
}
.insight-card h4 {
  font-size: 22px;
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin: 18px 0 14px;
}
.insight-card > p {
  font-size: 16px;
  color: #566b81;
  line-height: 1.55;
  margin-bottom: 22px;
}
.insight-card > div {
  display: flex;
  gap: 7px;
  align-items: center;
  font-size: 14px;
  line-height: 1.45;
  margin-top: 12px;
}
.insight-card > div .icon {
  color: #286ac6;
  width: 16px;
  height: 16px;
}
.platform-caption {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  margin-top: 26px;
  align-items: center;
}
.platform-caption p {
  font-size: 16px;
  color: var(--muted);
}
.platform-caption a {
  flex-shrink: 0;
}
.strategy-table > div {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 24px;
  padding: 25px 12px;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
  line-height: 1.6;
}
.strategy-table strong {
  font-weight: 500;
}
.strategy-table > div > span:last-child {
  color: var(--muted);
}
.strategy-table > .table-head {
  background: #edf5ff;
  font-size: 14px;
  padding: 15px 12px;
  border: 0;
  border-radius: 6px;
}
.product-note {
  font-size: 16px;
  color: var(--muted);
  margin-top: 26px;
}
.execution-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.execution-list li {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}
.execution-list li > span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #eaf2fc;
  flex-shrink: 0;
  font-size: 16px;
  color: #2768bd;
}
.execution-list h4 {
  font-size: 19px;
  line-height: 1.4;
}
.execution-list p {
  font-size: 16px;
  margin-top: 5px;
  color: var(--muted);
}
.execution-list li > .icon {
  margin-left: auto;
}
.possibilities {
  background: #0b1625;
  color: #fff;
}
.possibilities .section-heading .eyebrow {
  color: #a5c4e7;
}
.possibilities .section-heading > p:not(.eyebrow) {
  color: #b7c3d1;
}
.possibilities .pill-tabs button {
  border-color: #4a5868;
  color: #d5dfec;
}
.possibilities .pill-tabs button:hover {
  background: #213146;
}
.possibilities .pill-tabs button[aria-selected="true"] {
  background: white;
  border-color: white;
  color: var(--ink);
}
.goal-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 95px;
  padding: 35px 60px 50px;
  min-height: 540px;
}
.goal-copy h3 {
  font-size: 48px;
  letter-spacing: -1.9px;
  line-height: 1.1;
}
.goal-copy > p {
  font-size: 20px;
  line-height: 1.6;
  color: #b7c3d1;
  margin: 25px 0 30px;
  max-width: 420px;
}
.possibility-card {
  border: 1px solid #465e7c;
  border-radius: 22px;
  padding: 30px 34px;
  background: linear-gradient(140deg, #233b58, #15283e);
  box-shadow: 0 24px 80px #0003;
  max-width: 480px;
  width: 100%;
  justify-self: end;
}
.possibility-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  margin-bottom: 38px;
  color: #dfecff;
}
.possibility-card-top .icon {
  width: 26px;
  height: 26px;
  color: #a3cdff;
}
.possibility-card .label {
  color: #b6cbe5;
}
.possibility-card h4 {
  font-size: 34px;
  letter-spacing: -1px;
  margin-top: 9px;
  line-height: 1.2;
}
.options-label {
  font-size: 14px;
  color: #b6cbe5;
  margin-top: 30px;
}
.possibility-card ul {
  list-style: none;
  margin: 6px 0 24px;
  padding: 0;
  min-height: 208px;
}
.possibility-card li {
  font-size: 18px;
  border-bottom: 1px solid #3b506a;
  padding: 15px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.possibility-card li > span {
  color: #9bbfea;
}
.card-footnote {
  font-size: 14px;
  color: #b6cbe5;
}
.solutions-note {
  text-align: center;
  color: #a7b6c7;
  font-size: 14px;
  margin-top: 15px;
}
.people {
  background: #fff;
}
.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px;
  margin: 80px 0 32px;
}
.experience-grid article {
  padding-top: 26px;
  border-top: 1px solid #bfcbd8;
}
.experience-grid .experience-year {
  color: #2b6bb5;
  font-size: 16px;
  margin-bottom: 25px;
}
.experience-grid h3 {
  font-size: 26px;
  letter-spacing: -0.8px;
  line-height: 1.2;
  margin-bottom: 15px;
}
.experience-grid article > p:last-child {
  font-size: 18px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 310px;
}
.experience-note {
  font-size: 14px;
  color: var(--muted);
  text-align: center;
}
.launch {
  background: #dceeff;
  padding-block: 64px;
}
.launch-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 45px;
}
.launch h2 {
  font-size: 40px;
  letter-spacing: -1.5px;
  margin: 14px 0;
}
.launch .label {
  color: #4a6079;
  font-size: 16px;
}
.launch-inner > div > p:last-child {
  font-size: 18px;
  color: #4c6077;
}
.launch .button {
  flex-shrink: 0;
}
.questions {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 85px;
}
.questions h2 {
  font-size: 48px;
  line-height: 1.12;
  letter-spacing: -2px;
}
.faq-list details {
  border-bottom: 1px solid var(--line);
}
.faq-list summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 20px;
  line-height: 1.4;
  padding: 25px 0;
  cursor: pointer;
}
.faq-list details:first-child summary {
  padding-top: 5px;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary > span {
  font-size: 25px;
  flex-shrink: 0;
  transition: transform 0.2s;
  font-weight: 400;
}
.faq-list details[open] summary > span {
  transform: rotate(45deg);
}
.faq-list details p {
  color: var(--muted);
  font-size: 18px;
  padding-bottom: 28px;
  max-width: 590px;
}
.faq-list a {
  text-decoration: underline;
  text-underline-offset: 3px;
  color: #205a9c;
}
.closing {
  padding: 110px 0 120px;
  text-align: center;
  color: white;
  background:
    linear-gradient(#092d688c, #0d37649e),
    url("/assets/possible-futures.png") center 36% / cover;
}
.closing h2 {
  font-size: clamp(52px, 6vw, 88px);
}
.closing p {
  font-size: 22px;
  margin: 25px 0 30px;
}
.footer {
  padding: 60px 0 34px;
  background: #f3f5f7;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 50px;
}
.footer nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  font-size: 16px;
}
.footer nav a:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #606c7b;
  gap: 24px;
  padding-top: 28px;
  border-top: 1px solid #d8dfe7;
}
.legal {
  font-size: 14px;
  line-height: 1.65;
  color: #65717f;
  margin-top: 22px;
  max-width: 1040px;
}
@media (min-width: 1600px) {
  .hero-content {
    padding-top: 185px;
  }
  .hero-brief {
    bottom: 145px;
  }
  .hero {
    min-height: 960px;
  }
}
@media (max-width: 1150px) {
  .wrap,
  .site-header {
    width: calc(100% - 72px);
  }
  .main-nav {
    margin-left: 15px;
    gap: 25px;
  }
  .hero {
    min-height: 840px;
  }
  .hero-brief {
    right: 36px;
    width: 370px;
    bottom: 100px;
  }
  .product-stage {
    padding: 24px;
  }
  .product-window {
    grid-template-columns: 175px 1fr;
  }
  .product-sidebar {
    padding-inline: 10px;
  }
  .product-main {
    padding: 22px;
  }
  .research-layout {
    grid-template-columns: 1fr;
  }
  .insight-card {
    display: none;
  }
  .goal-panel {
    gap: 50px;
    padding: 20px 10px 35px;
  }
  .goal-copy h3 {
    font-size: 43px;
  }
  .questions {
    gap: 50px;
  }
  .product-title h3 {
    font-size: 28px;
  }
  .company-card {
    padding: 24px;
  }
  .funding-chart {
    height: 180px;
  }
}
@media (max-width: 800px) {
  .wrap,
  .site-header {
    width: calc(100% - 48px);
  }
  .site-header {
    height: 90px;
    gap: 16px;
  }
  .wordmark {
    font-size: 29px;
  }
  .wordmark > span {
    font-size: 14px;
  }
  .main-nav {
    display: none;
  }
  .header-cta {
    padding: 13px 19px;
  }
  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: transparent;
    border: 0;
    color: inherit;
    padding: 10px;
  }
  .menu-toggle span {
    height: 1.5px;
    width: 24px;
    background: currentColor;
    transition: transform 0.2s;
  }
  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.75px) rotate(45deg);
  }
  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3.75px) rotate(-45deg);
  }
  .mobile-nav {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    padding: 16px 24px;
    background: #fff;
    color: var(--ink);
    border-radius: 16px;
    box-shadow: 0 18px 60px #0a315733;
  }
  .mobile-nav {
    max-height: calc(100dvh - 110px);
    overflow-y: auto;
    overscroll-behavior: contain;
  }
  .mobile-nav.is-open {
    display: flex;
    flex-direction: column;
  }
  .mobile-nav a {
    padding: 15px 0;
    font-size: 20px;
    border-bottom: 1px solid #e7ecf2;
  }
  .mobile-nav a:last-child {
    border: 0;
  }
  .hero {
    min-height: 960px;
    height: auto;
  }
  .hero-content {
    padding-top: 152px;
  }
  .hero h1 {
    font-size: 86px;
  }
  .hero-description {
    font-size: 22px;
  }
  .hero-image {
    object-position: 61% center;
  }
  .hero-brief {
    bottom: 110px;
    right: 24px;
  }
  .section-space {
    padding-block: 90px;
  }
  .product-sidebar {
    display: none;
  }
  .product-window {
    display: block;
  }
  .product-main {
    padding: 28px;
  }
  .product-stage {
    padding: 24px;
  }
  .product-title h3 {
    font-size: 30px;
  }
  .research-layout {
    grid-template-columns: 1.2fr 1fr;
  }
  .insight-card {
    display: block;
  }
  .company-card {
    padding: 20px;
  }
  .tag,
  .chart-heading > span:last-child {
    display: none;
  }
  .company-heading {
    gap: 10px;
  }
  .company-avatar {
    width: 36px;
    height: 36px;
  }
  .company-heading div > span {
    font-size: 14px;
  }
  .funding-chart {
    gap: 10px;
  }
  .company-bottom {
    display: none;
  }
  .insight-card {
    padding: 20px;
  }
  .insight-card h4 {
    font-size: 20px;
  }
  .insight-card > div {
    font-size: 14px;
  }
  .platform-caption {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  .goal-panel {
    gap: 35px;
    padding-inline: 0;
  }
  .goal-copy h3 {
    font-size: 38px;
  }
  .goal-copy > p {
    font-size: 18px;
  }
  .goal-copy .button {
    padding-inline: 20px;
    gap: 12px;
  }
  .possibility-card {
    padding: 26px;
  }
  .possibility-card h4 {
    font-size: 30px;
  }
  .possibility-card-top {
    font-size: 14px;
    gap: 9px;
  }
  .experience-grid {
    gap: 24px;
  }
  .experience-grid h3 {
    font-size: 23px;
  }
  .experience-grid article > p:last-child {
    font-size: 18px;
  }
  .launch-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 25px;
  }
  .questions {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .questions h2 {
    text-align: center;
  }
  .footer-top {
    align-items: flex-start;
  }
  .footer nav {
    gap: 20px;
    max-width: 330px;
  }
}
@media (max-width: 600px) {
  .section-space {
    padding-block: 76px;
  }
  .site-header {
    gap: 8px;
  }
  .header-cta {
    font-size: 16px;
    padding: 12px 16px;
    min-height: 44px;
  }
  .wordmark {
    font-size: 27px;
  }
  .hero {
    min-height: 920px;
  }
  .hero-content {
    padding-top: 142px;
  }
  .hero .eyebrow {
    font-size: 16px;
    margin-bottom: 22px;
    max-width: 250px;
  }
  .hero h1 {
    font-size: clamp(49px, 13.5vw, 65px);
    letter-spacing: -0.048em;
    line-height: 1.04;
  }
  .hero-description {
    font-size: 20px;
    line-height: 1.55;
    margin: 24px 0 26px;
  }
  .hero-image {
    object-position: 62% center;
  }
  .hero-shade {
    background: linear-gradient(180deg, #164d8330, transparent 60%, #05264140);
  }
  .hero-brief {
    left: 24px;
    right: 24px;
    width: auto;
    bottom: 100px;
    padding: 24px;
    border-radius: 18px;
    max-width: 400px;
  }
  .hero-brief > p {
    font-size: 28px;
    padding-block: 25px;
  }
  .brief-bottom {
    gap: 10px;
    font-size: 14px;
    line-height: 1.5;
  }
  .brief-bottom > span {
    max-width: 190px;
  }
  .hero-foot {
    font-size: 14px;
    bottom: 22px;
    gap: 18px;
  }
  .hero-foot a {
    gap: 10px;
  }
  .section-heading .eyebrow {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .section-heading h2 {
    font-size: 46px;
    line-height: 1.08;
  }
  .section-heading > p:not(.eyebrow) {
    font-size: 18px;
    line-height: 1.65;
    margin-top: 22px;
  }
  .section-heading > p br {
    display: none;
  }
  .pill-tabs {
    gap: 4px;
    margin: 28px auto 28px;
  }
  .pill-tabs button {
    font-size: 16px;
    padding: 12px 17px;
    min-height: 46px;
  }
  .product-stage {
    padding: 12px;
    border-radius: 20px;
    margin-inline: -12px;
  }
  .product-window {
    border-radius: 12px;
    min-height: 0;
  }
  .product-main {
    padding: 20px 16px 24px;
  }
  .product-topline {
    font-size: 14px;
    line-height: 1.5;
    padding-bottom: 18px;
  }
  .product-topline > span:first-child {
    display: none;
  }
  .product-title {
    margin: 24px 0;
    align-items: flex-start;
  }
  .product-title h3 {
    font-size: 28px;
    line-height: 1.15;
    letter-spacing: -0.8px;
  }
  .product-symbol svg {
    height: 30px;
    width: 30px;
  }
  .product-title .label {
    max-width: 200px;
  }
  .research-layout {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .company-card {
    padding: 18px 14px;
  }
  .company-heading div > span {
    font-size: 14px;
  }
  .tag {
    display: block;
  }
  .chart-heading {
    margin-top: 28px;
  }
  .funding-chart {
    height: 175px;
    gap: 17px;
  }
  .company-bottom {
    display: flex;
  }
  .insight-card {
    padding: 24px;
  }
  .insight-card h4 {
    font-size: 24px;
    line-height: 1.2;
  }
  .insight-card > p {
    font-size: 18px;
  }
  .insight-card > div {
    font-size: 16px;
    margin-top: 14px;
  }
  .insight-card > div .icon {
    width: 18px;
    height: 18px;
  }
  .platform-caption {
    margin-top: 24px;
  }
  .platform-caption p {
    font-size: 16px;
    line-height: 1.6;
  }
  .strategy-table > div {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 20px 4px;
    font-size: 16px;
  }
  .strategy-table > .table-head {
    display: none;
  }
  .strategy-table strong {
    font-size: 18px;
  }
  .product-note {
    font-size: 16px;
    line-height: 1.6;
  }
  .execution-list li {
    gap: 12px;
    align-items: flex-start;
    padding: 22px 0;
  }
  .execution-list h4 {
    font-size: 19px;
  }
  .execution-list p {
    font-size: 16px;
    line-height: 1.65;
  }
  .execution-list li > .icon {
    display: none;
  }
  .execution-list li > span {
    width: 30px;
    height: 30px;
  }
  .goal-tabs {
    max-width: 380px;
    gap: 9px;
  }
  .goal-tabs button {
    padding: 11px 17px;
  }
  .goal-panel {
    grid-template-columns: 1fr;
    gap: 35px;
    padding: 8px 0 20px;
    min-height: 0;
  }
  .goal-copy {
    text-align: center;
  }
  .goal-copy h3 {
    font-size: 36px;
    letter-spacing: -1.2px;
    line-height: 1.15;
  }
  .goal-copy p {
    font-size: 18px;
    margin: 20px auto 26px;
    max-width: 350px;
  }
  .possibility-card {
    justify-self: center;
    max-width: 430px;
    padding: 28px 26px;
  }
  .possibility-card-top {
    font-size: 16px;
    margin-bottom: 32px;
  }
  .possibility-card h4 {
    font-size: 34px;
  }
  .possibility-card li {
    font-size: 18px;
  }
  .solutions-note {
    font-size: 14px;
    line-height: 1.65;
    margin-top: 20px;
  }
  .experience-grid {
    grid-template-columns: 1fr;
    margin-top: 48px;
    gap: 30px;
  }
  .experience-grid article {
    padding-top: 22px;
  }
  .experience-grid .experience-year {
    margin-bottom: 12px;
    font-size: 16px;
  }
  .experience-grid h3 {
    font-size: 27px;
    margin-bottom: 10px;
  }
  .experience-grid article > p:last-child {
    max-width: none;
  }
  .experience-note {
    text-align: left;
    font-size: 14px;
  }
  .launch {
    padding-block: 46px;
  }
  .launch h2 {
    font-size: 36px;
    line-height: 1.1;
  }
  .launch .label {
    font-size: 16px;
    line-height: 1.6;
  }
  .launch-inner > div > p:last-child {
    font-size: 18px;
  }
  .questions {
    gap: 34px;
  }
  .questions h2 {
    font-size: 43px;
    letter-spacing: -1.5px;
  }
  .faq-list summary {
    font-size: 18px;
    line-height: 1.55;
    gap: 20px;
    padding: 22px 0;
  }
  .faq-list details p {
    font-size: 18px;
    line-height: 1.65;
  }
  .closing {
    padding-block: 84px;
    background-position: 60% 40%;
  }
  .closing h2 {
    font-size: 48px;
    line-height: 1.08;
    letter-spacing: -2px;
  }
  .closing p {
    font-size: 20px;
  }
  .footer {
    padding-top: 45px;
  }
  .footer-top {
    flex-direction: column;
    gap: 32px;
    padding-bottom: 36px;
  }
  .footer nav {
    gap: 22px 30px;
    font-size: 16px;
    max-width: none;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    font-size: 14px;
  }
  .legal {
    font-size: 14px;
  }
}
@media (max-width: 370px) {
  .wrap,
  .site-header {
    width: calc(100% - 36px);
  }
  .wordmark {
    font-size: 24px;
  }
  .header-cta {
    padding-inline: 12px;
  }
  .site-header {
    gap: 4px;
  }
  .menu-toggle {
    width: 38px;
    padding: 7px;
  }
  .hero h1 {
    font-size: 48px;
  }
  .hero-brief {
    left: 18px;
    right: 18px;
    padding: 22px;
  }
  .hero-brief > p {
    font-size: 26px;
  }
  .section-heading h2 {
    font-size: 40px;
  }
  .pill-tabs button {
    padding-inline: 14px;
  }
  .product-stage {
    padding: 8px;
    margin-inline: -8px;
  }
  .product-main {
    padding-inline: 14px;
  }
  .product-symbol {
    display: none;
  }
  .tag {
    display: none;
  }
  .funding-chart {
    gap: 12px;
  }
  .funding-chart span {
    font-size: 14px;
  }
  .company-heading strong {
    font-size: 18px;
  }
  .company-avatar {
    width: 32px;
    height: 32px;
  }
  .possibility-card {
    padding: 24px 20px;
  }
  .possibility-card-top {
    font-size: 14px;
  }
  .goal-copy h3 {
    font-size: 33px;
  }
  .closing h2 {
    font-size: 42px;
  }
}
@media (max-width: 800px) {
  .site-header .wordmark > img {
    width: 160px;
  }
  .site-header .wordmark > span {
    margin-left: 31px;
  }
  .site-header .header-cta {
    padding-inline: 12px;
  }
}
@media (max-width: 360px) {
  .site-header .header-cta {
    display: none;
  }
  .site-header .menu-toggle {
    margin-left: auto;
  }
  .site-header .wordmark > img {
    width: 174px;
  }
  .site-header .wordmark > span {
    margin-left: 34px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .button:hover {
    transform: none;
  }
}

@media (pointer: coarse) {
  .text-link,
  .footer nav a,
  .footer .wordmark,
  .faq-list a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
  }
}
