@font-face {
  font-family: "Source Sans 3";
  src: url("fonts/source-sans-3-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
}
:root {
  color-scheme: light;
  --paper: #f4f5f2;
  --white: #fff;
  --ink: #222824;
  --muted: #5b655e;
  --green: #38634d;
  --lime: #def1a3;
  --rust: #9a442e;
  --line: #cdd3cc;
  --dark: #252b28;
  --display: "Source Sans 3", "Helvetica Neue", sans-serif;
  --body: "Source Sans 3", "Helvetica Neue", sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --gutter: 48px;
  --column-gap: 70px;
}
* {
  box-sizing: border-box;
}
[hidden] {
  display: none !important;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 19px;
  line-height: 1.55;
  letter-spacing: 0;
}
h1,
h2,
h3,
p,
figure,
dl,
dd {
  margin: 0;
}
::selection {
  background: var(--lime);
  color: var(--ink);
}
a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}
a:hover {
  text-decoration-color: var(--green);
}
a,
summary {
  -webkit-tap-highlight-color: transparent;
}
:focus-visible {
  outline: 3px solid var(--rust);
  outline-offset: 6px;
}
img {
  display: block;
  width: 100%;
  height: auto;
}
h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 500;
  line-height: 1.13;
  text-wrap: balance;
  overflow-wrap: break-word;
}
h2 {
  font-size: 46px;
}
h3 {
  font-size: 25px;
}
p + p {
  margin-top: 16px;
}
.container {
  width: min(100% - var(--gutter) * 2, 1240px);
  margin-inline: auto;
}
.section {
  padding-block: 100px;
}
.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.6;
  font-weight: 400;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  padding-block: 8px;
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}
.text-link > span,
.header-contact > span,
.archive-slide figcaption a > span,
.large-arrow,
.email-link > span,
.social-links a > span,
.back-top > span {
  display: inline-block;
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  background: currentColor;
  mask: url("images/arrow-right.svg") center / contain no-repeat;
  transform: rotate(-45deg);
  font-size: 0;
  line-height: 0;
}
.text-link:hover {
  color: var(--green);
}
.skip-link {
  position: fixed;
  top: 10px;
  left: 16px;
  z-index: 10;
  padding: 10px 20px;
  background: var(--white);
  transform: translateY(-160%);
}
.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 96px;
}
.wordmark {
  display: block;
  flex: 0 0 auto;
  width: 125px;
  text-decoration: none;
}
.wordmark img {
  width: 100%;
  height: auto;
}
.brand-note {
  padding-left: 22px;
  border-left: 1px solid var(--line);
  font-size: 14px;
  line-height: 1.45;
}
.brand-note span {
  color: var(--muted);
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
}
.main-nav a {
  position: relative;
  padding-block: 14px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
}
.main-nav a::after {
  content: "";
  position: absolute;
  bottom: 7px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}
.main-nav a:hover::after,
.main-nav a[aria-current="location"]::after {
  transform: scaleX(1);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: 12px;
}
.language-switch {
  display: flex;
  align-items: center;
}
.language-switch a {
  padding: 11px 8px;
  font-family: var(--mono);
  font-size: 12px;
  text-decoration: none;
  color: var(--muted);
}
.language-switch a[aria-current="page"] {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-thickness: 2px;
}
.language-switch a:hover {
  color: var(--green);
}
.header-contact {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 9px 14px;
  border: 1px solid var(--ink);
  text-decoration: none;
  font-size: 15px;
}
.header-contact:hover {
  background: var(--ink);
  color: var(--white);
}

.intro {
  padding-top: 50px;
}
.intro > .eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--green);
}
.small-rule {
  display: inline-block;
  width: 28px;
  height: 2px;
  background: currentColor;
}
.intro-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--column-gap);
  align-items: start;
  padding-block: 30px 48px;
}
.intro h1 {
  font-size: 88px;
  line-height: 1.03;
}
.intro h1 > span {
  color: var(--green);
}
.intro-copy {
  max-width: 450px;
}
.intro-copy .lead {
  margin-bottom: 22px;
  font-family: var(--display);
  font-size: 27px;
  line-height: 1.35;
}
.intro-copy > p:not(.lead) {
  color: var(--muted);
  font-size: 18px;
}
.intro-copy .text-link {
  margin-top: 18px;
}
.intro-links {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px 24px;
}
.intro-prices {
  font-size: 15px;
}
.intro-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-block: 16px;
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
}
.archive-banner {
  position: relative;
  background: var(--dark);
  color: var(--paper);
}
.archive-track:focus-visible {
  outline-color: var(--lime);
  outline-offset: -3px;
}
.archive-track {
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
  touch-action: pan-y;
  cursor: grab;
  user-select: none;
}
.archive-track.is-dragging {
  cursor: grabbing;
}
.archive-track img {
  -webkit-user-drag: none;
}
.archive-slide {
  position: relative;
  grid-area: 1 / 1;
  visibility: hidden;
}
.archive-slide:first-child {
  visibility: visible;
}
.archive-banner.is-enhanced .archive-slide {
  visibility: visible;
  opacity: 0;
  pointer-events: none;
}
.archive-banner.is-enhanced .archive-slide.is-current {
  z-index: 1;
  opacity: 1;
  pointer-events: auto;
}
.archive-slide > img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: min(420px, 42svh);
  margin-inline: auto;
  aspect-ratio: 1280 / 550;
  object-fit: contain;
}
.archive-slide figcaption {
  position: absolute;
  inset: auto 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  min-height: 64px;
  padding: 24px max(var(--gutter), calc((100% - 1240px) / 2)) 12px;
  background: linear-gradient(transparent, rgb(0 0 0 / 72%));
  font-size: 16px;
  text-shadow: 0 1px 3px rgb(0 0 0 / 80%);
}
.archive-slide figcaption a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  font-size: 13px;
  text-decoration: none;
}
.archive-slide figcaption a:hover {
  text-decoration: underline;
}
.archive-slide figcaption a > span {
  width: 16px;
  height: 16px;
}
.archive-note,
.archive-toolbar h2 {
  display: none;
}
.archive-toolbar {
  position: absolute;
  z-index: 2;
  inset-inline: 0;
  bottom: 4px;
  width: max-content;
  margin-inline: auto;
  display: flex;
  align-items: center;
  transition: opacity 180ms ease;
}
.archive-controls {
  display: flex;
  align-items: center;
  gap: 14px;
  height: 44px;
  color: var(--white);
  text-shadow: 0 1px 3px rgb(0 0 0 / 90%);
}
.archive-selectors,
.archive-arrows {
  display: flex;
  align-items: center;
  height: 100%;
}
.archive-selector {
  display: grid;
  place-items: center;
  width: 28px;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: #bfc8c1;
  cursor: pointer;
}
.archive-selector::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: 1px solid currentColor;
}
.archive-selector[aria-current="true"] {
  color: var(--lime);
}
.archive-selector[aria-current="true"]::before {
  background: currentColor;
}
.archive-selector:hover {
  color: var(--white);
}
.archive-count {
  display: grid;
  place-items: center;
  align-self: stretch;
  min-width: 55px;
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.archive-arrows {
  gap: 8px;
}
.archive-arrow {
  display: grid;
  place-items: center;
  width: 34px;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  filter: invert(1) drop-shadow(0 1px 2px rgb(0 0 0 / 90%));
}
.archive-arrow:hover {
  opacity: 0.7;
}
.archive-arrow img {
  width: 20px;
  height: 20px;
}
.archive-banner :focus-visible {
  outline-color: var(--lime);
}
.proof-strip {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: auto auto;
  padding-block: 35px;
}
.proof-grid > div {
  display: grid;
  grid-row: span 2;
  grid-template-rows: subgrid;
  padding-inline: 35px;
  border-left: 1px solid var(--line);
}
.proof-grid > div:first-child {
  padding-left: 0;
  border: 0;
}
.proof-grid dt {
  font-family: var(--display);
  font-size: 33px;
  font-weight: 500;
}
.proof-grid dd {
  color: var(--muted);
  font-size: 16px;
}

.section-heading {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 20px var(--column-gap);
  margin-bottom: 48px;
}
.section-heading > .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 10px;
  color: var(--green);
}
.section-intro {
  max-width: 450px;
  color: var(--muted);
}
.capability-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 var(--column-gap);
}
.capability {
  padding-block: 30px 35px;
  border-top: 1px solid var(--line);
}
.capability h3 {
  margin-bottom: 17px;
}
.capability p {
  color: var(--muted);
}
.tech-line {
  margin-top: 22px;
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1.8;
}
.principle {
  padding-block: 25px;
  border-block: 1px solid var(--line);
}
.principle p {
  font-family: var(--display);
  font-size: 20px;
}

.ai-band {
  background: var(--white);
  border-top: 1px solid var(--line);
}
.ai-band .capability {
  padding-bottom: 0;
}
.lab-topics .text-link {
  margin-top: 18px;
}

.projects-band {
  background: var(--dark);
  color: var(--paper);
}
.projects-band .section-heading > .eyebrow,
.projects-band .project-category {
  color: var(--lime);
}
.projects-band .section-intro {
  color: #bfc8c1;
}
.project {
  display: grid;
  grid-template-columns: minmax(0, 0.65fr) minmax(0, 1.8fr);
  gap: 75px;
  padding-block: 44px;
  border-top: 1px solid #515b53;
}
.project-meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.project-meta .eyebrow {
  font-size: 14px;
}
.project-meta > span:last-child {
  font-family: var(--mono);
  font-size: 12px;
  color: #bfc8c1;
}
.project-category {
  margin: 0 0 16px;
  font-family: var(--mono);
  font-size: 11px;
}
.project-main {
  max-width: 720px;
  min-width: 0;
}
.project h3 {
  font-size: 32px;
  margin-bottom: 22px;
}
.project-featured h3 {
  font-size: 46px;
}
.project-main > p:not(.project-category) {
  color: #d0d6d1;
}
.project-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  margin-top: 28px;
}
.project-facts > span {
  font-size: 15px;
  color: #bfc8c1;
}
.project-facts strong {
  display: block;
  font-family: var(--display);
  font-size: 32px;
  font-weight: 500;
  color: var(--lime);
}
details {
  margin-top: 25px;
}
summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 15px;
  border-block: 1px solid #515b53;
  font-size: 16px;
  cursor: pointer;
  list-style: none;
}
summary::-webkit-details-marker {
  display: none;
}
summary:hover {
  color: var(--lime);
}
.details-symbol {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  position: relative;
}
.details-symbol::before,
.details-symbol::after {
  content: "";
  position: absolute;
  background: currentColor;
}
.details-symbol::before {
  width: 12px;
  height: 1px;
  top: 9px;
  left: 4px;
}
.details-symbol::after {
  height: 12px;
  width: 1px;
  top: 4px;
  left: 9px;
}
details[open] .details-symbol::after {
  display: none;
}
.details-body {
  padding: 22px 0 2px;
  color: #d0d6d1;
  font-size: 17px;
}
.project-footnote {
  padding-top: 25px;
  border-top: 1px solid #515b53;
  color: #bfc8c1;
  font-size: 15px;
}
.projects-band :focus-visible {
  outline-color: var(--lime);
}

.lab-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--column-gap);
  align-items: start;
}
.drone-photo a {
  display: block;
}
.drone-photo img {
  aspect-ratio: 750 / 499;
  object-fit: contain;
  background: #b6bdc1;
}
.drone-photo figcaption {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding-top: 14px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
}
.lab-topics article + article {
  padding-top: 32px;
  margin-top: 32px;
  border-top: 1px solid var(--line);
}
.lab-topics .eyebrow {
  color: var(--rust);
  margin-bottom: 13px;
}
.lab-topics h3 {
  margin-bottom: 18px;
}
.lab-topics p:not(.eyebrow) {
  color: var(--muted);
}
.infrastructure {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--column-gap);
  padding-block: 44px;
  margin-top: 55px;
  border-block: 1px solid var(--line);
}
.infrastructure h3 {
  margin: 14px 0 20px;
  font-size: 30px;
}
.infrastructure p:not(.eyebrow) {
  max-width: 500px;
  color: var(--muted);
}
.spec-list {
  align-self: center;
  font-family: var(--mono);
  font-size: 12px;
}
.spec-list > div {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 20px;
  padding-block: 14px;
  border-bottom: 1px solid var(--line);
}
.spec-list > div:first-child {
  border-top: 1px solid var(--line);
}
.spec-list dt {
  color: var(--muted);
}
.spec-list dd {
  font-weight: 500;
  overflow-wrap: break-word;
}
.opensource-link {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
  padding-block: 27px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}
.opensource-link > span:first-child {
  display: grid;
  gap: 5px;
}
.opensource-link .eyebrow {
  color: var(--green);
  margin-bottom: 5px;
}
.opensource-link strong {
  font-family: var(--display);
  font-size: 21px;
  font-weight: 500;
}
.opensource-link strong + span {
  color: var(--muted);
  font-size: 16px;
}
.large-arrow {
  width: 32px;
  height: 32px;
  color: var(--green);
}
.opensource-link:hover strong {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.about-band {
  background: #e4e9e2;
  background-image: linear-gradient(
    90deg,
    transparent calc(50% - 0.5px),
    #d2dacf 50%,
    transparent calc(50% + 0.5px)
  );
  border-block: 1px solid var(--line);
}
.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 30px var(--column-gap);
}
.about-layout > .eyebrow {
  grid-column: 1 / -1;
  color: var(--green);
}
.about-subtitle {
  font-family: var(--display);
  font-size: 22px;
  line-height: 1.5;
  margin-top: 25px;
}
.about-layout .text-link {
  margin-top: 28px;
}
.about-copy > p {
  color: #465148;
}
.about-copy > p:first-child {
  font-size: 23px;
  line-height: 1.45;
  color: var(--ink);
}
.team-title {
  margin: 30px 0 16px;
}
.about-facts {
  font-size: 15px;
  margin-top: 30px;
}
.about-facts > div {
  display: grid;
  grid-template-columns: 95px minmax(0, 1fr);
  gap: 15px;
  border-top: 1px solid #bdc8ba;
  padding-block: 12px;
}
.about-facts dt {
  color: var(--muted);
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}
.pricing-table caption {
  text-align: left;
  padding-bottom: 16px;
  color: var(--muted);
  font-size: 16px;
}
.pricing-table th,
.pricing-table td {
  padding: 21px 0;
  border-bottom: 1px solid var(--line);
}
.pricing-table thead th {
  padding-top: 0;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 400;
  color: var(--muted);
}
.pricing-table tbody th {
  font-weight: 600;
  padding-right: 28px;
}
.pricing-table tbody th span {
  display: block;
  font-size: 15px;
  font-weight: 400;
  color: var(--muted);
}
.pricing-table td,
.pricing-table thead th:last-child {
  text-align: right;
  white-space: nowrap;
}
.pricing-table td {
  font-family: var(--display);
  font-size: 24px;
  font-variant-numeric: tabular-nums;
}
.pricing-followup {
  display: flex;
  align-items: start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px 48px;
  padding-top: 30px;
}
.pricing-followup > div {
  max-width: 580px;
}
.pricing-followup p {
  max-width: 580px;
  color: var(--muted);
}
.contact-section {
  padding-block: 90px;
  border-top: 1px solid var(--line);
}
.contact-section > .eyebrow {
  color: var(--rust);
  margin-bottom: 30px;
}
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--column-gap);
}
.contact-layout h2 {
  font-size: 55px;
}
.contact-layout p {
  margin-top: 24px;
  max-width: 440px;
  color: var(--muted);
}
.contact-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.email-link {
  font-family: var(--display);
  font-size: 36px;
  display: flex;
  align-items: center;
  gap: 35px;
  border-bottom: 1px solid var(--ink);
  text-decoration: none;
  padding-block: 12px;
}
.email-link:hover {
  color: var(--green);
}
.phone-link {
  margin-top: 20px;
  text-decoration: none;
  font-size: 23px;
}
.social-links {
  display: flex;
  gap: 28px;
  margin-top: 30px;
  font-size: 16px;
}
.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.social-links a:hover,
.phone-link:hover {
  text-decoration: underline;
}
.social-links a > span {
  width: 16px;
  height: 16px;
}
.site-footer {
  border-top: 1px solid var(--line);
}
.footer-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  padding-block: 34px;
}
.site-footer .wordmark {
  width: 105px;
}
.site-footer p {
  font-size: 13px;
  color: var(--muted);
}
.site-footer .footer-note {
  margin: 0 0 0 auto;
  color: var(--ink);
}
.footer-note span {
  color: var(--muted);
}
.back-top {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  text-decoration: none;
}
.back-top > span {
  width: 16px;
  height: 16px;
  transform: rotate(-90deg);
}

@media (prefers-reduced-motion: no-preference) {
  @keyframes arrive {
    from {
      opacity: 0;
      transform: translateY(12px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .intro h1 {
    animation: arrive 550ms ease both;
  }
  .intro-copy {
    animation: arrive 550ms 90ms ease both;
  }
}
@media (min-width: 1600px) {
  .intro {
    padding-top: 60px;
  }
  .intro-layout {
    padding-bottom: 60px;
  }
  .intro h1 {
    font-size: 96px;
  }
}
@media (max-width: 1199px) {
  :root {
    --gutter: 32px;
    --column-gap: 40px;
  }
  .brand-note {
    display: none;
  }
  .header-inner {
    min-height: 84px;
  }
  .main-nav {
    gap: 24px;
  }
  .intro h1 {
    font-size: 76px;
  }
  .email-link {
    font-size: 31px;
    gap: 20px;
  }
}
@media (max-width: 899px) {
  :root {
    --column-gap: 35px;
  }
  html {
    scroll-padding-top: 135px;
  }
  .header-inner {
    flex-wrap: wrap;
    gap: 0;
    padding-top: 15px;
  }
  .wordmark {
    width: 96px;
  }
  .header-actions {
    margin-left: auto;
  }
  .main-nav {
    order: 3;
    flex: 0 0 100%;
    justify-content: space-between;
    margin-top: 5px;
    gap: 18px;
  }
  .main-nav a {
    padding-block: 12px;
  }
  .intro {
    padding-top: 32px;
  }
  .intro h1 {
    font-size: 52px;
  }
  .intro-layout {
    padding-top: 28px;
  }
  .intro-copy .lead {
    font-size: 22px;
  }
  .intro-copy > p:not(.lead) {
    font-size: 16px;
  }
  .intro-footer {
    font-size: 10px;
  }
  .archive-toolbar {
    bottom: 64px;
  }
  .archive-banner.controls-idle .archive-toolbar {
    opacity: 0;
    pointer-events: none;
  }
  .archive-banner.controls-idle .archive-toolbar:has(:focus-visible) {
    opacity: 1;
    pointer-events: auto;
  }
  .proof-grid > div {
    padding-inline: 22px;
  }
  .proof-grid dt {
    font-size: 25px;
  }
  .proof-grid dd {
    font-size: 14px;
  }
  .section {
    padding-block: 72px;
  }
  h2 {
    font-size: 36px;
  }
  .section-intro {
    font-size: 17px;
  }
  .capability h3 {
    font-size: 23px;
  }
  .capability p {
    font-size: 17px;
  }
  .capability .tech-line {
    font-size: 11px;
  }
  .project {
    grid-template-columns: 1fr 2.5fr;
    gap: 35px;
  }
  .project h3 {
    font-size: 29px;
  }
  .project-featured h3 {
    font-size: 36px;
  }
  .project-meta .eyebrow {
    font-size: 12px;
  }
  .lab-topics {
    font-size: 17px;
  }
  .drone-photo figcaption {
    flex-direction: column;
    gap: 4px;
  }
  .infrastructure {
    font-size: 17px;
  }
  .spec-list > div {
    grid-template-columns: 65px 1fr;
    gap: 10px;
  }
  .about-copy {
    font-size: 17px;
  }
  .about-copy > p:first-child {
    font-size: 20px;
  }
  .contact-layout h2 {
    font-size: 42px;
  }
  .email-link {
    font-size: 25px;
    gap: 12px;
  }
  .footer-inner {
    gap: 25px;
  }
}
@media (max-width: 639px) {
  :root {
    --gutter: 22px;
  }
  body {
    font-size: 18px;
  }
  .header-inner {
    padding-top: 12px;
  }
  .header-actions {
    gap: 15px;
  }
  .header-contact {
    padding: 7px 11px;
    gap: 13px;
    font-size: 14px;
  }
  .language-switch a {
    padding-inline: 7px;
  }
  .main-nav {
    gap: 10px;
  }
  .main-nav a {
    font-size: 13px;
  }
  .intro {
    padding-top: 28px;
  }
  .intro > .eyebrow {
    font-size: 10px;
  }
  .intro-layout {
    grid-template-columns: 1fr;
    gap: 26px;
    padding-block: 25px 28px;
  }
  .intro h1 {
    font-size: 56px;
  }
  .intro-copy {
    max-width: none;
    margin-left: 0;
  }
  .intro-copy .lead {
    font-size: 21px;
    margin-bottom: 14px;
  }
  .intro-copy .text-link {
    margin-top: 14px;
    font-size: 15px;
    padding-block: 6px;
  }
  .intro-copy > p:not(.lead) {
    max-width: 420px;
  }
  .intro-footer {
    font-size: 10px;
    padding-block: 12px;
  }
  .intro-footer > span:last-child {
    max-width: 190px;
    text-align: right;
  }
  .archive-slide figcaption {
    min-height: 58px;
    gap: 18px;
    padding: 22px var(--gutter) 9px;
    font-size: 14px;
  }
  .archive-slide figcaption a {
    flex-shrink: 1;
    font-size: 11px;
    text-align: right;
  }
  .archive-slide figcaption > span:first-child {
    max-width: 60%;
  }
  .archive-toolbar {
    bottom: 58px;
  }
  .archive-controls {
    gap: 5px;
    height: 36px;
  }
  .archive-selector {
    width: 20px;
    height: 36px;
  }
  .archive-count {
    min-width: 46px;
    font-size: 10px;
  }
  .archive-arrow {
    width: 32px;
  }
  .proof-grid {
    padding-block: 24px;
    column-gap: 14px;
  }
  .proof-grid > div {
    padding-inline: 13px 0;
  }
  .proof-grid dt {
    font-size: 19px;
    line-height: 1.25;
    margin-bottom: 7px;
  }
  .proof-grid dd {
    font-size: 12px;
    line-height: 1.4;
  }
  .section {
    padding-block: 58px;
  }
  .section-heading {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 30px;
  }
  .section-heading > .eyebrow {
    margin-bottom: 0;
  }
  h2 {
    font-size: 33px;
  }
  .section-intro {
    max-width: 480px;
  }
  .capability-grid {
    grid-template-columns: 1fr;
  }
  .capability {
    padding-block: 26px;
  }
  .ai-band .capability + .capability {
    margin-top: 26px;
  }
  .capability h3 {
    font-size: 22px;
  }
  .capability .tech-line {
    margin-top: 14px;
  }
  .principle p {
    font-size: 18px;
  }
  .project {
    grid-template-columns: 1fr;
    gap: 25px;
    padding-block: 30px;
  }
  .project-meta {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .project-category {
    font-size: 10px;
  }
  .project h3 {
    font-size: 28px;
  }
  .project-featured h3 {
    font-size: 34px;
  }
  .project-facts {
    gap: 40px;
  }
  .project-facts strong {
    font-size: 30px;
  }
  .lab-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .drone-photo figcaption {
    flex-direction: row;
  }
  .lab-topics h3 {
    font-size: 24px;
  }
  .infrastructure {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 35px;
    padding-block: 30px;
  }
  .infrastructure h3 {
    font-size: 28px;
  }
  .spec-list > div {
    grid-template-columns: 75px 1fr;
  }
  .opensource-link {
    gap: 20px;
  }
  .opensource-link strong {
    font-size: 20px;
  }
  .opensource-link .eyebrow {
    font-size: 10px;
  }
  .large-arrow {
    width: 26px;
    height: 26px;
  }
  .about-band {
    background-image: none;
  }
  .about-layout {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .about-copy {
    margin-top: 13px;
  }
  .about-subtitle {
    font-size: 21px;
    margin-top: 20px;
  }
  .about-layout .text-link {
    margin-top: 20px;
  }
  .about-copy {
    font-size: 18px;
  }
  .contact-section {
    padding-block: 58px;
  }
  .pricing-table {
    font-size: 16px;
  }
  .pricing-table tbody th {
    padding-right: 16px;
  }
  .pricing-table tbody th span {
    font-size: 13px;
  }
  .pricing-table td {
    font-size: 18px;
  }
  .pricing-table caption {
    font-size: 14px;
  }
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .contact-layout h2 {
    font-size: 40px;
  }
  .email-link {
    font-size: 30px;
    gap: 28px;
  }
  .phone-link {
    font-size: 21px;
  }
  .footer-inner {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 22px;
    padding-block: 25px;
  }
  .site-footer p {
    font-size: 11px;
  }
  .site-footer .footer-note {
    margin-left: 0;
  }
  .back-top {
    justify-self: end;
  }
}
@media (max-width: 374px) {
  :root {
    --gutter: 16px;
  }
  .intro h1 {
    font-size: 47px;
  }
  .intro-copy .lead {
    font-size: 19px;
  }
  .main-nav a {
    font-size: 12px;
  }
  .header-actions {
    gap: 10px;
  }
  .archive-controls {
    gap: 4px;
  }
  .proof-grid dt {
    font-size: 17px;
  }
  .email-link {
    font-size: 27px;
  }
  .section-heading h2 {
    font-size: 29px;
  }
}
@media (max-width: 639px) and (max-height: 700px) {
  .intro {
    padding-top: 6px;
  }
  .intro-layout {
    padding-block: 12px;
    gap: 14px;
  }
  .intro-copy .lead {
    font-size: 19px;
    margin-bottom: 10px;
  }
  .intro-copy .lead br {
    display: none;
  }
  .intro-footer {
    padding-block: 10px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
@media print {
  html {
    scroll-padding-top: 0;
  }
  body {
    font-size: 11pt;
    background: white;
    color: black;
  }
  .container {
    width: 100%;
  }
  .site-header {
    position: static;
  }
  .main-nav,
  .header-actions,
  .back-top,
  .skip-link {
    display: none;
  }
  .section,
  .contact-section {
    padding-block: 25px;
  }
  .intro h1 {
    font-size: 45pt;
  }
  .archive-track {
    display: block;
    overflow: visible;
  }
  .archive-slide:not(:first-child),
  .archive-toolbar {
    display: none;
  }
  .archive-banner.is-enhanced .archive-slide:first-child {
    opacity: 1 !important;
    transform: none !important;
  }
  .archive-slide > img {
    max-height: 220px;
    object-fit: contain;
  }
  .projects-band,
  .about-band {
    background: white;
    color: black;
  }
  .projects-band p,
  .project-meta > span:last-child,
  .project-facts strong,
  .project-facts > span {
    color: black !important;
  }
  .project,
  .capability,
  .infrastructure,
  .about-facts {
    break-inside: avoid;
  }
  .project {
    gap: 25px;
    padding-block: 25px;
  }
  details:not([open]) > .details-body {
    display: block;
  }
  .details-symbol {
    display: none;
  }
  .lab-layout,
  .about-layout,
  .contact-layout {
    gap: 30px;
  }
}
