:root {
  --bg-dark: #061c2b;
  --bg-darker: #04131f;
  --surface-dark: rgba(255, 255, 255, 0.04);
  --bg-light: #e7e7e7;
  --surface-light: #f6f7f8;
  --text-dark: #1a1a1a;
  --text-light: #f3f6f8;
  --muted-light: rgba(243, 246, 248, 0.72);
  --muted-dark: rgba(26, 26, 26, 0.68);
  --border-dark: rgba(255, 255, 255, 0.14);
  --border-light: rgba(6, 28, 43, 0.14);
  --accent: #2f84a7;
  --accent-bright: #2fa6d7;
  --shadow-soft: 0 22px 60px rgba(1, 10, 18, 0.18);
  --radius-sm: 1rem;
  --radius-md: 1.5rem;
  --radius-lg: 2rem;
  --radius-xl: 2.75rem;
  --shell: min(1180px, calc(100vw - 3rem));
  --shell-wide: min(1320px, calc(100vw - 3rem));
  --section-space: clamp(5rem, 8vw, 8rem);
  --tracking: 0.08em;
  --header-height: 5.5rem;
  --transition: 220ms ease;
  --type-button-size: 0.94rem;
  --type-button-compact-size: 0.84rem;
  --type-button-line: 1.1;
  --type-button-weight: 700;
  --type-button-track: -0.01em;
  --type-card-title-size: clamp(1.52rem, 2vw, 1.98rem);
  --type-card-title-line: 1.04;
  --type-panel-title-size: clamp(1.12rem, 1.55vw, 1.32rem);
  --type-panel-title-line: 1.06;
  --type-page-title-size: clamp(3.15rem, 5vw, 4.85rem);
  --type-page-title-line: 0.96;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  color: var(--text-dark);
  background: var(--bg-light);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

[hidden],
[data-private-section],
[data-private-link] {
  display: none !important;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  transform: translateY(-200%);
  padding: 0.85rem 1rem;
  background: #fff;
  color: var(--text-dark);
  z-index: 1000;
  border-radius: 999px;
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: var(--shell);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(5, 5, 5, 0.94);
  border-bottom: 1px solid transparent;
  transition: background var(--transition), border-color var(--transition);
}

.site-header.is-scrolled {
  border-color: var(--border-dark);
  background: rgba(5, 5, 5, 0.98);
}

.site-header__inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand,
.footer-wordmark {
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--text-light);
}

.brand__logo {
  display: block;
  width: auto;
  height: clamp(1rem, 1.25vw, 1.18rem);
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.site-nav a {
  color: rgba(243, 246, 248, 0.84);
  font-size: 0.95rem;
  transition: color var(--transition);
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: #fff;
}

.nav-toggle {
  display: none;
  border: 0;
  border-radius: 0;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-light);
}

.nav-toggle__lines {
  display: grid;
  gap: 0.26rem;
}

.nav-toggle__lines span {
  display: block;
  width: 1.05rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform var(--transition), opacity var(--transition);
}

.hero,
.subpage-hero {
  position: relative;
  overflow: clip;
}

[id] {
  scroll-margin-top: calc(var(--header-height) + 1rem);
}

.hero--home {
  background:
    radial-gradient(circle at 84% 22%, rgba(47, 166, 215, 0.42), transparent 22%),
    linear-gradient(180deg, #061c2b 0%, #08283c 100%);
  color: var(--text-light);
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
}

.hero__grid,
.subpage-hero__grid,
.intro-grid,
.split-panel,
.technology-grid,
.about-band,
.contact-grid,
.news-grid {
  display: grid;
  gap: clamp(2rem, 5vw, 5rem);
}

.hero__grid {
  width: var(--shell-wide);
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  padding: 4rem 0 5rem;
}

.hero__content h1,
.subpage-hero h1 {
  margin: 0;
  max-width: 11ch;
  font-size: clamp(3.5rem, 8vw, 6.6rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
}

.hero__actions,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero__actions {
  margin-top: 2rem;
}

.hero__media {
  position: relative;
  justify-self: end;
  max-width: 42rem;
}

.hero__media img,
.technology-media img,
.about-band__media img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
}

.section {
  padding: var(--section-space) 0;
}

.section--dark,
.section--partners,
.subpage-hero--dark {
  background: #050505;
  color: var(--text-light);
}

.section--light,
.section--cta,
.subpage-body {
  background: var(--bg-light);
}

.section--technology {
  background:
    radial-gradient(circle at left bottom, rgba(47, 166, 215, 0.22), transparent 30%),
    linear-gradient(180deg, #02070b 0%, #041520 100%);
}

.section--about-band {
  background: linear-gradient(180deg, #eef0f1 0%, #e7e7e7 100%);
}

.section--news {
  background: #f3f3f1;
  color: var(--text-dark);
}

.section-label,
.eyebrow {
  margin: 0 0 1.2rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: var(--tracking);
  text-transform: uppercase;
}

.eyebrow {
  color: rgba(243, 246, 248, 0.76);
}

h2 {
  margin: 0;
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

h3 {
  margin: 0;
  font-size: clamp(1.15rem, 2vw, 1.6rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

p {
  margin: 0;
}

.copy-stack,
.news-list,
.contact-meta {
  display: grid;
  gap: 1.25rem;
}

.copy-stack {
  gap: var(--copy-stack-gap);
}

.intro-grid,
.split-panel,
.contact-grid,
.news-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.technology-grid,
.about-band {
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  align-items: center;
}

.copy-stack p,
.news-item p {
  color: inherit;
  opacity: 0.82;
}

.section-heading {
  max-width: 48rem;
  display: grid;
  gap: 1rem;
  margin-bottom: 3rem;
}

.section-heading--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.application-card {
  position: relative;
  min-height: 0;
  overflow: hidden;
  border-radius: 10px;
  background: #101010;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
  isolation: isolate;
}

.application-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 34%, rgba(0, 0, 0, 0.72) 100%);
}

.application-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate3d(0, var(--application-image-offset, 0px), 0) scale(1.045);
  transition:
    transform 700ms cubic-bezier(0.19, 1, 0.22, 1),
    filter 700ms cubic-bezier(0.19, 1, 0.22, 1);
  will-change: transform;
}

.application-card:hover img {
  transform: translate3d(0, calc(var(--application-image-offset, 0px) * 0.45), 0) scale(1.085);
}

.application-card__overlay {
  position: absolute;
  inset: auto 1.2rem 1.1rem 1.2rem;
  z-index: 1;
  transform: translate3d(0, 0, 0);
  transition:
    opacity 520ms ease,
    transform 520ms cubic-bezier(0.19, 1, 0.22, 1);
}

.application-card h2,
.application-card h3 {
  color: #fff;
  font-family: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  font-size: clamp(0.72rem, 0.9vw, 0.84rem);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  text-wrap: pretty;
}

.application-layout {
  display: grid;
  gap: 1.15rem;
}

.application-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem;
}

.application-stack {
  display: grid;
  gap: 1.15rem;
}

.application-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem;
}

.application-card--hero-left,
.application-card--hero-right {
  aspect-ratio: 568 / 616;
}

.application-card--wide-top,
.application-card--wide-bottom {
  aspect-ratio: 568 / 300;
}

.application-card--small {
  aspect-ratio: 274 / 298;
}

body.js-ready .applications-showcase .application-card {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
  transition:
    opacity 760ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 1180ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 300ms ease;
  transition-delay: calc(var(--application-card-index, 0) * 58ms);
  will-change: transform;
}

body.js-ready .applications-showcase .application-card.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

body.js-ready .team-section .team-member {
  opacity: 0;
  transform:
    translate3d(
      var(--team-enter-x, 0),
      var(--team-enter-y, 1.6rem),
      0
    )
    scale(0.984);
  filter: blur(10px);
  transition:
    opacity 860ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 1080ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 860ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 300ms ease;
  transition-delay: calc(var(--team-card-index, 0) * 90ms);
  will-change: opacity, transform, filter;
}

body.js-ready .team-section .team-member.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

@media (min-width: 1081px) {
  .applications-showcase.is-application-motion-ready {
    overflow: clip;
  }

  body.js-ready .applications-showcase.is-application-motion-ready .application-card {
    opacity: 0.93;
    transform:
      translate3d(
        var(--application-assemble-x, 0px),
        0,
        0
      )
      scale(0.992);
  }

  body.js-ready .applications-showcase.is-application-motion-ready.is-assembled .application-card {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    transition:
      opacity 920ms cubic-bezier(0.16, 1, 0.3, 1),
      transform 1560ms cubic-bezier(0.16, 1, 0.3, 1),
      box-shadow 300ms ease;
  }
}

.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 700;
}

.button {
  min-height: 3.35rem;
  padding: 0.85rem 1.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  border: 1px solid transparent;
  line-height: 1;
  text-align: center;
  transition: transform var(--transition), background var(--transition), border-color var(--transition);
}

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

.button--primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-bright) 100%);
  color: white;
}

.button--secondary {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-light);
}

.section--light .button--secondary,
.section--about-band .button--secondary,
.subpage-body .button--secondary {
  background: rgba(6, 28, 43, 0.04);
  color: var(--text-dark);
  border-color: rgba(6, 28, 43, 0.12);
}

.button--full {
  width: 100%;
}

.cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: clamp(2rem, 4vw, 3rem);
  background: linear-gradient(135deg, rgba(6, 28, 43, 0.96), rgba(47, 132, 167, 0.86));
  color: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.benchmark-heading {
  max-width: 70rem;
  margin-bottom: 3.5rem;
}

.benchmark-heading h2 {
  max-width: 17ch;
  margin-inline: auto;
  text-wrap: balance;
}

.benchmark-heading p:last-child {
  max-width: 52rem;
  margin: 0 auto;
  color: rgba(243, 246, 248, 0.9);
  font-size: var(--type-body-size);
  line-height: var(--type-body-line);
}

.benchmark-table {
  display: grid;
  grid-template-columns: 1.18fr 1.18fr 1.08fr 1.1fr;
  align-items: stretch;
  border-top: 1px solid rgba(255, 255, 255, 0.88);
}

.benchmark-table__head,
.benchmark-table__label,
.benchmark-table__cell {
  padding: 1.3rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.88);
}

.benchmark-table__head {
  display: flex;
  align-items: end;
  min-height: 7.75rem;
  font-size: clamp(0.84rem, 1vw, 0.94rem);
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: -0.02em;
}

.benchmark-table__label {
  font-size: clamp(0.84rem, 0.98vw, 0.93rem);
  font-weight: 600;
  line-height: 1.16;
  letter-spacing: -0.01em;
}

.benchmark-table__cell {
  color: rgba(243, 246, 248, 0.88);
  font-size: clamp(0.82rem, 0.94vw, 0.9rem);
  font-weight: 500;
  line-height: 1.45;
}

.benchmark-table__head--forgen,
.benchmark-table__cell--forgen {
  background: linear-gradient(180deg, #fcfcfb 0%, #f2f2ef 100%);
  color: #111;
}

.benchmark-table__head--forgen {
  border-left: 1px solid rgba(17, 17, 17, 0.14);
  border-top-left-radius: 1.8rem;
  font-size: clamp(0.9rem, 1.08vw, 1rem);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.benchmark-table__cell--forgen {
  border-left: 1px solid rgba(17, 17, 17, 0.14);
  font-weight: 600;
  line-height: 1.38;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.benchmark-table__cell--forgen:last-child {
  border-bottom-left-radius: 1.8rem;
}

.benchmark-table__head:empty {
  padding: 0;
}

.benchmark-mobile {
  display: none;
}

.benchmark-mobile__card {
  display: grid;
  gap: 0.9rem;
  padding: 1.15rem;
  border-radius: 1.3rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.14);
}

.benchmark-mobile__card h3 {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.18;
  color: #f5f7fb;
}

.benchmark-mobile__items {
  display: grid;
  gap: 0.75rem;
}

.benchmark-mobile__item {
  display: grid;
  gap: 0.3rem;
  padding: 0.9rem 0.95rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.benchmark-mobile__label {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(243, 246, 248, 0.58);
}

.benchmark-mobile__item p {
  color: rgba(243, 246, 248, 0.9);
  font-size: 0.86rem;
  font-weight: 500;
  line-height: 1.42;
}

.benchmark-mobile__item--forgen {
  background: linear-gradient(180deg, #f7f7f2 0%, #eceae2 100%);
  border-color: rgba(17, 17, 17, 0.08);
}

.benchmark-mobile__item--forgen .benchmark-mobile__label,
.benchmark-mobile__item--forgen p {
  color: #111;
}

.about-band__media {
  margin: 0;
  justify-self: end;
  width: 100%;
  max-width: 42rem;
  overflow: clip;
}

.section--about-band .about-band {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.75rem, 3vw, 3rem);
  align-items: center;
}

.about-band__copy {
  max-width: none;
  color: var(--text-dark);
}

.section--about-band .section-label {
  color: #2fa6d7;
}

.about-band__copy h2 {
  max-width: 10.5ch;
  margin-top: 0.2rem;
  text-wrap: balance;
}

.about-band__copy p:not(.section-label) {
  max-width: 36ch;
  color: rgba(17, 17, 17, 0.74);
  font-size: var(--type-lede-size);
  line-height: var(--type-lede-line);
}

.about-band__copy p strong {
  color: var(--text-dark);
  font-weight: 800;
}

.about-band__media img {
  width: 100%;
  max-width: none;
  aspect-ratio: 586 / 386;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
  transform: translate3d(0, calc(var(--reveal-parallax-offset, 0px) * -0.72), 0) scale(1.055);
  transition:
    transform 760ms cubic-bezier(0.19, 1, 0.22, 1),
    filter 760ms cubic-bezier(0.19, 1, 0.22, 1);
  will-change: transform;
}

.about-band__media:hover img {
  transform: translate3d(0, calc(var(--reveal-parallax-offset, 0px) * -0.72), 0) scale(1.095);
  filter: saturate(1.08) contrast(1.03);
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.detail-card,
.press-card,
.contact-form,
.news-item {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.detail-card,
.contact-form {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(6, 28, 43, 0.08);
}

.team-section {
  background: #f7f7f5;
}

.team-intro {
  max-width: 34rem;
  margin: 0 auto clamp(4rem, 7vw, 5.5rem);
  text-align: center;
}

.team-intro h2 {
  margin-bottom: 1rem;
}

.team-intro p:last-child {
  max-width: 28rem;
  margin: 0 auto;
}

.team-block + .team-block {
  margin-top: clamp(3.75rem, 7vw, 5.5rem);
}

.team-block__title {
  margin-bottom: 2rem;
  font-size: var(--type-h2-size);
  line-height: var(--type-h2-line);
  letter-spacing: -0.06em;
}

.team-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem 2.2rem;
}

.team-member {
  display: grid;
  gap: 1rem;
}

.team-member__photo {
  aspect-ratio: 1 / 1;
  border-radius: 0;
  background:
    linear-gradient(135deg, rgba(47, 132, 167, 0.18), rgba(26, 26, 26, 0.32)),
    #7e8392;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.team-member__photo span {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.team-member h4 {
  margin: 0;
  font-size: var(--type-card-title-size);
  line-height: var(--type-card-title-line);
  letter-spacing: -0.05em;
}

.team-member p {
  max-width: 24ch;
  font-size: 0.82rem;
  line-height: 1.35;
  text-transform: uppercase;
}

.team-member a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.92rem;
  font-weight: 800;
}

.team-member a span {
  font-size: 1.1rem;
  line-height: 1;
}

.team-backed {
  display: grid;
  gap: 1.75rem;
  margin-top: clamp(4rem, 8vw, 6rem);
  justify-items: center;
  text-align: center;
  max-width: 54rem;
  margin-inline: auto;
}

.team-backed__logos {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  gap: 1.25rem;
  color: rgba(17, 17, 17, 0.48);
}

.backer-wordmark {
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.backer-wordmark--sofinnova {
  font-size: clamp(1.35rem, 2.1vw, 1.9rem);
}

.backer-wordmark--provestis {
  font-size: clamp(1.08rem, 1.7vw, 1.45rem);
}

.backer-wordmark--irdi {
  font-size: clamp(1.16rem, 1.8vw, 1.55rem);
  font-weight: 500;
  letter-spacing: -0.03em;
}

.backer-wordmark--capital {
  font-size: clamp(0.68rem, 0.95vw, 0.82rem);
  letter-spacing: 0.16em;
  line-height: 1.3;
}

.section--dark .detail-card,
.subpage-hero--dark .contact-form,
.section--news .news-item,
.press-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.press-review-panel {
  background: #ffffff;
  padding: clamp(2rem, 4vw, 3.25rem);
  border-radius: 0.6rem;
  box-shadow: 0 8px 24px rgba(17, 17, 17, 0.04);
}

.press-review-panel__header {
  margin-bottom: 2.6rem;
}

.press-review-panel__header .section-label,
.press-review-panel__header h2 {
  color: var(--text-dark);
}

.press-review-panel__header h2 {
  font-size: var(--type-h2-size);
  line-height: var(--type-h2-line);
  letter-spacing: -0.06em;
}

.news-grid {
  grid-template-columns: minmax(0, 7fr) minmax(320px, 5fr);
  align-items: stretch;
  gap: 2.2rem;
}

.press-review-exact {
  max-width: 72rem;
}

.press-card {
  display: flex;
  align-self: stretch;
  overflow: hidden;
  background: #050505;
  min-height: 100%;
  border-radius: 0;
  box-shadow: none;
  position: relative;
}

.press-card__body {
  display: grid;
  align-content: end;
  gap: 1.8rem;
  min-height: 100%;
  width: 100%;
  padding: clamp(2.6rem, 4vw, 3.15rem);
  position: relative;
}

.press-card::before {
  content: "";
  position: absolute;
  inset: auto auto -5rem -5rem;
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12), transparent 70%);
  filter: blur(18px);
  opacity: 0.4;
}

.press-card__body h3 {
  font-size: clamp(2.7rem, 3.6vw, 3.8rem);
  letter-spacing: -0.05em;
}

.press-card__body p {
  color: rgba(243, 246, 248, 0.92);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  max-width: 20ch;
}

.press-articles {
  display: grid;
  gap: 1.6rem;
  margin-top: 0;
}

.press-article {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(220px, 5fr);
  min-height: 25.5rem;
  overflow: hidden;
  background: #050505;
  border-radius: 0;
  box-shadow: none;
  cursor: pointer;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.press-article:hover {
  transform: translateY(-2px);
}

.press-article__copy {
  display: grid;
  align-content: stretch;
  gap: 1.5rem;
  padding: 2rem 2.1rem;
  color: var(--text-light);
}

.press-article__copy--exact {
  min-height: 13.75rem;
}

.press-article__content {
  display: grid;
  gap: 1.2rem;
}

.press-article__meta {
  display: grid;
  gap: 1.8rem;
  align-self: end;
  margin-top: auto;
}

.press-article__meta--exact {
  gap: 0.85rem;
}

.press-article__copy h3 {
  max-width: 13ch;
  font-size: clamp(1.85rem, 2.2vw, 2.5rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.press-article__copy p {
  color: rgba(243, 246, 248, 0.9);
  max-width: 24ch;
  font-size: clamp(1rem, 1.18vw, 1.1rem);
  line-height: 1.34;
}

.press-article__date {
  color: rgba(243, 246, 248, 0.88);
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.press-article__link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  width: fit-content;
  font-size: clamp(1.45rem, 1.95vw, 2rem);
  font-weight: 800;
  cursor: pointer;
}

.press-article__link--exact {
  font-size: 1.05rem;
  gap: 0.55rem;
}

.press-article__link--exact svg {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.press-article__media {
  min-height: 100%;
  margin: 0;
  overflow: hidden;
}

.press-article__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.press-article:hover .press-article__media img {
  transform: scale(1.05);
}

.press-card__button {
  min-height: 4.25rem;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.92);
  background: transparent;
  color: #fff;
  transition: background var(--transition), color var(--transition);
  cursor: pointer;
}

.press-card__button:hover {
  background: #fff;
  color: #111;
}

.press-card__button svg {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-meta {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.contact-form {
  display: grid;
  gap: 1.2rem;
}

.partner-marquee {
  position: relative;
  width: min(1180px, calc(100vw - 4rem));
  margin: 0 auto;
  padding: 1.6rem 0;
  overflow: hidden;
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.partner-marquee::before,
.partner-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(3rem, 8vw, 8rem);
  z-index: 2;
  pointer-events: none;
}

.partner-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0) 100%);
}

.partner-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #000 0%, rgba(0, 0, 0, 0) 100%);
}

.partner-marquee__track {
  display: flex;
  width: max-content;
  animation: partnerMarquee 28s linear infinite;
}

@media (hover: hover) and (pointer: fine) {
  .partner-marquee:hover .partner-marquee__track {
    animation-play-state: paused;
  }
}

.partner-marquee__group {
  display: flex;
  align-items: center;
  gap: clamp(3rem, 6vw, 5.5rem);
  padding-inline: clamp(1.5rem, 3vw, 2.75rem);
}

.partner-marquee img {
  width: auto;
  height: clamp(2.2rem, 4vw, 3.9rem);
  max-width: none;
  margin: 0;
  opacity: 0.68;
  filter: grayscale(1) brightness(1.2);
  flex: 0 0 auto;
}

@keyframes partnerMarquee {
  from {
    transform: translateX(0);
  }

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

@media (prefers-reduced-motion: reduce) {
  body.js-ready .applications-showcase .application-card,
  body.js-ready .team-section .team-member,
  body.js-ready .applications-showcase .application-card:not(.is-visible) .application-card__overlay {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }

  .application-card img,
  .application-card:hover img,
  .about-band__media img,
  .about-band__media:hover img,
  .team-member__photo img,
  .team-member:hover .team-member__photo img {
    transform: none;
    filter: none;
    transition: none;
  }

  .partner-marquee__track {
    animation: none;
  }
}

.subpage-hero {
  padding: 7rem 0 4rem;
  background:
    radial-gradient(circle at right top, rgba(47, 166, 215, 0.18), transparent 20%),
    linear-gradient(180deg, #061c2b 0%, #0a2436 100%);
  color: var(--text-light);
}

.subpage-hero__grid {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
  align-items: center;
}

.text-link {
  color: var(--accent);
}

body.js-ready [data-reveal] {
  opacity: 0;
  transform: translate3d(0, calc(22px + var(--reveal-parallax-offset, 0px)), 0);
  transition: opacity 700ms ease, transform 700ms ease;
}

body.js-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, var(--reveal-parallax-offset, 0px), 0);
}

body.js-ready .hero__content[data-reveal] {
  transform: translate3d(0, calc(22px + var(--hero-copy-offset, 0px)), 0);
}

body.js-ready .hero__content[data-reveal].is-visible {
  transform: translate3d(0, var(--hero-copy-offset, 0px), 0);
}

body.js-ready .hero__media[data-reveal] {
  transform: translate3d(0, calc(22px + var(--hero-media-offset, 0px)), 0);
}

body.js-ready .hero__media[data-reveal].is-visible {
  transform: translate3d(0, var(--hero-media-offset, 0px), 0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  body.js-ready [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1080px) {
  .hero__grid,
  .technology-grid,
  .about-band,
  .subpage-hero__grid,
  .news-grid,
  .intro-grid,
  .split-panel,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero__media,
  .technology-media,
  .about-band__media {
    justify-self: stretch;
    max-width: none;
  }

  .application-row {
    grid-template-columns: 1fr;
  }

  .application-card--hero-left,
  .application-card--hero-right {
    aspect-ratio: 16 / 11;
  }

  .cta-banner,
  .footer-top,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .partner-marquee {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .press-article {
    grid-template-columns: 1fr;
  }

  .press-article__media {
    min-height: 16rem;
  }

  .press-card {
    min-height: 32rem;
  }
}

@media (max-width: 820px) {
  :root {
    --shell: min(100vw - 1.5rem, 1180px);
    --section-space: clamp(4rem, 12vw, 6rem);
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    inset: calc(100% + 0.75rem) 0.75rem auto;
    display: grid;
    gap: 0.4rem;
    padding: 0.75rem;
    background: rgba(4, 19, 31, 0.96);
    border: 1px solid var(--border-dark);
    border-radius: 1.25rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity var(--transition), transform var(--transition);
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero__content h1,
  .subpage-hero h1 {
    max-width: 100%;
  }

  .application-layout,
  .application-row,
  .application-stack,
  .application-pair,
  .detail-grid,
  .benchmark-table {
    grid-template-columns: 1fr;
  }

  .benchmark-table {
    gap: 0;
    border-top: 0;
  }

  .benchmark-table__head {
    min-height: auto;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .benchmark-table__head:empty {
    display: none;
  }

  .benchmark-table__head--forgen,
  .benchmark-table__cell--forgen {
    border-left: 0;
    border-radius: 0;
  }

  .application-card--hero-left,
  .application-card--hero-right,
  .application-card--wide-top,
  .application-card--wide-bottom,
  .application-card--small {
    aspect-ratio: 16 / 10;
  }

  .press-review-panel {
    padding: 1.5rem;
  }

  .press-review-panel__header h2 {
    font-size: clamp(2.6rem, 12vw, 4.2rem);
  }

  .press-article {
    min-height: auto;
  }

  .press-article__copy h3 {
    max-width: none;
  }
}

/* Home redesign overrides */

@font-face {
  font-family: "Giga Sans Custom";
  src: url("../fonts/GigaSans-Bold.otf") format("opentype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --bg-dark: #071723;
  --bg-darker: #04111b;
  --bg-light: #f4f2ec;
  --surface-light: #fbfaf7;
  --text-dark: #111111;
  --text-light: #f5f7fb;
  --muted-light: rgba(245, 247, 251, 0.72);
  --muted-dark: rgba(17, 17, 17, 0.62);
  --border-dark: rgba(255, 255, 255, 0.1);
  --border-light: rgba(7, 23, 35, 0.1);
  --accent: #3a8cab;
  --accent-bright: #59b1d3;
  --shadow-soft: 0 28px 80px rgba(3, 15, 24, 0.12);
  --radius-sm: 1.1rem;
  --radius-md: 1.5rem;
  --radius-lg: 2rem;
  --radius-xl: 2.75rem;
  --tracking: 0.12em;
  --font-display: "Giga Sans Custom", "Sora", "Helvetica Neue", Arial, sans-serif;
}

html {
  background: var(--bg-light);
}

body {
  font-family: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top, rgba(89, 177, 211, 0.1), transparent 25%),
    linear-gradient(180deg, #f7f5f0 0%, #f2efe8 100%);
  color: var(--text-dark);
}

h1,
h2,
h3,
h4,
h5,
h6,
.footer-wordmark,
.brand {
  font-family: var(--font-display);
}

.site-header {
  background: rgba(0, 0, 0, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
}

.site-header.is-scrolled {
  background: rgba(0, 0, 0, 0.98);
}

.brand {
  letter-spacing: 0.34em;
}

.site-nav a {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero--home {
  min-height: calc(100vh - var(--header-height));
  padding: 0;
  background:
    radial-gradient(circle at 82% 26%, rgba(122, 203, 230, 0.34), transparent 18%),
    radial-gradient(circle at 68% 72%, rgba(69, 138, 166, 0.2), transparent 24%),
    linear-gradient(180deg, #06111a 0%, #0c2133 58%, #15324a 100%);
}

.hero__grid {
  width: var(--shell);
  min-height: calc(100vh - var(--header-height));
  grid-template-columns: minmax(0, 0.92fr) minmax(380px, 1.08fr);
  align-items: center;
  gap: 0;
  padding: 3.2rem 0 3rem;
  position: relative;
  z-index: 1;
}

.hero--home .hero__grid {
  pointer-events: none;
}

.hero__content {
  grid-column: 1;
  justify-self: start;
  max-width: 39rem;
  padding-left: 0;
  position: relative;
  z-index: 2;
  will-change: transform;
}

.hero--home .hero__content,
.hero--home .hero__actions,
.hero--home .hero__actions .button {
  pointer-events: auto;
}

.hero__content h1 {
  max-width: 9.2ch;
  font-size: var(--type-h1-size);
  line-height: 0.94;
  letter-spacing: 0.005em;
  text-wrap: initial;
  display: grid;
  justify-items: start;
}

.hero__line {
  display: block;
}

.hero__line--nowrap {
  display: inline-block;
  white-space: nowrap;
  width: max-content;
  max-width: none;
}

.hero__actions {
  margin-top: 2.4rem;
}

.hero__actions .button,
.section--cta .button {
  border-radius: 0;
}

.hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  padding-right: 0;
  z-index: 0;
  will-change: transform;
  pointer-events: none;
  overflow: hidden;
  background-image: var(--hero-poster);
  background-size: cover;
  background-position: center center;
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 17, 26, 0.82) 0%, rgba(6, 17, 26, 0.56) 36%, rgba(6, 17, 26, 0.3) 62%, rgba(6, 17, 26, 0.52) 100%),
    linear-gradient(180deg, rgba(6, 17, 26, 0.24) 0%, rgba(6, 17, 26, 0.54) 100%);
  pointer-events: none;
}

.hero__media img,
.hero__media video {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center center;
  border-radius: 0;
  box-shadow: none;
  transform: scale(var(--hero-media-scale, 1));
  will-change: transform;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.hero--home.is-video-fallback .hero__media video {
  opacity: 0;
}

.button {
  min-height: 3.5rem;
  padding: 0.95rem 1.45rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  font-size: var(--type-button-size);
  font-weight: var(--type-button-weight);
  line-height: var(--type-button-line);
  text-align: center;
  letter-spacing: var(--type-button-track);
}

.button--primary {
  background: linear-gradient(180deg, #2d5366 0%, #1a3745 100%);
  color: #ffffff;
  box-shadow:
    0 18px 34px rgba(8, 20, 28, 0.3),
    0 0 0 1px rgba(122, 203, 230, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.button--secondary {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
}

:root {
  --section-rhythm: clamp(4.9rem, 8vw, 7.5rem);
  --section-rhythm-tight: clamp(3.8rem, 6vw, 5.4rem);
  --panel-padding: clamp(2.2rem, 4vw, 3.1rem);
  --panel-gap: clamp(2rem, 4vw, 3rem);
  --copy-stack-gap: 0.9rem;
  --stack-gap: 0.9rem;
  --stack-gap-lg: 1.2rem;
  --section-heading-space: clamp(2.2rem, 4vw, 3.4rem);
  --type-overline-size: 0.74rem;
  --type-body-size: clamp(0.98rem, 1.04vw, 1.05rem);
  --type-body-line: 1.6;
  --type-lede-size: clamp(1.04rem, 1.24vw, 1.13rem);
  --type-lede-line: 1.64;
  --type-h1-size: clamp(3.75rem, 6vw, 6.2rem);
  --type-h2-size: clamp(2.35rem, 4.15vw, 4.5rem);
  --type-h2-line: 0.95;
  --type-h3-size: clamp(1.12rem, 1.48vw, 1.38rem);
  --type-h3-line: 1.08;
}

.section {
  padding: var(--section-rhythm) 0;
}

.section--dark,
.section--partners,
.subpage-hero--dark {
  background: linear-gradient(180deg, #04090d 0%, #06111a 100%);
}

.section--light,
.section--cta,
.subpage-body {
  background: var(--bg-light);
}

.team-section,
.section--news {
  background: #f3f3f1;
}

.section-label,
.eyebrow,
.press-article__source {
  color: #2fa6d7;
  font-size: var(--type-overline-size);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow {
  margin-bottom: 1rem;
}

h2 {
  font-size: var(--type-h2-size);
  line-height: var(--type-h2-line);
  letter-spacing: -0.06em;
}

h3 {
  font-size: var(--type-h3-size);
  line-height: var(--type-h3-line);
  letter-spacing: -0.05em;
}

.button,
.press-card__button,
.job-card__cta,
.blog-card__cta {
  font-size: var(--type-button-size);
  font-weight: var(--type-button-weight);
  line-height: var(--type-button-line);
  letter-spacing: var(--type-button-track);
}

.footer-legal a,
.footer-legal button,
.cookie-banner__button {
  font-size: var(--type-button-compact-size);
  font-weight: var(--type-button-weight);
  line-height: var(--type-button-line);
}

.story-panel {
  padding: 0;
  border-radius: 2.1rem;
  border: 0;
}

.story-panel--dark {
  background: transparent;
}

.story-panel--light {
  background: transparent;
  box-shadow: none;
}

.story-panel__intro {
  justify-self: start;
  width: 100%;
  max-width: 100%;
}

.story-panel__body p {
  font-size: var(--type-body-size);
  line-height: var(--type-body-line);
}

.story-panel__body {
  max-width: 100%;
}

.section--problem .story-panel__intro,
.section--solution .story-panel__intro,
.technology-copy {
  display: grid;
  align-content: start;
  gap: 0;
}

.section--problem .story-panel__intro h2,
.section--solution .story-panel__intro h2,
.technology-copy h2 {
  max-width: 8.6ch;
  margin-bottom: 20px;
}

.story-stack {
  position: relative;
  z-index: 1;
}

.story-stack__panel {
  position: relative;
  isolation: isolate;
}

.section--problem,
.section--solution {
  padding: clamp(1rem, 2vw, 1.6rem) 0;
}

.section--problem {
  background: #06111a;
}

.section--problem .intro-grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.section--problem .story-panel__body {
  width: 100%;
  max-width: 100%;
  justify-self: start;
  align-self: center;
  gap: var(--copy-stack-gap);
}

.section--solution {
  background: linear-gradient(180deg, #f4f4f1 0%, #e8e8e4 100%);
}

.section--solution .split-panel {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.section--solution .story-panel {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}

.section--solution .story-panel__intro {
  width: 100%;
}

.section--solution .story-panel__body {
  width: 100%;
  max-width: 100%;
  justify-self: start;
  align-self: center;
  gap: var(--copy-stack-gap);
}

.section--solution .story-panel__body p {
  font-size: var(--type-body-size);
  line-height: var(--type-body-line);
  color: rgba(17, 17, 17, 0.74);
}

.story-panel__body-emphasis {
  max-width: 100%;
  font-weight: 700;
  color: #111111;
}

@media (min-width: 1081px) {
  .section--problem .story-panel__intro,
  .section--solution .story-panel__intro {
    align-self: center;
    max-width: min(100%, 34rem);
  }

  .section--problem .story-panel__body,
  .section--solution .story-panel__body {
    max-width: min(100%, 38rem);
  }
}

@media (min-width: 1240px) {
  .story-stack {
    min-height: 1660px;
  }

  .story-stack__panel {
    position: sticky;
    top: var(--header-height);
    min-height: 800px;
    display: flex;
    align-items: stretch;
    overflow: visible;
  }

  .story-stack__panel::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% + clamp(5.5rem, 7vw, 6.5rem));
    z-index: 0;
    pointer-events: none;
  }

  .story-stack__panel .story-panel {
    position: relative;
    z-index: 1;
  }

  .story-stack__panel--problem {
    z-index: 1;
  }

  .story-stack__panel--problem::before {
    background: #06111a;
  }

  .story-stack__panel--solution {
    background: linear-gradient(180deg, #f4f4f1 0%, #e8e8e4 100%);
    z-index: 2;
    padding-top: 0;
    padding-bottom: 0;
  }

  .story-stack__panel--solution::before {
    background: linear-gradient(180deg, #f4f4f1 0%, #e8e8e4 100%);
  }

  .story-stack__panel--solution .story-panel {
    background: transparent;
  }

  .story-stack__panel--problem .story-panel,
  .story-stack__panel--solution .story-panel {
    width: var(--shell);
    margin-inline: auto;
    min-height: 800px;
  }

  .section--problem .intro-grid,
  .section--solution .split-panel {
    min-height: 800px;
    align-items: center;
  }

  .section--problem .story-panel__intro,
  .section--problem .story-panel__body,
  .section--solution .story-panel__intro,
  .section--solution .story-panel__body {
    align-self: center;
  }
}

.section--technology {
  padding-top: clamp(2.6rem, 4vw, 3.8rem);
  position: relative;
  z-index: 3;
}

@media (max-width: 1239px) {
  .story-stack {
    min-height: auto;
  }

  .story-stack__panel {
    position: relative;
    top: auto;
    min-height: auto;
    display: block;
    overflow: visible;
  }

  .section--problem .story-panel,
  .section--solution .story-panel {
    width: var(--shell);
    margin-inline: auto;
  }
}

.technology-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(380px, 1.08fr);
  gap: clamp(2.2rem, 4.8vw, 4.75rem);
  align-items: stretch;
}

.technology-copy {
  align-content: start;
  gap: 0;
  min-height: 0;
}

.technology-copy > p:not(.section-label) {
  max-width: 37rem;
  color: var(--muted-light);
  font-size: var(--type-body-size);
  line-height: var(--type-body-line);
  margin-bottom: 20px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 0;
}

.feature-item {
  display: grid;
  align-content: start;
  gap: 0.72rem;
  padding: 1.28rem 1.35rem 1.32rem;
  border-top: 0;
  border-radius: 1.35rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.035), transparent 55%),
    #101a22;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition:
    box-shadow 520ms cubic-bezier(0.22, 1, 0.36, 1),
    background 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.feature-item p {
  opacity: 0.86;
  font-size: var(--type-body-size);
  line-height: var(--type-body-line);
}

.feature-item h3 {
  font-size: clamp(1.12rem, 1.45vw, 1.34rem);
  line-height: 1.08;
}

.feature-list--stacked {
  display: block;
  min-height: 0;
}

.feature-stack__stage {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-list--stacked .feature-item {
  width: 100%;
  min-height: 230px;
  height: auto;
}

@media (min-width: 900px) {
  .feature-list--stacked,
  .feature-stack__stage,
  .technology-copy {
    overflow: visible;
  }

  .feature-list--stacked {
    position: relative;
    margin-top: -156px;
    padding-top: 156px;
  }

  .feature-stack__stage {
    position: relative;
    display: block;
    min-height: 68vh;
    padding-bottom: 0;
  }

  .feature-stack__stage .feature-item {
    position: sticky;
    top: 148px;
    background:
      linear-gradient(145deg, rgba(255, 255, 255, 0.035), transparent 55%),
      #101a22;
  }

  .feature-stack__stage .feature-item:nth-child(1) {
    z-index: 1;
  }

  .feature-list--stacked .feature-item {
    width: 100%;
    min-height: 240px;
    height: auto;
  }

  .feature-stack__stage .feature-item:nth-child(2) {
    z-index: 2;
    margin-top: 16px;
  }
}

.technology-media img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  max-height: none;
  display: block;
  object-fit: cover;
  object-position: 50% 100%;
  border-radius: 2.4rem;
}

.technology-media {
  width: 100%;
  max-width: none;
  justify-self: end;
  align-self: stretch;
  height: var(--technology-media-height, auto);
  min-height: var(--technology-media-height, auto);
  overflow: hidden;
}

body.js-ready .technology-media {
  opacity: 1;
  transform: none;
}

body.js-ready .technology-copy[data-reveal],
body.js-ready .technology-copy[data-reveal].is-visible {
  transform: none;
}

.applications-showcase .section-heading {
  max-width: 54rem;
  margin-bottom: var(--section-heading-space);
}

.application-card {
  border-radius: 6px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.application-card::after {
  background: linear-gradient(180deg, transparent 28%, rgba(4, 10, 18, 0.78) 100%);
}

.application-card__overlay {
  inset: auto 1.6rem 1.55rem 1.6rem;
}

.cta-banner {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  align-items: center;
  gap: var(--panel-gap);
  padding: var(--panel-padding);
  background: transparent;
  color: var(--text-dark);
  border: 0;
  box-shadow: none;
  border-radius: 0;
  text-align: center;
}

.cta-banner > div {
  display: grid;
  justify-items: center;
}

.cta-banner .section-label {
  margin-bottom: 0.7rem;
  color: rgba(17, 17, 17, 0.46);
}

.cta-banner h2 {
  max-width: 16ch;
  margin: 0 auto;
  font-size: clamp(2.05rem, 3.3vw, 3.35rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.cta-banner p {
  max-width: 38ch;
  margin: 1rem 0 0;
  color: rgba(17, 17, 17, 0.7);
  font-size: var(--type-lede-size);
  line-height: var(--type-lede-line);
}

.section--cta .button {
  min-width: 14.5rem;
  margin-top: 0.25rem;
  padding-inline: 1.3rem;
  border-radius: 0;
  white-space: nowrap;
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  background: linear-gradient(180deg, #2f5f77 0%, #1f4658 100%);
  color: #f5f7fb;
  border: 1px solid rgba(23, 58, 74, 0.18);
  box-shadow:
    0 20px 40px rgba(14, 37, 49, 0.2),
    0 8px 18px rgba(14, 37, 49, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition);
}

.section--cta .button span:last-child {
  font-size: 1rem;
  transition: transform var(--transition);
}

.section--cta .button:hover {
  background: linear-gradient(180deg, #366b85 0%, #255166 100%);
  box-shadow:
    0 24px 50px rgba(14, 37, 49, 0.26),
    0 12px 24px rgba(14, 37, 49, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

.section--cta .button:hover span:last-child {
  transform: translate(2px, -2px);
}

.section--benchmark {
  background:
    radial-gradient(circle at 85% 15%, rgba(89, 177, 211, 0.12), transparent 18%),
    linear-gradient(180deg, #050b10 0%, #07131c 100%);
}

.benchmark-table {
  overflow: hidden;
  border-top: 0;
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.02);
}

.benchmark-table__head,
.benchmark-table__label,
.benchmark-table__cell {
  padding: 1.18rem 1.3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.benchmark-table__head {
  background: rgba(255, 255, 255, 0.03);
}

.benchmark-table__label {
  background: rgba(255, 255, 255, 0.02);
}

.benchmark-table__head--forgen,
.benchmark-table__cell--forgen {
  background: linear-gradient(180deg, #f7f7f2 0%, #eceae2 100%);
}

.team-intro {
  max-width: 40rem;
}

.team-block__title {
  margin-bottom: 1.5rem;
}

.team-cards {
  gap: 1.25rem;
}

.team-member {
  gap: 0.9rem;
  padding: 1.35rem;
  border-radius: 1.7rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.56));
  border: 1px solid rgba(7, 23, 35, 0.08);
  box-shadow: 0 20px 60px rgba(3, 15, 24, 0.08);
}

.team-member__photo {
  aspect-ratio: 1 / 1;
  border-radius: 1.2rem;
  background:
    radial-gradient(circle at 65% 25%, rgba(123, 199, 228, 0.45), transparent 25%),
    linear-gradient(135deg, rgba(47, 132, 167, 0.28), rgba(7, 23, 35, 0.7)),
    #5f7387;
  overflow: hidden;
}

.team-member__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1);
  transition:
    transform 760ms cubic-bezier(0.19, 1, 0.22, 1),
    filter 760ms cubic-bezier(0.19, 1, 0.22, 1);
  will-change: transform;
}

.team-member:hover .team-member__photo img {
  transform: scale(1.055);
  filter: saturate(1.08) contrast(1.03);
}

.team-member h4 {
  font-size: clamp(1.32rem, 2vw, 1.65rem);
}

.team-member p {
  max-width: none;
  font-size: 0.78rem;
  color: rgba(17, 17, 17, 0.56);
  letter-spacing: 0.12em;
}

.team-member__detail {
  display: block;
  font-size: 0.98rem;
  line-height: 1.52;
  color: rgba(17, 17, 17, 0.76);
}

.team-backed {
  margin-top: var(--section-heading-space);
}

.team-backed__logos {
  padding: 1.45rem 1.7rem;
  border-radius: 1.4rem;
  background: rgba(255, 255, 255, 0.38);
  border: 1px solid rgba(7, 23, 35, 0.06);
}

.press-review-panel {
  padding: var(--panel-padding);
  border-radius: 2.4rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.76)),
    #ffffff;
  border: 1px solid rgba(7, 23, 35, 0.08);
  box-shadow: 0 28px 90px rgba(3, 15, 24, 0.1);
}

.press-review-panel__header {
  max-width: 42rem;
  display: grid;
  gap: var(--stack-gap);
  margin-bottom: var(--section-heading-space);
}

.press-review-panel__header > p:not(.section-label) {
  color: var(--muted-dark);
  font-size: var(--type-lede-size);
  line-height: var(--type-lede-line);
}

.press-review-panel__header h2 {
  font-size: var(--type-h2-size);
  line-height: var(--type-h2-line);
}

.news-grid {
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr);
  gap: 1.25rem;
}

.press-articles {
  gap: 1.25rem;
}

.press-article {
  min-height: 0;
  cursor: pointer;
  border-radius: 1.5rem;
  border: 1px solid rgba(7, 23, 35, 0.08);
  background: #fbfaf7;
  box-shadow: 0 20px 60px rgba(3, 15, 24, 0.08);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.press-article:hover,
.press-article:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(47, 166, 215, 0.16);
  box-shadow: 0 24px 68px rgba(3, 15, 24, 0.1);
}

.press-article:focus-visible {
  outline: none;
}

.press-article--balanced {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 206px;
  min-height: 8.6rem;
  background: linear-gradient(180deg, #f8f6f2 0%, #f1eee8 100%);
}

.press-article__copy {
  gap: var(--stack-gap);
  padding: 1.1rem 1.15rem;
  color: var(--text-dark);
}

.press-article__content {
  gap: 0.9rem;
}

.press-article__source {
  margin: 0;
  color: rgba(17, 17, 17, 0.46);
}

.press-article__copy h3 {
  max-width: 14ch;
  font-size: clamp(1.02rem, 1.18vw, 1.2rem);
  line-height: 1.12;
}

.press-article__copy p {
  max-width: 34ch;
  color: rgba(17, 17, 17, 0.72);
  font-size: 0.94rem;
  line-height: 1.56;
}

.press-article__meta {
  gap: 0.45rem;
}

.press-article__date {
  color: rgba(17, 17, 17, 0.48);
  letter-spacing: 0.08em;
}

.press-article__link {
  color: var(--text-dark);
  font-size: 0.96rem;
  font-weight: 800;
  background: transparent;
}

.press-article__link--exact {
  padding: 0;
}

.press-article__link--exact:hover {
  opacity: 0.68;
}

.press-article__media {
  min-height: 100%;
  border-radius: 1.1rem;
  margin: 0.7rem;
}

.press-article__media--balanced {
  min-height: calc(100% - 1.8rem);
}

.press-article__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.press-card {
  min-height: auto;
  overflow: hidden;
  border-radius: 1.7rem;
  background:
    radial-gradient(circle at top right, rgba(123, 199, 228, 0.24), transparent 30%),
    linear-gradient(180deg, #07121b 0%, #0d1d2a 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.press-card--media {
  background:
    linear-gradient(180deg, rgba(5, 16, 24, 0.22), rgba(5, 16, 24, 0.76)),
    url("../images/applications/Pharmaceuticals-568x300 px.png") center / cover no-repeat,
    linear-gradient(180deg, #07121b 0%, #0d1d2a 100%);
}

.press-card--media .section-label,
.press-card--media h3,
.press-card--media p,
.press-card--media .press-card__button {
  color: #f5f7fb;
}

.press-card--media .section-label {
  opacity: 0.72;
}

.press-card--media .press-card__button {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.press-card--media .press-card__button:hover {
  background: rgba(255, 255, 255, 0.22);
}

.press-card::before {
  inset: auto -3rem -4rem auto;
  width: 14rem;
  height: 14rem;
}

.press-card__body {
  gap: 1rem;
  min-height: 100%;
  min-width: 0;
  padding: clamp(1.6rem, 3vw, 1.9rem);
  justify-content: end;
}

.press-card__body h3 {
  font-size: clamp(1.85rem, 2.75vw, 2.7rem);
  line-height: 0.96;
}

.press-card__body p {
  max-width: 22ch;
  color: rgba(245, 247, 251, 0.8);
  font-size: var(--type-body-size);
  line-height: var(--type-body-line);
}

.press-card__button {
  align-self: start;
  max-width: 100%;
  justify-content: space-between;
  padding-inline: 1.25rem;
  border-radius: 0;
  border-color: rgba(255, 255, 255, 0.2);
  font-size: 0.95rem;
}

.section--contact {
  padding-top: var(--section-rhythm-tight);
  padding-bottom: var(--section-rhythm-tight);
  background: #1a3745;
}

.contact-grid {
  width: min(1320px, calc(100vw - 3rem));
  padding: var(--panel-padding);
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: var(--panel-gap);
  border-radius: 2.2rem;
  background:
    radial-gradient(circle at top right, rgba(122, 203, 230, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 26px 80px rgba(2, 10, 16, 0.24);
  color: #f5f7fb;
}

.contact-meta {
  gap: var(--stack-gap);
  margin-top: 2rem;
}

.contact-form {
  min-height: 100%;
  padding: clamp(1.7rem, 3vw, 2rem);
  border-radius: 1.7rem;
  background:
    radial-gradient(circle at top right, rgba(122, 203, 230, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow:
    0 22px 60px rgba(4, 12, 20, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  animation: contactPanelFloat 7s ease-in-out infinite;
}

.contact-form--native {
  display: grid;
  align-content: center;
  gap: 1.35rem;
}

.contact-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.contact-field {
  display: grid;
  gap: 0.45rem;
}

.contact-field--full {
  grid-column: 1 / -1;
}

.contact-field span {
  color: rgba(245, 247, 251, 0.68);
  font-size: var(--type-overline-size);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  min-height: 3.6rem;
  padding: 1rem 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0;
  outline: 0;
  background: rgba(245, 247, 251, 0.96);
  color: #061c2b;
  box-shadow:
    0 14px 34px rgba(3, 10, 16, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  transition:
    border-color var(--transition),
    box-shadow var(--transition),
    background var(--transition);
}

.contact-field textarea {
  min-height: 9.5rem;
  resize: vertical;
}

.contact-field input:focus,
.contact-field textarea:focus {
  border-color: rgba(47, 166, 215, 0.86);
  background: #ffffff;
  box-shadow:
    0 18px 42px rgba(3, 10, 16, 0.22),
    0 0 0 3px rgba(47, 166, 215, 0.18);
}

.contact-form__footer {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.contact-form__button {
  min-width: 9.5rem;
}

.contact-form__button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.contact-form__status {
  min-height: 1.5rem;
  margin: 0;
  color: rgba(245, 247, 251, 0.78);
  font-size: 0.92rem;
  line-height: 1.35;
}

.contact-form__status.is-success {
  color: #a9e3f5;
}

.contact-form__status.is-error {
  color: #ffd6d6;
}

.form-honeypot {
  position: absolute;
  left: -100vw;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.section--contact .section-label,
.section--contact h2,
.section--contact p,
.section--contact a {
  color: #f5f7fb;
}

.section--contact h2 {
  max-width: 11ch;
  font-size: var(--type-h2-size);
  line-height: var(--type-h2-line);
}

.section--contact > .shell > div:first-child > p:last-of-type {
  max-width: 30rem;
  color: rgba(245, 247, 251, 0.8);
  font-size: var(--type-lede-size);
  line-height: var(--type-lede-line);
}

.contact-meta__item {
  display: grid;
  gap: 0.35rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-meta__label {
  font-size: var(--type-overline-size);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 247, 251, 0.58);
}

.contact-meta__item a,
.contact-meta__item p {
  margin: 0;
  color: #f5f7fb;
  font-size: var(--type-body-size);
  line-height: var(--type-body-line);
  text-decoration: none;
}

@keyframes contactPanelFloat {
  0%,
  100% {
    transform: translateY(0);
    box-shadow:
      0 22px 60px rgba(4, 12, 20, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.05);
  }

  50% {
    transform: translateY(-6px);
    box-shadow:
      0 30px 78px rgba(4, 12, 20, 0.24),
      inset 0 1px 0 rgba(255, 255, 255, 0.08);
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-form {
    animation: none;
  }
}

.section--partners {
  background: #000000;
  padding: var(--section-rhythm-tight) 0 1.8rem;
}

.partner-marquee {
  width: min(1180px, calc(100vw - 4rem));
}

.site-footer {
  background: #000000;
  color: #f5f7fb;
  padding: var(--section-rhythm-tight) 0 2.6rem;
}

.site-footer .shell {
  width: min(1180px, calc(100vw - 4rem));
  margin: 0 auto;
}

.footer-top {
  padding: 0 0 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  text-align: center;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem 2.1rem;
  justify-content: center;
}

.footer-legal a,
.footer-legal button {
  color: rgba(245, 247, 251, 0.94);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.78rem 1.05rem;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  appearance: none;
  cursor: pointer;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 10px 24px rgba(0, 0, 0, 0.16);
  transition:
    background var(--transition),
    border-color var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
}

.footer-legal a:hover,
.footer-legal button:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 14px 28px rgba(0, 0, 0, 0.2);
}

.footer-bottom {
  padding: 2rem 0 1.6rem;
}

.footer-bottom__inner {
  width: min(1720px, calc(100vw - 4rem));
  margin: 0 auto;
  display: grid;
  gap: 1.45rem;
  justify-items: center;
  text-align: center;
}

.footer-wordmark {
  display: block;
  width: min(100%, 96rem);
  height: auto;
  margin: 0 auto;
}

.footer-copyline {
  margin: 0;
  width: 100%;
  color: rgba(245, 247, 251, 0.88);
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  text-align: center;
}

.legal-shell {
  width: min(1240px, calc(100vw - 3rem));
  margin: 0 auto;
}

.legal-shell--hero {
  width: min(1320px, calc(100vw - 3rem));
}

.legal-hero {
  min-height: auto;
  padding: clamp(4.4rem, 8vw, 6.6rem) 0 clamp(3rem, 5vw, 4.2rem);
  background:
    radial-gradient(circle at 82% 20%, rgba(47, 166, 215, 0.24), transparent 20%),
    linear-gradient(180deg, #061c2b 0%, #082235 100%);
}

.legal-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.75fr);
  gap: clamp(2rem, 5vw, 5.5rem);
  align-items: end;
}

.legal-hero__copy {
  display: grid;
  gap: 1.15rem;
}

.legal-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  width: fit-content;
  padding: 0.55rem 0.78rem;
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(245, 247, 251, 0.8);
  font-size: var(--type-overline-size);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-hero h1 {
  max-width: 9ch;
  font-size: var(--type-page-title-size);
  line-height: var(--type-page-title-line);
  letter-spacing: -0.05em;
}

.legal-hero__lede {
  max-width: 34rem;
  color: rgba(245, 247, 251, 0.78);
  font-size: var(--type-lede-size);
  line-height: var(--type-lede-line);
}

.legal-hero__grid--simple {
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
}

.legal-hero__meta {
  justify-self: end;
  display: grid;
  gap: 1rem;
  width: min(100%, 22rem);
  padding: 1.35rem 1.4rem;
  border-radius: 1.55rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.legal-hero__meta-label {
  color: rgba(245, 247, 251, 0.56);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.legal-hero__meta-value {
  color: #f5f7fb;
  font-size: 1rem;
  line-height: 1.5;
}

.legal-page {
  background:
    linear-gradient(180deg, #f2f3f4 0%, #ebeceb 100%);
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.33fr) minmax(0, 0.67fr);
  gap: clamp(1.6rem, 4vw, 3rem);
  align-items: start;
}

.legal-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 1.5rem);
  display: grid;
  gap: 0.85rem;
  padding: 1.45rem 1.3rem;
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(6, 28, 43, 0.08);
  box-shadow: 0 22px 55px rgba(3, 15, 24, 0.08);
}

.legal-sidebar h2 {
  font-size: var(--type-panel-title-size);
  line-height: var(--type-panel-title-line);
  letter-spacing: -0.04em;
}

.legal-sidebar__links {
  display: grid;
  gap: 0.4rem;
}

.legal-sidebar__links a {
  display: block;
  padding: 0.68rem 0.8rem;
  border-radius: 0.9rem;
  color: rgba(17, 17, 17, 0.7);
  font-size: 0.9rem;
  transition:
    background var(--transition),
    color var(--transition),
    transform var(--transition);
}

.legal-sidebar__links a:hover {
  background: rgba(6, 28, 43, 0.05);
  color: #111;
  transform: translateX(2px);
}

.legal-content {
  display: grid;
  gap: 1.25rem;
}

.legal-card {
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 1.7rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.66)),
    #ffffff;
  border: 1px solid rgba(6, 28, 43, 0.08);
  box-shadow: 0 24px 65px rgba(3, 15, 24, 0.08);
}

.legal-card h2 {
  margin-bottom: 1rem;
  font-size: var(--type-card-title-size);
  line-height: var(--type-card-title-line);
}

.legal-card h3 {
  margin: 1.35rem 0 0.85rem;
  font-size: clamp(1.06rem, 1.32vw, 1.18rem);
}

.legal-card p,
.legal-card li {
  color: rgba(17, 17, 17, 0.72);
  font-size: var(--type-body-size);
  line-height: var(--type-body-line);
}

.legal-card p + p {
  margin-top: 0.95rem;
}

.careers-page {
  background: linear-gradient(180deg, #eef1f4 0%, #e8ebee 100%);
}

.careers-hero {
  background:
    radial-gradient(circle at 82% 20%, rgba(47, 166, 215, 0.2), transparent 18%),
    linear-gradient(180deg, #05111b 0%, #082234 100%);
}

.careers-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  align-items: start;
}

.careers-hero__copy {
  display: grid;
  gap: 1.15rem;
  max-width: 44rem;
}

.careers-hero__lede {
  max-width: 40rem;
  color: rgba(245, 247, 251, 0.78);
  font-size: var(--type-lede-size);
  line-height: var(--type-lede-line);
}

.careers-hero h1,
.blog-hero h1,
.blog-post-hero h1 {
  font-size: var(--type-page-title-size);
  line-height: var(--type-page-title-line);
  letter-spacing: -0.05em;
}

.careers-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  align-items: start;
}

.careers-board__intro p {
  color: rgba(17, 17, 17, 0.72);
  font-size: var(--type-body-size);
  line-height: var(--type-body-line);
}

.careers-board {
  display: grid;
  gap: 1.6rem;
  width: 100%;
}

.careers-board__intro {
  display: grid;
  gap: 0.45rem;
  max-width: 42rem;
}

.careers-board__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.job-card {
  display: grid;
  gap: 0.9rem;
  align-content: start;
  min-height: 100%;
  padding: clamp(1.2rem, 2vw, 1.45rem);
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.62)),
    #ffffff;
  border: 1px solid rgba(6, 28, 43, 0.08);
  box-shadow: 0 18px 40px rgba(3, 15, 24, 0.06);
}

.job-card--empty {
  min-height: 14rem;
  align-content: center;
}

.job-card__top {
  display: grid;
  gap: 0.6rem;
}

.job-card__status {
  width: fit-content;
  margin: 0;
  padding: 0.42rem 0.62rem;
  border-radius: 0;
  background: rgba(47, 166, 215, 0.12);
  color: #1f7fa7;
  font-size: var(--type-overline-size);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.job-card h2 {
  margin: 0;
  font-size: var(--type-card-title-size);
  line-height: var(--type-card-title-line);
}

.job-card__summary {
  margin: 0;
  color: rgba(17, 17, 17, 0.72);
  font-size: var(--type-body-size);
  line-height: var(--type-body-line);
}

.job-card__footer {
  display: flex;
  justify-content: flex-start;
  margin-top: 0.1rem;
}

.job-card__cta {
  text-decoration: none;
}

.blog-page {
  background: linear-gradient(180deg, #eef1f4 0%, #e8ebee 100%);
}

.blog-hero,
.blog-post-hero {
  background:
    radial-gradient(circle at 82% 20%, rgba(47, 166, 215, 0.2), transparent 18%),
    linear-gradient(180deg, #05111b 0%, #082234 100%);
}

.blog-hero__grid,
.blog-post-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.75fr);
  gap: clamp(2rem, 5vw, 5.5rem);
  align-items: end;
}

.blog-hero__copy,
.blog-post-hero__copy {
  display: grid;
  gap: 1.15rem;
}

.blog-hero__lede,
.blog-post-hero__lede {
  max-width: 40rem;
  color: rgba(245, 247, 251, 0.78);
  font-size: var(--type-lede-size);
  line-height: var(--type-lede-line);
}

.blog-hero__meta,
.blog-post-hero__meta {
  justify-self: end;
  display: grid;
  gap: 1rem;
  width: min(100%, 22rem);
  padding: 1.35rem 1.4rem;
  border-radius: 1.55rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.blog-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.34fr) minmax(0, 0.66fr);
  gap: clamp(1.6rem, 4vw, 3rem);
  align-items: start;
}

.blog-sidebar,
.blog-post-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 1.5rem);
  display: grid;
  gap: 1rem;
  padding: 1.45rem 1.3rem;
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(6, 28, 43, 0.08);
  box-shadow: 0 22px 55px rgba(3, 15, 24, 0.08);
}

.blog-sidebar h2,
.blog-post-sidebar h2 {
  font-size: var(--type-panel-title-size);
  line-height: var(--type-panel-title-line);
  letter-spacing: -0.04em;
}

.blog-board,
.blog-post-layout {
  display: grid;
  gap: 1.25rem;
}

.blog-board__intro {
  display: grid;
  gap: 0.9rem;
}

.blog-board__intro p,
.blog-sidebar p,
.blog-sidebar li {
  color: rgba(17, 17, 17, 0.72);
  font-size: var(--type-body-size);
  line-height: var(--type-body-line);
}

.blog-board__list {
  display: grid;
  gap: 1.1rem;
}

.blog-card {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  gap: 1rem;
  padding: 1rem;
  cursor: pointer;
  border-radius: 1.7rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.66)),
    #ffffff;
  border: 1px solid rgba(6, 28, 43, 0.08);
  box-shadow: 0 24px 65px rgba(3, 15, 24, 0.08);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.blog-card:hover,
.blog-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(47, 166, 215, 0.22);
  box-shadow: 0 28px 72px rgba(3, 15, 24, 0.11);
}

.blog-card:focus-visible {
  outline: none;
}

.blog-card__media {
  display: block;
  min-height: 100%;
  border-radius: 1.2rem;
  overflow: hidden;
}

.blog-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card__body {
  display: grid;
  gap: 0.95rem;
  align-content: start;
  padding: 0.35rem 0.15rem;
}

.blog-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1rem;
  align-items: center;
}

.blog-card__tag {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.7rem;
  border-radius: 999px;
  background: rgba(47, 166, 215, 0.12);
  color: #1f7fa7;
  font-size: var(--type-overline-size);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.blog-card__date {
  color: rgba(17, 17, 17, 0.48);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-card h2 {
  margin: 0;
  font-size: var(--type-card-title-size);
  line-height: var(--type-card-title-line);
}

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

.blog-card__excerpt {
  margin: 0;
  color: rgba(17, 17, 17, 0.72);
  font-size: var(--type-body-size);
  line-height: var(--type-body-line);
}

.blog-card__footer {
  display: flex;
  justify-content: flex-start;
}

.blog-card__cta {
  text-decoration: none;
}

.blog-post-layout {
  grid-template-columns: minmax(220px, 0.28fr) minmax(0, 0.72fr);
  align-items: start;
}

.blog-post-article {
  display: grid;
  gap: 1.25rem;
}

.blog-post-article__media {
  margin: 0;
  border-radius: 1.7rem;
  overflow: hidden;
  border: 1px solid rgba(6, 28, 43, 0.08);
  box-shadow: 0 24px 65px rgba(3, 15, 24, 0.08);
}

.blog-post-article__media img {
  display: block;
  width: 100%;
  height: auto;
}

.blog-post-article__body {
  display: grid;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 1.7rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.66)),
    #ffffff;
  border: 1px solid rgba(6, 28, 43, 0.08);
  box-shadow: 0 24px 65px rgba(3, 15, 24, 0.08);
}

.blog-post-article__body p {
  margin: 0;
  color: rgba(17, 17, 17, 0.74);
  font-size: var(--type-body-size);
  line-height: 1.68;
}

.blog-post-article__lead {
  font-size: var(--type-lede-size);
  line-height: var(--type-lede-line);
  color: rgba(17, 17, 17, 0.84);
}

@media (max-width: 820px) {
  .careers-hero__grid,
  .careers-layout {
    grid-template-columns: 1fr;
  }

  .careers-board__list {
    grid-template-columns: 1fr;
  }

  .blog-hero__grid,
  .blog-post-hero__grid,
  .blog-layout,
  .blog-post-layout,
  .blog-card {
    grid-template-columns: 1fr;
  }

  .blog-hero__meta,
  .blog-post-hero__meta,
  .blog-sidebar,
  .blog-post-sidebar {
    justify-self: stretch;
    width: 100%;
  }

  .blog-sidebar,
  .blog-post-sidebar {
    position: static;
  }
}

.legal-list {
  margin: 1rem 0 0;
  padding-left: 1.15rem;
  display: grid;
  gap: 0.65rem;
}

.legal-callout {
  display: grid;
  gap: 0.6rem;
  padding: 1.2rem 1.25rem;
  border-radius: 1.2rem;
  background: rgba(47, 132, 167, 0.08);
  border: 1px solid rgba(47, 132, 167, 0.12);
}

.legal-callout strong {
  color: #163343;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-page .site-footer {
  margin-top: clamp(1rem, 2vw, 1.8rem);
}

.scroll-top,
.cookie-chip {
  position: fixed;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(28, 66, 84, 0.18);
  border-radius: 0;
  background: linear-gradient(180deg, #2f5f77 0%, #1f4658 100%);
  color: #f5f7fb;
  box-shadow:
    0 20px 40px rgba(14, 37, 49, 0.22),
    0 8px 18px rgba(14, 37, 49, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition:
    opacity var(--transition),
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition);
}

.scroll-top {
  right: 1.5rem;
  bottom: 1.5rem;
  width: 3.25rem;
  height: 3.25rem;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(5, 5, 5, 0.72);
  color: #fff;
  backdrop-filter: blur(14px);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  cursor: pointer;
  transition:
    transform 220ms ease,
    background 220ms ease,
    border-color 220ms ease,
    opacity 220ms ease;
}

.scroll-top svg {
  width: 1.15rem;
  height: 1.15rem;
  stroke: currentColor;
  stroke-width: 2.4;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.scroll-top.is-visible,
.cookie-chip.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-top:hover,
.cookie-chip:hover,
.cookie-banner__button.button--primary:hover {
  box-shadow:
    0 24px 50px rgba(14, 37, 49, 0.26),
    0 12px 24px rgba(14, 37, 49, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.scroll-top:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
}

.cookie-chip:hover,
.cookie-banner__button.button--primary:hover {
  background: linear-gradient(180deg, #366b85 0%, #255166 100%);
}

.cookie-chip {
  left: 2rem;
  bottom: 2rem;
  justify-content: center;
  width: 3.35rem;
  height: 3.35rem;
  padding: 0;
  border-radius: 0;
}

.cookie-chip svg {
  width: 1.18rem;
  height: 1.18rem;
  fill: currentColor;
}

.cookie-banner {
  position: fixed;
  left: 2rem;
  bottom: 2rem;
  z-index: 70;
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 1rem;
  width: min(25rem, calc(100vw - 4rem));
  padding: 1.1rem 1.15rem;
  border-radius: 1.3rem;
  background:
    radial-gradient(circle at top right, rgba(122, 203, 230, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(7, 20, 29, 0.96), rgba(11, 27, 39, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 24px 56px rgba(2, 10, 16, 0.3);
  color: #f5f7fb;
}

.cookie-banner[hidden],
.cookie-chip[hidden] {
  display: none;
}

.cookie-banner__content {
  display: grid;
  gap: 0.55rem;
}

.cookie-banner__content .section-label,
.cookie-banner__content h3,
.cookie-banner__content p {
  color: #f5f7fb;
}

.cookie-banner__content .section-label {
  margin: 0;
  font-size: var(--type-overline-size);
  letter-spacing: 0.12em;
  opacity: 0.68;
}

.cookie-banner__content h3 {
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.cookie-banner__content p:last-child {
  max-width: 34ch;
  color: rgba(245, 247, 251, 0.78);
  font-size: 0.8rem;
  line-height: 1.5;
}

.cookie-banner__actions {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0.6rem;
}

.cookie-banner__button {
  min-height: 2.65rem;
  padding: 0.72rem 1rem;
  font-size: var(--type-button-compact-size);
}

.cookie-banner__button.button--secondary {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  color: #f5f7fb;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 10px 24px rgba(0, 0, 0, 0.14);
}

.cookie-banner__button.button--secondary:hover {
  background: rgba(255, 255, 255, 0.09);
}

.cookie-banner__button.button--primary {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
}

@media (max-width: 1080px) {
  .technology-grid,
  .news-grid,
  .press-article--balanced {
    grid-template-columns: 1fr;
  }

  .hero__grid {
    width: var(--shell);
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 3rem 0 2.5rem;
  }

  .hero__content h1 {
    max-width: 8ch;
    letter-spacing: 0;
  }

  .hero__media img,
  .hero__media video {
    min-height: 100%;
  }

  .press-article__media {
    margin: 0 1rem 1rem;
  }

  .section--problem .story-panel,
  .section--solution .story-panel {
    width: var(--shell);
    margin-inline: auto;
  }

  .section--solution .split-panel {
    width: var(--shell);
    margin-inline: auto;
  }

  .section--about-band .about-band {
    grid-template-columns: 1fr;
    gap: clamp(1.5rem, 4vw, 2rem);
  }

  .about-band__media {
    width: 100%;
    max-width: none;
    justify-self: stretch;
  }
}

@media (max-width: 820px) {
  .legal-hero {
    padding: 3.1rem 0 2.6rem;
  }

  .legal-hero__grid,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-hero__meta,
  .legal-sidebar {
    width: 100%;
    justify-self: stretch;
  }

  .legal-sidebar {
    position: static;
  }

  .hero--home {
    min-height: auto;
  }

  .hero__grid {
    padding: 2.2rem 0 2rem;
    gap: 1.75rem;
    min-height: calc(100vh - var(--header-height));
  }

  .hero__content h1 {
    max-width: 7ch;
    font-size: clamp(3.6rem, 16vw, 5.4rem);
  }

  .hero__actions {
    margin-top: 1.6rem;
  }

  .hero__media img,
  .hero__media video {
    min-height: 100%;
    border-radius: 0;
  }

  .story-panel,
  .press-review-panel,
  .contact-grid {
    padding: 1.4rem;
    border-radius: 1.6rem;
  }

  .cookie-banner {
    left: 1rem;
    bottom: 1rem;
    width: min(22rem, calc(100vw - 2rem));
    padding: 1rem;
    border-radius: 1.15rem;
  }

  .cookie-banner__actions {
    justify-content: stretch;
  }

  .cookie-banner__button {
    width: 100%;
    justify-content: center;
  }

  .scroll-top {
    right: 1rem;
    bottom: 1rem;
    width: 3rem;
    height: 3rem;
  }

  .cookie-chip {
    left: 1rem;
    bottom: 1rem;
  }

  .footer-top,
  .footer-bottom__inner {
    width: min(100vw - 2rem, 1760px);
  }

  .footer-legal {
    gap: 0.9rem 1.2rem;
  }

  .footer-legal a,
  .footer-legal button {
    font-size: 0.76rem;
  }

  .footer-wordmark {
    font-size: clamp(4rem, 22vw, 7rem);
    line-height: 0.88;
  }

  .team-member,
  .contact-form,
  .press-card,
  .application-card {
    border-radius: 6px;
  }

  .press-article,
  .press-article--balanced {
    border-radius: 1.5rem;
  }

  .press-article__copy {
    padding: 1.35rem;
  }

  .press-article__media {
    margin: 0 0.9rem 0.9rem;
    min-height: 14rem;
  }

  .press-card__body {
    padding: 1.5rem;
  }

  .team-backed__logos {
    padding: 1.4rem;
  }
}

@media (max-width: 820px) {
  :root {
    --shell: min(calc(100vw - 2rem), 1180px);
    --shell-wide: min(calc(100vw - 2rem), 1320px);
    --header-height: 4.5rem;
    --section-rhythm: clamp(3.75rem, 10vw, 5rem);
    --section-rhythm-tight: clamp(3rem, 8vw, 4.2rem);
    --panel-padding: 1.3rem;
    --panel-gap: 1.3rem;
    --section-heading-space: 1.8rem;
  }

  .site-header__inner {
    min-height: var(--header-height);
    gap: 1rem;
  }

  .brand__logo {
    height: 0.95rem;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.35rem;
    height: 3.35rem;
    min-height: 0;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04)),
      rgba(255, 255, 255, 0.04);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.08),
      0 14px 34px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(14px);
  }

  .site-nav {
    position: absolute;
    inset: calc(100% + 0.7rem) 0.75rem auto;
    width: min(22rem, calc(100vw - 1.5rem));
    margin-left: auto;
    display: grid;
    gap: 0.35rem;
    padding: 0.7rem;
    background:
      radial-gradient(circle at top right, rgba(122, 203, 230, 0.12), transparent 34%),
      linear-gradient(180deg, rgba(7, 18, 28, 0.98), rgba(10, 24, 36, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 1.2rem;
    box-shadow:
      0 22px 55px rgba(0, 0, 0, 0.26),
      inset 0 1px 0 rgba(255, 255, 255, 0.07);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px) scale(0.985);
    transition: opacity var(--transition), transform var(--transition);
  }

  .site-nav a {
    display: block;
    padding: 0.82rem 0.92rem;
    border-radius: 0.95rem;
    color: rgba(245, 247, 251, 0.9);
    font-size: 0.84rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1.2;
    transition:
      background var(--transition),
      color var(--transition),
      transform var(--transition);
  }

  .site-nav a:hover,
  .site-nav a[aria-current="page"] {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    transform: translateX(2px);
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle__lines span:nth-child(1) {
    transform: translateY(4px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle__lines span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle__lines span:nth-child(3) {
    transform: translateY(-4px) rotate(-45deg);
  }

  .hero__grid,
  .subpage-hero__grid,
  .intro-grid,
  .split-panel,
  .technology-grid,
  .about-band,
  .contact-grid,
  .news-grid,
  .legal-hero__grid,
  .legal-layout,
  .application-row,
  .application-pair,
  .detail-grid,
  .team-cards {
    grid-template-columns: 1fr;
  }

  .hero__grid {
    min-height: calc(100vh - var(--header-height));
    padding: 1.9rem 0 2.2rem;
    gap: 1.5rem;
  }

  .hero__content,
  .technology-copy,
  .story-panel__intro,
  .story-panel__body,
  .legal-hero__copy,
  .legal-hero__meta {
    max-width: none;
    padding-left: 0;
    justify-self: stretch;
  }

  .hero__content {
    max-width: min(18.5rem, 100%);
  }

  .hero__content h1,
  .subpage-hero h1 {
    max-width: 6.2ch;
    font-size: clamp(2.75rem, 13.2vw, 4.1rem);
    line-height: 0.94;
    letter-spacing: -0.03em;
  }

  .hero__actions {
    margin-top: 1.35rem;
  }

  .hero__actions .button,
  .section--cta .button {
    min-width: 0;
  }

  .hero__media img,
  .hero__media video {
    min-height: 100%;
  }

  .section-label,
  .cookie-banner__content .section-label,
  .contact-meta__label,
  .legal-hero__meta-label {
    font-size: 0.67rem;
  }

  h2,
  .press-review-panel__header h2,
  .section--contact h2 {
    font-size: clamp(2rem, 10vw, 3rem);
    line-height: 0.98;
  }

  .press-card__body h3 {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  p,
  .story-panel__body p,
  .section--solution .story-panel__body p,
  .technology-copy > p,
  .section--contact > .shell > div:first-child > p:last-of-type,
  .legal-card p,
  .legal-card li {
    font-size: 0.96rem;
    line-height: 1.65;
  }

  .story-panel,
  .press-review-panel,
  .contact-grid,
  .legal-card,
  .legal-sidebar,
  .legal-hero__meta,
  .cta-banner {
    padding: var(--panel-padding);
    border-radius: 1.25rem;
  }

  .section--solution .split-panel,
  .section--solution .story-panel__intro,
  .section--solution .story-panel__body {
    max-width: none;
    justify-self: stretch;
  }

  .press-review-panel .news-grid,
  .press-review-panel .press-articles {
    gap: 1rem;
  }

  .technology-media,
  .about-band__media {
    justify-self: stretch;
    width: 100%;
    max-width: none;
  }

  .section--about-band .about-band {
    grid-template-columns: 1fr;
  }

  .about-band__copy,
  .about-band__copy p {
    max-width: none;
  }

  .technology-media img {
    min-height: 10.5rem;
    max-height: 10.5rem;
    border-radius: 1rem;
    object-position: 50% 100%;
  }

  .feature-item {
    padding: 1rem 1rem 1.05rem;
  }

  .feature-list--stacked {
    position: static;
    display: block;
    height: auto;
    min-height: 0;
  }

  .feature-stack__stage {
    position: static;
    display: flex;
    flex-direction: column;
    gap: 24px;
    min-height: auto;
    height: auto;
  }

  .feature-stack__stage .feature-item {
    position: relative;
    top: auto;
    z-index: auto;
    margin-top: 0;
    height: auto;
    transform: none;
    box-shadow: none;
  }

  .feature-stack__stage .feature-item + .feature-item,
  .feature-list > .feature-item + .feature-item {
    margin-top: 0;
  }

  .technology-media {
    height: auto;
    min-height: 0;
  }

  .applications-showcase .section-heading,
  .section-heading,
  .team-intro,
  .press-review-panel__header {
    margin-bottom: 1.8rem;
  }

  .application-layout,
  .application-stack,
  .team-cards,
  .press-articles,
  .legal-content {
    gap: 1rem;
  }

  .application-card--hero-left,
  .application-card--hero-right,
  .application-card--wide-top,
  .application-card--wide-bottom,
  .application-card--small {
    aspect-ratio: 16 / 10;
  }

  .application-card__overlay {
    inset: auto 1rem 0.95rem 1rem;
  }

  .application-card h2,
  .application-card h3 {
    font-size: 0.76rem;
    letter-spacing: 0.12em;
  }

  .cta-banner {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .cta-banner h2 {
    max-width: 9ch;
  }

  .benchmark-table {
    display: none;
  }

  .benchmark-mobile {
    display: grid;
    gap: 0.95rem;
  }

  .benchmark-mobile__card {
    padding: 1rem;
  }

  .team-member {
    gap: 0.75rem;
  }

  .team-member h4 {
    font-size: 1.28rem;
  }

  .team-member p {
    font-size: 0.72rem;
    line-height: 1.45;
  }

  .team-backed__logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    padding: 1.15rem;
  }

  .partner-marquee {
    width: min(100vw - 1.5rem, 1180px);
    padding: 1.25rem 0;
  }

  .partner-marquee__group {
    gap: 2.25rem;
    padding-inline: 1.25rem;
  }

  .partner-marquee img {
    height: 2.4rem;
  }

  .press-article,
  .press-article--balanced,
  .news-grid {
    grid-template-columns: 1fr;
  }

  .press-article__copy {
    padding: 1rem;
  }

  .press-article__copy h3 {
    max-width: none;
    font-size: 1.08rem;
  }

  .press-article__copy p,
  .press-card__body p {
    font-size: 0.92rem;
    line-height: 1.55;
  }

  .press-article__media {
    margin: 0 0.85rem 0.85rem;
    min-height: 13rem;
  }

  .press-card {
    min-height: 22rem;
    border-radius: 1.2rem;
  }

  .press-card__body {
    padding: 1.2rem;
  }

  .contact-grid {
    width: var(--shell);
  }

  .contact-form {
    padding: 0.9rem;
  }

  .contact-form__grid {
    grid-template-columns: 1fr;
  }

  .contact-form__footer {
    align-items: stretch;
  }

  .contact-form__button {
    width: 100%;
    justify-content: center;
  }

  .legal-hero {
    padding: 2.4rem 0 2.3rem;
  }

  .legal-kicker {
    font-size: 0.64rem;
  }

  .legal-hero__lede,
  .legal-hero__meta-value {
    font-size: 0.96rem;
  }

  .legal-sidebar {
    position: static;
  }

  .footer-top,
  .footer-bottom__inner {
    width: min(calc(100vw - 2rem), 1760px);
  }

  .footer-top {
    padding-bottom: 1.4rem;
  }

  .footer-legal {
    justify-content: center;
    gap: 0.75rem;
  }

  .footer-legal a,
  .footer-legal button {
    font-size: 0.72rem;
    padding: 0.72rem 0.9rem;
  }

  .footer-copyline {
    font-size: 0.82rem;
  }

  .footer-wordmark {
    width: min(100%, 42rem);
  }

  .cookie-banner {
    width: min(21rem, calc(100vw - 2rem));
  }
}

@media (max-width: 1080px) {
  html,
  body,
  main {
    overflow-x: hidden;
  }

  .hero--home,
  .story-stack,
  .section--problem,
  .section--solution,
  .section--technology,
  .section--about-band,
  .section--contact {
    overflow-x: hidden;
  }

  .hero__grid,
  .section--problem .intro-grid,
  .section--solution .split-panel,
  .technology-grid,
  .about-band,
  .contact-grid {
    width: var(--shell);
    max-width: var(--shell);
    grid-template-columns: minmax(0, 1fr);
  }

  .hero__content,
  .story-panel__intro,
  .story-panel__body,
  .section--problem .story-panel__intro,
  .section--problem .story-panel__body,
  .section--solution .story-panel__intro,
  .section--solution .story-panel__body,
  .technology-copy,
  .about-band__copy {
    min-width: 0;
    max-width: 100%;
    justify-self: stretch;
  }

  .hero__content h1,
  .subpage-hero h1,
  .section--problem .story-panel__intro h2,
  .section--solution .story-panel__intro h2,
  .technology-copy h2,
  .about-band__copy h2 {
    max-width: 100%;
  }

  .hero__line,
  .hero__line--nowrap {
    width: auto;
    max-width: 100%;
  }
}

@media (max-width: 560px) {
  :root {
    --shell: min(calc(100vw - 2rem), 1180px);
  }

  .hero__grid {
    min-height: min(46rem, calc(100vh - var(--header-height)));
    padding: clamp(2.2rem, 9vw, 3.4rem) 0 clamp(2.2rem, 9vw, 3.4rem);
    align-content: center;
    justify-items: center;
    text-align: center;
  }

  .hero__content {
    max-width: min(100%, 22rem);
    justify-self: center;
    display: grid;
    justify-items: center;
  }

  .hero__content h1 {
    font-size: clamp(2.6rem, 11.25vw, 3.35rem);
    line-height: 0.96;
    letter-spacing: -0.025em;
    justify-items: center;
    text-align: center;
  }

  .hero__line,
  .hero__line--nowrap {
    white-space: nowrap;
  }

  .hero__actions {
    margin-top: 1.45rem;
    display: flex;
    justify-content: center;
  }

  .hero__actions .button {
    min-height: 3.15rem;
    padding: 0.9rem 1.05rem;
    font-size: 0.92rem;
  }

  .section--problem,
  .section--solution {
    padding: 2.6rem 0;
  }

  .section--problem .intro-grid,
  .section--solution .split-panel {
    gap: 1.35rem;
    align-items: start;
  }

  .section--problem .story-panel__intro h2,
  .section--solution .story-panel__intro h2,
  .technology-copy h2,
  .about-band__copy h2 {
    font-size: clamp(2.45rem, 11vw, 3.25rem);
    line-height: 0.96;
    letter-spacing: -0.035em;
  }

  .story-panel__body,
  .section--problem .story-panel__body,
  .section--solution .story-panel__body {
    display: grid;
    gap: 0.85rem;
  }

  .story-panel__body p,
  .section--solution .story-panel__body p,
  .technology-copy > p,
  .about-band__copy p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0;
  }

  .section--solution .story-panel__body-emphasis {
    max-width: 100%;
  }

  .technology-grid {
    gap: 1.6rem;
  }
}

@media (max-width: 390px) {
  .hero__content {
    max-width: min(100%, 20.5rem);
  }

  .hero__content h1 {
    font-size: clamp(2.35rem, 10.75vw, 2.75rem);
  }

  .section--problem .story-panel__intro h2,
  .section--solution .story-panel__intro h2,
  .technology-copy h2,
  .about-band__copy h2 {
    font-size: clamp(2.2rem, 10.2vw, 2.75rem);
  }
}

@media (min-width: 1081px) {
  .section--technology {
    padding-top: 0;
    padding-bottom: 0;
  }

  .technology-copy {
    padding-top: clamp(2.6rem, 4vw, 3.8rem);
    padding-bottom: clamp(3rem, 4.8vw, 4.8rem);
  }

  .press-review-panel .news-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.14fr) minmax(21rem, 0.86fr);
    align-items: stretch;
    gap: 1.25rem;
  }

  .press-review-panel .press-articles {
    display: grid;
    grid-template-rows: repeat(2, minmax(0, 1fr));
    align-content: stretch;
    align-self: stretch;
    gap: 1.25rem;
    min-width: 0;
  }

  .press-review-panel .press-article--balanced {
    display: grid;
    grid-template-columns: minmax(0, 1fr) clamp(10.75rem, 17vw, 12.875rem);
    align-items: stretch;
    min-height: clamp(9.5rem, 10vw, 10.75rem);
    overflow: hidden;
  }

  .press-review-panel .press-article__copy--exact {
    min-height: 0;
    height: 100%;
  }

  .press-review-panel .press-article__content,
  .press-review-panel .press-article__meta--exact {
    min-width: 0;
  }

  .press-review-panel .press-article__copy h3,
  .press-review-panel .press-article__copy p {
    max-width: none;
  }

  .press-review-panel .press-article__media {
    height: auto;
    min-height: 0;
    margin: 0.7rem;
    align-self: stretch;
  }

  .press-review-panel .press-article__media--balanced {
    min-height: 0;
  }

  .press-review-panel .press-card--media {
    min-height: 100%;
    height: 100%;
    align-self: stretch;
  }
}

/* Square block pass */
.story-panel,
.feature-item,
.technology-media img,
.application-card,
.cta-banner,
.benchmark-table,
.benchmark-mobile__card,
.benchmark-mobile__item,
.team-member,
.team-member__photo,
.team-backed__logos,
.press-review-panel,
.press-article,
.press-article__media,
.press-card,
.contact-grid,
.contact-form,
.partner-marquee,
.legal-hero__meta,
.legal-sidebar,
.legal-sidebar__links a,
.legal-card,
.legal-callout,
.careers-hero__meta,
.careers-sidebar,
.job-card,
.job-card__meta-item,
.blog-hero__meta,
.blog-post-hero__meta,
.blog-sidebar,
.blog-post-sidebar,
.blog-card,
.blog-card__media,
.blog-post-article__media,
.blog-post-article__body {
  border-radius: 0;
}

.press-article__media img,
.blog-card__media img,
.blog-post-article__media img,
.team-member__photo img {
  border-radius: 0;
}

.benchmark-table__head--forgen,
.benchmark-table__cell--forgen:last-child {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

@media (max-width: 820px) {
  .section-label,
  .eyebrow,
  .press-article__source,
  .section--problem .story-panel__intro .section-label,
  .section--solution .story-panel__intro .section-label,
  .section--technology .technology-copy > .section-label,
  .section--about-band .about-band__copy .section-label {
    margin: 0 0 1.2rem;
    color: #2fa6d7;
    font-size: 0.67rem;
    line-height: 1.65;
    letter-spacing: 0.12em;
  }

  .section--contact .section-label,
  .cookie-banner__content .section-label {
    color: #f5f7fb;
  }

  .cta-banner .section-label {
    color: rgba(17, 17, 17, 0.46);
  }

  .cookie-banner__content .section-label {
    margin-bottom: 0;
  }

  .section--problem .story-panel__intro h2,
  .section--solution .story-panel__intro h2,
  .technology-copy h2,
  .about-band__copy h2 {
    margin-top: 0;
    margin-bottom: 20px;
  }

  .section--problem .story-panel,
  .section--solution .story-panel {
    padding: 0;
  }

  .team-block__title {
    width: 100%;
    text-align: center;
  }

  .section--benchmark .benchmark-heading {
    margin-bottom: clamp(3rem, 11vw, 4rem);
  }

  .section--benchmark .benchmark-heading p:last-child {
    max-width: 22rem;
    line-height: 1.45;
  }

  .section--benchmark .benchmark-mobile {
    margin-top: 0;
    gap: 1.45rem;
  }

  .section--benchmark .benchmark-mobile__card {
    gap: 1.15rem;
    padding: 1.25rem;
  }

  .section--benchmark .benchmark-mobile__items {
    gap: 1rem;
  }

  .section--benchmark .benchmark-mobile__item {
    gap: 0.42rem;
    padding: 1rem;
  }

  body.js-ready .section--benchmark .benchmark-heading[data-reveal],
  body.js-ready .section--benchmark .benchmark-heading[data-reveal].is-visible,
  body.js-ready .section--benchmark .benchmark-mobile[data-reveal],
  body.js-ready .section--benchmark .benchmark-mobile[data-reveal].is-visible {
    transform: none;
  }
}
