@font-face {
  font-family: Manrope;
  src: url("../fonts/manrope-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
.field-hint {
  font-size: 10px;
  color: var(--muted);
}
:root {
  --bg: #090d11;
  --surface: #10161c;
  --surface-raised: #151d25;
  --text: #f0f3f4;
  --muted: #a1adb8;
  --accent: #a9f3df;
  --blue: #5999ec;
  --border: #26313b;
  --radius: 4px;
  --container: 1320px;
  --space: 104px;
  --font: "Manrope", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --transition: 220ms var(--ease);
  --shadow: 0 20px 70px #0004;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 106px;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.7;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}
body.menu-open {
  overflow: hidden;
}
::selection {
  background: var(--accent);
  color: var(--bg);
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea,
select {
  font: inherit;
}
button,
a,
input,
textarea,
select {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
img,
svg {
  max-width: 100%;
  vertical-align: middle;
}
img {
  height: auto;
}
button {
  color: inherit;
}
h1,
h2,
h3,
h4,
p {
  margin: 0;
}
h1,
h2,
h3,
h4 {
  font-weight: 500;
  line-height: 1.15;
}
h1 {
  font-size: 76px;
}
h2 {
  font-size: 46px;
}
h3 {
  font-size: 23px;
}
p {
  color: var(--muted);
}
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 5px;
}
a,
button {
  touch-action: manipulation;
}
.container {
  width: calc(100% - 112px);
  max-width: var(--container);
  margin-inline: auto;
}
.section {
  padding-block: var(--space);
}
.section-border {
  border-top: 1px solid var(--border);
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--accent);
  font-size: 10px;
  line-height: 1.5;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
  margin-bottom: 24px;
}
.eyebrow:before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--accent);
  flex-shrink: 0;
}
.section-kicker {
  font-size: 10px;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--muted);
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
  margin-bottom: 48px;
}
.section-head h2 {
  max-width: 650px;
}
.section-head > p {
  max-width: 365px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  padding-block: 8px;
}
.text-link svg,
.button svg {
  width: 17px;
  height: 17px;
  transition: transform var(--transition);
}
.text-link:hover svg,
.button:hover svg {
  transform: translateX(4px);
}
.text-link:hover {
  color: var(--accent);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-height: 49px;
  padding: 13px 23px;
  border: 1px solid var(--accent);
  border-radius: 2px;
  background: var(--accent);
  color: #0b1818;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
  transition:
    background var(--transition),
    border-color var(--transition),
    transform var(--transition);
}
.button:hover {
  background: #c8ffee;
  border-color: #c8ffee;
  transform: translateY(-2px);
}
.button.secondary {
  background: transparent;
  border-color: #53606a;
  color: var(--text);
}
.button.secondary:hover {
  background: #ffffff08;
  border-color: var(--muted);
}
.button:disabled {
  opacity: 0.5;
  cursor: wait;
  transform: none;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.skip-link {
  position: fixed;
  top: -80px;
  left: 16px;
  z-index: 100;
  background: var(--accent);
  color: var(--bg);
  padding: 12px 20px;
}
.skip-link:focus {
  top: 12px;
}
.site-header {
  height: 88px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition:
    background var(--transition),
    border-color var(--transition);
  border-bottom: 1px solid #ffffff10;
}
.site-header.scrolled,
.site-header.menu-active {
  background: #090d11ee;
  backdrop-filter: blur(16px);
  border-color: var(--border);
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0;
  line-height: 1;
}
.brand img {
  width: 29px;
  height: 31px;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 25px;
}
.desktop-nav > a {
  font-size: 11px;
  color: #bdc6ce;
  position: relative;
  padding-block: 12px;
  transition: color var(--transition);
}
.desktop-nav > a:hover,
.desktop-nav > a[aria-current="page"] {
  color: var(--text);
}
.desktop-nav > a[aria-current="page"]:after {
  content: "";
  height: 2px;
  background: var(--accent);
  position: absolute;
  bottom: 3px;
  left: 0;
  right: 0;
}
.header-cta {
  font-size: 11px;
  min-height: 40px;
  padding: 10px 16px;
  gap: 14px;
  background: transparent;
  color: var(--text);
  border-color: #ffffff40;
}
.menu-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 10px;
  width: 44px;
  height: 44px;
  position: relative;
}
.menu-toggle span {
  width: 23px;
  height: 1px;
  background: var(--text);
  position: absolute;
  left: 10px;
  transition:
    transform var(--transition),
    top var(--transition);
  top: 17px;
}
.menu-toggle span + span {
  top: 25px;
}
.menu-toggle[aria-expanded="true"] span {
  top: 21px;
  transform: rotate(45deg);
}
.menu-toggle[aria-expanded="true"] span + span {
  transform: rotate(-45deg);
}
.mobile-nav {
  display: none;
}
.hero {
  min-height: 740px;
  height: 92svh;
  max-height: 1040px;
  position: relative;
  display: flex;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    #090d11 0%,
    #090d11e8 22%,
    #090d1140 63%,
    #090d1100 100%
  );
  z-index: -1;
}
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}
.hero-content {
  position: relative;
  padding-top: 45px;
  padding-bottom: 85px;
}
.hero .eyebrow {
  margin-bottom: 32px;
}
.hero h1 {
  font-size: 76px;
  line-height: 1.08;
  max-width: 800px;
  font-weight: 500;
}
.hero h1 span {
  color: var(--accent);
}
.hero-description {
  max-width: 440px;
  font-size: 15px;
  line-height: 1.9;
  margin-top: 29px;
  margin-bottom: 33px;
}
.hero-bottom {
  position: absolute;
  bottom: 31px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 9px;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #8b9aa8;
}
.hero-bottom .scene-label {
  display: flex;
  gap: 9px;
  align-items: center;
}
.status-dot {
  height: 5px;
  width: 5px;
  display: inline-block;
  background: var(--accent);
}
.scroll-hint {
  display: flex;
  align-items: center;
  gap: 14px;
}
.scroll-hint span {
  height: 28px;
  width: 1px;
  background: #627581;
}
.category-strip {
  border-bottom: 1px solid var(--border);
  padding: 29px 0;
  background: #0c1116;
}
.category-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}
.category-caption {
  font-size: 8px;
  line-height: 1.7;
  letter-spacing: 0;
  color: #778797;
  max-width: 120px;
}
.categories {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  gap: 20px;
  max-width: 970px;
}
.categories span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0;
  color: #c4ccd3;
}
.intro-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 100px;
}
.intro-grid h2 {
  max-width: 750px;
}
.intro-copy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 34px;
}
.intro-copy p {
  font-size: 14px;
}
.intro-copy .text-link {
  margin-top: 18px;
}
.solution-section {
  background: #0d1319;
}
.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}
.solution-card {
  display: flex;
  flex-direction: column;
  min-height: 284px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 31px 30px;
  position: relative;
  transition: background var(--transition);
}
.solution-card:hover {
  background: #151e27;
}
.solution-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 35px;
}
.solution-icon {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.index {
  font-family: monospace;
  font-size: 10px;
  color: #81909e;
}
.solution-card h3 {
  font-size: 20px;
  margin-bottom: 13px;
}
.solution-card p {
  font-size: 12px;
  max-width: 320px;
  line-height: 1.85;
}
.card-arrow {
  position: absolute;
  right: 27px;
  bottom: 27px;
  width: 15px;
  height: 15px;
  color: #758594;
  transition:
    transform var(--transition),
    color var(--transition);
}
.solution-card:hover .card-arrow {
  transform: translate(3px, -3px);
  color: var(--accent);
}
.capability-layout {
  display: grid;
  grid-template-columns: 0.83fr 1.17fr;
  gap: 90px;
  align-items: start;
}
.capability-intro {
  position: sticky;
  top: 135px;
}
.capability-intro h2 {
  max-width: 470px;
}
.capability-intro p {
  margin-top: 25px;
  font-size: 14px;
  max-width: 370px;
}
.capability-intro .text-link {
  margin-top: 22px;
}
.capability-matrix {
  border-top: 1px solid var(--border);
}
.capability-row {
  display: grid;
  grid-template-columns: 125px 1fr;
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
  gap: 20px;
}
.capability-row > span {
  color: var(--accent);
  font-size: 10px;
  padding-top: 4px;
}
.capability-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 18px;
}
.capability-items span {
  font-size: 12px;
  color: #c6cfd7;
}
.architecture {
  background: #10171e;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.architecture-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
  align-items: center;
}
.architecture-copy p {
  max-width: 370px;
  margin-top: 25px;
  font-size: 14px;
}
.architecture-copy .text-link {
  margin-top: 22px;
}
.architecture-visual {
  position: relative;
  padding: 25px 0 25px 36px;
  border-left: 1px solid #39515e;
}
.architecture-visual:before,
.architecture-visual:after {
  content: "";
  position: absolute;
  left: -3px;
  width: 5px;
  height: 5px;
  background: var(--accent);
}
.architecture-visual:before {
  top: 0;
}
.architecture-visual:after {
  bottom: 0;
}
.architecture-layer {
  position: relative;
  padding: 20px 23px;
  background: #121e27;
  border: 1px solid #30414e;
  margin-block: 12px;
  transition:
    border-color var(--transition),
    background var(--transition);
}
.architecture-layer:hover {
  background: #192b34;
  border-color: #75b8ac;
}
.architecture-layer:before {
  content: "";
  position: absolute;
  left: -37px;
  top: 50%;
  width: 36px;
  height: 1px;
  background: #39515e;
}
.architecture-layer:first-child {
  border-color: #6fa195;
  background: #142821;
}
.layer-heading {
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.layer-heading span {
  color: #718a9a;
  font-family: monospace;
}
.layer-items {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 19px;
  font-size: 11px;
  color: #cbd4dc;
}
.principles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.principle {
  padding-top: 24px;
  border-top: 1px solid #42505b;
}
.principle .index {
  display: block;
  margin-bottom: 29px;
  color: var(--accent);
}
.principle h3 {
  font-size: 19px;
  margin-bottom: 17px;
}
.principle p {
  font-size: 12px;
  line-height: 1.9;
}
.technology-section {
  padding-top: 75px;
  padding-bottom: 75px;
  border-block: 1px solid var(--border);
}
.technology-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: center;
}
.technology-layout h2 {
  font-size: 35px;
}
.technology-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 25px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.technology-list li {
  font-size: 12px;
  color: #b4c0cb;
  display: flex;
  align-items: center;
  gap: 9px;
}
.technology-list li:before {
  content: "+";
  font-size: 15px;
  color: var(--accent);
}
.global-section {
  min-height: 520px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.global-section:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #090d11, #090d11b0 45%, transparent);
  z-index: -1;
}
.global-canvas {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  z-index: -2;
}
.global-section h2 {
  font-size: 53px;
  max-width: 630px;
}
.global-section p {
  font-size: 14px;
  max-width: 400px;
  margin-top: 25px;
}
.global-section .text-link {
  margin-top: 22px;
}
.insights-section {
  background: #0e141a;
}
.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 27px;
}
.insight-card {
  min-width: 0;
}
.insight-visual {
  aspect-ratio: 1.65;
  position: relative;
  overflow: hidden;
  background: #16232c;
  margin-bottom: 25px;
}
.insight-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms var(--ease);
}
.insight-card:hover .insight-visual img {
  transform: scale(1.045);
}
.insight-category {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 11px;
}
.insight-card h3 {
  font-size: 20px;
  line-height: 1.45;
  margin-bottom: 11px;
}
.insight-card p {
  font-size: 12px;
  line-height: 1.85;
}
.insight-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 22px;
  padding-top: 17px;
  border-top: 1px solid var(--border);
  font-size: 9px;
  color: #92a0ad;
}
.insight-meta svg {
  width: 15px;
  height: 15px;
}
.cta-section {
  border-block: 1px solid #3c5a55;
  background: linear-gradient(105deg, #13231f, #111c20 50%, #0d151b);
  padding-block: 75px;
}
.cta-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 55px;
}
.cta-layout h2 {
  font-size: 41px;
}
.cta-layout p {
  margin-top: 18px;
  font-size: 13px;
}
.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 12px;
  flex-shrink: 0;
}
.site-footer {
  padding-top: 70px;
  background: #080c10;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 0.8fr 0.8fr 0.65fr;
  gap: 35px;
  padding-bottom: 60px;
}
.footer-brand .brand {
  font-size: 24px;
}
.footer-brand p {
  max-width: 260px;
  font-size: 12px;
  margin-top: 22px;
}
.footer-heading {
  font-size: 9px;
  letter-spacing: 0;
  color: #e2e7ec;
  margin-bottom: 20px;
  font-weight: 600;
}
.footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.footer-list a,
.footer-list span {
  font-size: 11px;
  color: #8e9aa6;
}
.footer-list a:hover {
  color: var(--accent);
}
.footer-list .unavailable {
  color: #8e9aa6;
  display: flex;
  align-items: center;
  gap: 5px;
}
.unavailable small {
  font-size: 8px;
  color: #778592;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--border);
  padding-block: 22px;
  font-size: 9px;
  color: #7f8d99;
}
.footer-bottom a {
  color: #a4b2bd;
}
.footer-bottom .back-top {
  display: flex;
  gap: 10px;
  align-items: center;
}
.back-top svg {
  width: 13px;
  height: 13px;
}
.reveal {
  opacity: 1;
  transform: none;
}
.motion-ready .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 700ms var(--ease),
    transform 700ms var(--ease);
}
.motion-ready .reveal.is-visible {
  opacity: 1;
  transform: none;
}
.page-hero {
  padding: 175px 0 80px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  background: linear-gradient(125deg, #111e24 0%, #090d11 65%);
}
.page-hero h1 {
  font-size: 64px;
  max-width: 960px;
}
.page-hero h1 span {
  color: var(--accent);
}
.page-hero .lead {
  font-size: 16px;
  max-width: 620px;
  margin-top: 27px;
}
.page-hero .section-kicker {
  margin-top: 35px;
}
.page-hero .actions {
  margin-top: 32px;
}
.breadcrumb {
  display: flex;
  gap: 12px;
  font-size: 10px;
  color: var(--muted);
  margin-bottom: 28px;
}
.breadcrumb a:hover {
  color: var(--accent);
}
.split-section {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 95px;
}
.split-section .prose {
  max-width: 750px;
}
.prose h2 {
  font-size: 35px;
  margin-bottom: 24px;
}
.prose p + p {
  margin-top: 20px;
}
.prose p {
  font-size: 15px;
  line-height: 1.9;
}
.approach-list {
  counter-reset: approach;
  display: grid;
  gap: 0;
}
.approach-item {
  counter-increment: approach;
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 20px;
  border-top: 1px solid var(--border);
  padding-block: 28px;
}
.approach-item:before {
  content: "0" counter(approach);
  font-family: monospace;
  font-size: 11px;
  color: var(--accent);
}
.approach-item h3 {
  font-size: 22px;
  margin-bottom: 12px;
}
.approach-item p {
  font-size: 13px;
}
.solution-detail {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 100px;
  scroll-margin-top: 90px;
}
.solution-detail + .solution-detail {
  border-top: 1px solid var(--border);
}
.detail-title {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 22px;
}
.detail-title h2 {
  font-size: 39px;
}
.detail-content > p {
  font-size: 16px;
  line-height: 1.9;
}
.detail-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 38px;
  margin-top: 35px;
}
.detail-columns h3 {
  font-size: 15px;
  color: var(--accent);
  margin-bottom: 14px;
}
.detail-columns p,
.detail-columns li {
  font-size: 12px;
  color: var(--muted);
}
.detail-columns ul {
  padding-left: 17px;
  margin: 0;
}
.detail-columns li + li {
  margin-top: 7px;
}
.detail-outcome {
  border-left: 2px solid var(--accent);
  padding: 13px 0 13px 22px;
  margin-top: 30px;
  font-size: 13px;
  color: #c5d0d8;
}
.solution-jump {
  display: flex;
  gap: 12px 25px;
  flex-wrap: wrap;
  margin-top: 37px;
}
.solution-jump a {
  font-size: 11px;
  border-bottom: 1px solid #455763;
  padding-bottom: 4px;
}
.solution-jump a:hover {
  color: var(--accent);
}
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 20px;
}
.filter-button {
  border: 1px solid transparent;
  background: transparent;
  color: var(--muted);
  padding: 8px 15px;
  font-size: 11px;
  border-radius: 2px;
}
.filter-button[aria-pressed="true"] {
  background: #a9f3df12;
  border-color: #54776d;
  color: var(--accent);
}
.filter-button:hover {
  color: var(--text);
}
.publication-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 50px 32px;
}
.publication-grid .insight-card h3 {
  font-size: 27px;
}
.publication-grid .insight-card p {
  font-size: 14px;
}
.article-body {
  max-width: 760px;
  margin-inline: auto;
}
.article-body h2 {
  font-size: 30px;
  margin-top: 44px;
  margin-bottom: 18px;
}
.article-body h3 {
  font-size: 21px;
  margin-top: 30px;
  margin-bottom: 14px;
}
.article-body p,
.article-body li {
  font-size: 16px;
  line-height: 1.95;
  color: var(--muted);
}
.article-body p + p {
  margin-top: 22px;
}
.article-body .article-summary {
  font-size: 21px;
  line-height: 1.7;
  color: #d9e2e8;
  border-left: 2px solid var(--accent);
  padding-left: 25px;
  margin-bottom: 35px;
}
.article-body ul {
  padding-left: 22px;
}
.article-body li + li {
  margin-top: 10px;
}
.article-body .article-end {
  font-size: 12px;
  margin-top: 45px;
  padding-top: 25px;
  border-top: 1px solid var(--border);
}
.article-cover {
  max-width: 1100px;
  margin-inline: auto;
  margin-bottom: 65px;
  aspect-ratio: 2.7;
  overflow: hidden;
}
.article-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contact-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 100px;
}
.contact-aside h2 {
  font-size: 30px;
  margin-bottom: 22px;
}
.contact-aside p {
  font-size: 13px;
  max-width: 320px;
}
.contact-aside .contact-email {
  display: inline-block;
  color: var(--accent);
  font-size: 18px;
  margin-top: 25px;
  overflow-wrap: anywhere;
}
.contact-note {
  border-top: 1px solid var(--border);
  padding-top: 25px;
  margin-top: 35px;
}
.contact-note h3 {
  font-size: 15px;
  margin-bottom: 12px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.field.full {
  grid-column: 1/-1;
}
.field label {
  font-size: 11px;
  color: #d5dee5;
}
.field label span {
  color: var(--muted);
}
input,
select,
textarea {
  width: 100%;
  min-height: 49px;
  background: #0e151b;
  border: 1px solid #3c4b57;
  border-radius: 2px;
  color: var(--text);
  padding: 12px 14px;
  font-size: 13px;
  outline: none;
  transition: border-color var(--transition);
}
input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent);
  outline: 1px solid var(--accent);
  outline-offset: 1px;
}
input::placeholder,
textarea::placeholder {
  color: #738391;
}
textarea {
  min-height: 150px;
  resize: vertical;
}
select {
  color-scheme: dark;
}
.field-error {
  font-size: 11px;
  color: #ffb4ab;
  min-height: 0;
}
.field-error:empty {
  display: none;
}
[aria-invalid="true"] {
  border-color: #ffb4ab;
}
.consent {
  display: flex;
  align-items: start;
  gap: 11px;
  margin-top: 25px;
  font-size: 11px;
  color: var(--muted);
}
.consent input {
  appearance: none;
  width: 16px;
  height: 16px;
  min-height: 16px;
  flex-shrink: 0;
  padding: 0;
  margin: 3px 0 0;
  border-radius: 1px;
}
.consent input:checked {
  background: var(--accent);
  border-color: var(--accent);
}
.consent input:checked:after {
  content: "";
  display: block;
  width: 8px;
  height: 4px;
  border-left: 2px solid #14211d;
  border-bottom: 2px solid #14211d;
  transform: rotate(-45deg);
  margin: 3px 2px;
}
.consent a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.form-bottom {
  margin-top: 27px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}
.form-bottom p {
  font-size: 10px;
}
.form-status {
  font-size: 13px;
  padding: 16px 20px;
  border: 1px solid #506a63;
  background: #14241e;
  color: var(--accent);
  margin-bottom: 25px;
}
.form-status:empty {
  display: none;
}
.form-status.error {
  border-color: #805951;
  background: #261a1a;
  color: #ffb4ab;
}
.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.legal-layout {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 90px;
  align-items: start;
}
.legal-nav {
  position: sticky;
  top: 125px;
  display: grid;
  gap: 13px;
}
.legal-nav a {
  font-size: 12px;
  color: var(--muted);
}
.legal-nav a:hover {
  color: var(--accent);
}
.legal-content {
  max-width: 820px;
}
.legal-content section + section {
  margin-top: 38px;
}
.legal-content h2 {
  font-size: 25px;
  margin-bottom: 16px;
}
.legal-content p,
.legal-content li {
  font-size: 14px;
  line-height: 1.9;
}
.legal-content p + p {
  margin-top: 15px;
}
.legal-content a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-content ul {
  color: var(--muted);
  padding-left: 20px;
}
.legal-notice {
  border: 1px solid var(--border);
  padding: 22px;
  margin-bottom: 40px;
  background: #0d151a;
}
.error-page {
  position: relative;
  isolation: isolate;
  min-height: 85svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 150px 0 100px;
}
.error-page .error-code {
  font-family: monospace;
  font-size: 15px;
  color: var(--accent);
  margin-bottom: 25px;
  letter-spacing: 0;
}
.error-page h1 {
  font-size: 90px;
}
.error-page p {
  margin-top: 24px;
  max-width: 440px;
}
.error-page .actions {
  margin-top: 35px;
}
[hidden] {
  display: none !important;
}
@media (min-width: 1600px) {
  .hero h1 {
    font-size: 88px;
  }
  .hero-description {
    font-size: 16px;
  }
  .hero-content {
    padding-top: 30px;
  }
  .hero {
    min-height: 830px;
  }
  .desktop-nav {
    gap: 30px;
  }
  .desktop-nav > a {
    font-size: 12px;
  }
}
@media (max-width: 1200px) {
  .container {
    width: calc(100% - 72px);
  }
  .desktop-nav {
    gap: 17px;
  }
  .desktop-nav > a {
    font-size: 10px;
  }
  .header-inner {
    gap: 20px;
  }
  .brand {
    font-size: 19px;
  }
  .header-cta {
    font-size: 10px;
    padding-inline: 12px;
  }
  .hero h1 {
    font-size: 66px;
  }
  .intro-grid {
    gap: 55px;
    grid-template-columns: 0.55fr 1.45fr;
  }
  .capability-layout,
  .architecture-grid,
  .contact-layout,
  .solution-detail {
    gap: 55px;
  }
  .footer-grid {
    gap: 24px;
    grid-template-columns: 1.4fr 1fr 0.8fr 0.8fr 0.7fr;
  }
  .footer-brand .brand {
    font-size: 20px;
  }
  .category-caption {
    max-width: 110px;
  }
  .categories {
    gap: 14px;
  }
  .categories span {
    font-size: 9px;
  }
  .hero {
    min-height: 730px;
  }
  .principles-grid {
    gap: 24px;
  }
  .principle h3 {
    font-size: 17px;
  }
  .legal-layout {
    gap: 60px;
  }
}
@media (max-width: 1024px) {
  :root {
    --space: 80px;
  }
  .desktop-nav,
  .header-cta {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .site-header {
    height: 76px;
  }
  .brand {
    font-size: 22px;
  }
  .mobile-nav:not([hidden]) {
    display: flex;
    position: fixed;
    inset: 76px 0 0;
    background: #090d11;
    flex-direction: column;
    padding: 36px;
    gap: 4px;
    overflow: auto;
  }
  .mobile-nav > a:not(.button) {
    font-size: 26px;
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
  }
  .mobile-nav > .button {
    margin-top: 20px;
    align-self: start;
  }
  .hero {
    min-height: 710px;
    max-height: 900px;
  }
  .hero h1 {
    font-size: 64px;
    max-width: 720px;
  }
  .hero:after {
    background: linear-gradient(90deg, #090d11ed, #090d1170 80%, #090d1140);
  }
  .hero-description {
    max-width: 415px;
  }
  .category-inner {
    align-items: start;
  }
  .categories {
    flex-wrap: wrap;
    justify-content: start;
    gap: 15px 29px;
  }
  .categories span {
    font-size: 10px;
  }
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .intro-grid h2 {
    max-width: 770px;
  }
  .intro-copy {
    max-width: 770px;
  }
  .solution-card {
    padding: 25px;
    min-height: 290px;
  }
  .solution-card h3 {
    font-size: 18px;
  }
  .capability-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .capability-intro {
    position: static;
  }
  .capability-intro h2 {
    max-width: 650px;
  }
  .capability-intro p {
    max-width: 550px;
  }
  .capability-row {
    grid-template-columns: 180px 1fr;
  }
  .architecture-grid {
    gap: 45px;
    grid-template-columns: 1fr 1.2fr;
  }
  .architecture-copy h2 {
    font-size: 38px;
  }
  .architecture-visual {
    padding-left: 23px;
  }
  .architecture-layer:before {
    left: -24px;
    width: 23px;
  }
  .architecture-layer {
    padding: 18px;
  }
  .layer-items {
    font-size: 10px;
    gap: 7px 12px;
  }
  .principles-grid {
    grid-template-columns: 1fr 1fr;
    gap: 35px;
  }
  .technology-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
  }
  .footer-brand {
    grid-column: 1/-1;
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 30px;
  }
  .footer-brand p {
    margin: 0;
    max-width: 300px;
  }
  .cta-layout h2 {
    font-size: 35px;
  }
  .cta-layout {
    gap: 30px;
  }
  .page-hero h1 {
    font-size: 55px;
  }
  .split-section {
    grid-template-columns: 0.6fr 1.4fr;
    gap: 45px;
  }
  .contact-layout {
    grid-template-columns: 0.7fr 1.3fr;
    gap: 40px;
  }
  .contact-aside .contact-email {
    font-size: 15px;
  }
  .legal-layout {
    grid-template-columns: 180px 1fr;
    gap: 45px;
  }
  .solution-detail {
    gap: 45px;
  }
  .detail-title h2 {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  :root {
    --space: 65px;
  }
  .container {
    width: calc(100% - 40px);
  }
  h2 {
    font-size: 34px;
  }
  h3 {
    font-size: 21px;
  }
  .site-header {
    height: 72px;
  }
  .brand {
    font-size: 20px;
    gap: 9px;
  }
  .brand img {
    width: 25px;
    height: 27px;
  }
  .mobile-nav:not([hidden]) {
    inset: 72px 0 0;
    padding: 24px;
  }
  .hero {
    height: auto;
    min-height: 790px;
    max-height: none;
    align-items: start;
  }
  .hero-content {
    padding-top: 153px;
    padding-bottom: 180px;
  }
  .hero h1 {
    font-size: 48px;
    line-height: 1.13;
    max-width: 550px;
  }
  .hero .eyebrow {
    font-size: 8px;
    letter-spacing: 0;
    margin-bottom: 25px;
  }
  .hero-description {
    font-size: 13px;
    max-width: 350px;
    margin-top: 26px;
    line-height: 1.85;
  }
  .hero:after {
    background: linear-gradient(
      180deg,
      #090d1170 0%,
      #090d11d0 18%,
      #090d11a0 62%,
      #090d1100
    );
  }
  .hero-bottom {
    bottom: 24px;
    font-size: 8px;
    letter-spacing: 0;
  }
  .scene-label {
    max-width: 165px;
  }
  .hero .button {
    font-size: 11px;
    padding: 12px 17px;
    gap: 13px;
  }
  .actions {
    gap: 12px;
  }
  .category-strip {
    padding: 24px 0;
  }
  .category-inner {
    display: block;
  }
  .category-caption {
    max-width: none;
    margin-bottom: 20px;
    font-size: 8px;
  }
  .category-caption br {
    display: none;
  }
  .categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 19px 10px;
  }
  .categories span {
    font-size: 8px;
    letter-spacing: 0;
  }
  .eyebrow {
    font-size: 9px;
    margin-bottom: 18px;
  }
  .intro-copy {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 24px;
  }
  .intro-grid {
    gap: 17px;
  }
  .intro-copy p {
    font-size: 13px;
  }
  .section-head {
    display: block;
    margin-bottom: 32px;
  }
  .section-head .text-link,
  .section-head > p {
    margin-top: 22px;
  }
  .section-head > p {
    font-size: 13px;
  }
  .solution-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .solution-card {
    padding: 22px 18px;
    min-height: 286px;
  }
  .solution-card h3 {
    font-size: 17px;
    line-height: 1.3;
  }
  .solution-card p {
    font-size: 11px;
    line-height: 1.8;
  }
  .solution-top {
    margin-bottom: 26px;
  }
  .solution-icon {
    width: 28px;
    height: 28px;
  }
  .card-arrow {
    right: 17px;
    bottom: 17px;
    width: 13px;
    height: 13px;
  }
  .index {
    font-size: 9px;
  }
  .capability-row {
    grid-template-columns: 90px 1fr;
    gap: 15px;
    padding-block: 21px;
  }
  .capability-row > span {
    font-size: 9px;
  }
  .capability-items {
    gap: 11px 15px;
  }
  .capability-items span {
    font-size: 10px;
  }
  .capability-intro p {
    font-size: 13px;
  }
  .architecture-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .architecture-copy h2 {
    font-size: 34px;
  }
  .architecture-copy p {
    font-size: 13px;
  }
  .architecture-visual {
    margin-left: 3px;
    padding-left: 24px;
  }
  .architecture-layer {
    padding: 19px;
  }
  .layer-items {
    font-size: 10px;
    gap: 8px 16px;
  }
  .layer-heading {
    font-size: 8px;
  }
  .principles-grid {
    gap: 30px 23px;
  }
  .principle h3 {
    font-size: 17px;
  }
  .principle p {
    font-size: 11px;
  }
  .principle .index {
    margin-bottom: 22px;
  }
  .technology-section {
    padding-block: 50px;
  }
  .technology-layout h2 {
    font-size: 30px;
  }
  .technology-list {
    gap: 13px 20px;
  }
  .technology-list li {
    font-size: 11px;
  }
  .global-section {
    min-height: 515px;
    align-items: start;
    padding-top: 65px;
  }
  .global-section h2 {
    font-size: 38px;
    max-width: 420px;
  }
  .global-section p {
    font-size: 13px;
    max-width: 320px;
  }
  .global-section:after {
    background: linear-gradient(180deg, #090d11a0, #090d1170 60%, #090d1100);
  }
  .insights-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .insight-visual {
    aspect-ratio: 1.85;
    margin-bottom: 20px;
  }
  .insight-card h3 {
    font-size: 22px;
  }
  .insight-card p {
    font-size: 13px;
  }
  .insight-meta {
    margin-top: 17px;
  }
  .cta-section {
    padding-block: 55px;
  }
  .cta-layout {
    display: block;
  }
  .cta-layout h2 {
    font-size: 34px;
  }
  .cta-layout p {
    font-size: 13px;
    max-width: 340px;
  }
  .cta-actions {
    margin-top: 28px;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
  }
  .cta-actions .button {
    font-size: 11px;
    padding-inline: 17px;
  }
  .site-footer {
    padding-top: 50px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding-bottom: 45px;
  }
  .footer-brand {
    display: block;
    grid-column: 1/-1;
    margin-bottom: 5px;
  }
  .footer-brand p {
    margin-top: 20px;
    max-width: 255px;
  }
  .footer-heading {
    margin-bottom: 15px;
  }
  .footer-list {
    gap: 9px;
  }
  .footer-bottom {
    flex-wrap: wrap;
    gap: 14px;
    font-size: 8px;
  }
  .footer-bottom .back-top {
    margin-left: auto;
  }
  .page-hero {
    padding: 133px 0 55px;
  }
  .page-hero h1 {
    font-size: 42px;
  }
  .page-hero .lead {
    font-size: 14px;
    margin-top: 23px;
  }
  .breadcrumb {
    font-size: 9px;
    margin-bottom: 24px;
  }
  .split-section {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .prose h2 {
    font-size: 31px;
  }
  .prose p {
    font-size: 14px;
  }
  .approach-item {
    grid-template-columns: 30px 1fr;
    gap: 13px;
  }
  .approach-item h3 {
    font-size: 20px;
  }
  .approach-item p {
    font-size: 12px;
  }
  .solution-detail {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .detail-title {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 17px;
  }
  .detail-title h2 {
    font-size: 31px;
    flex-basis: 100%;
  }
  .detail-content > p {
    font-size: 14px;
  }
  .detail-columns {
    gap: 25px;
    margin-top: 27px;
  }
  .detail-columns h3 {
    font-size: 14px;
  }
  .detail-columns p,
  .detail-columns li {
    font-size: 12px;
  }
  .detail-outcome {
    font-size: 12px;
  }
  .solution-jump {
    gap: 13px 20px;
  }
  .solution-jump a {
    font-size: 10px;
  }
  .publication-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .publication-grid .insight-card h3 {
    font-size: 24px;
  }
  .filter-bar {
    gap: 5px;
  }
  .filter-button {
    font-size: 10px;
    padding: 8px 11px;
  }
  .article-cover {
    margin-bottom: 40px;
    aspect-ratio: 1.7;
  }
  .article-body .article-summary {
    font-size: 18px;
    padding-left: 18px;
  }
  .article-body h2 {
    font-size: 27px;
  }
  .article-body p,
  .article-body li {
    font-size: 14px;
  }
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-aside h2 {
    font-size: 28px;
  }
  .contact-aside .contact-email {
    font-size: 18px;
  }
  .contact-note {
    margin-top: 25px;
    padding-top: 20px;
  }
  .contact-aside p {
    max-width: 500px;
  }
  .form-grid {
    gap: 21px 16px;
  }
  .legal-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .legal-nav {
    position: static;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 27px;
  }
  .legal-nav a {
    font-size: 11px;
  }
  .legal-content h2 {
    font-size: 23px;
  }
  .legal-content p,
  .legal-content li {
    font-size: 13px;
  }
  .legal-notice {
    padding: 18px;
  }
  .error-page {
    min-height: 750px;
    padding-top: 160px;
    align-items: start;
  }
  .error-page h1 {
    font-size: 66px;
  }
  .error-page p {
    font-size: 14px;
    max-width: 300px;
  }
}
@media (max-width: 390px) {
  .hero h1 {
    font-size: 43px;
  }
  .hero-content {
    padding-top: 142px;
  }
  .hero {
    min-height: 775px;
  }
  .hero .actions {
    align-items: start;
    flex-direction: column;
    gap: 12px;
  }
  .hero .button {
    min-height: 44px;
  }
  .hero-description {
    margin-bottom: 27px;
  }
  .solution-card {
    padding: 20px 15px;
    min-height: 306px;
  }
  .solution-card h3 {
    font-size: 16px;
  }
  .capability-row {
    grid-template-columns: 76px 1fr;
    gap: 10px;
  }
  .capability-items {
    gap: 12px 10px;
  }
  .capability-items span {
    font-size: 9px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .field.full {
    grid-column: auto;
  }
  .page-hero h1 {
    font-size: 37px;
  }
  .global-section h2 {
    font-size: 35px;
  }
  .footer-bottom > a:not(.back-top) {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
  .motion-ready .reveal {
    opacity: 1;
    transform: none;
  }
}
