:root {
  --ink: #082d46;
  --ink-deep: #031b2b;
  --copy: #344c5d;
  --muted: #4d6573;
  --line: #cbd8df;
  --line-dark: #315065;
  --paper: #ffffff;
  --soft: #f2f6f7;
  --soft-blue: #eaf2f5;
  --gold: #c99716;
  --gold-text: #765500;
  --gold-light: #e1b946;
  --teal: #087f87;
  --green: #3a7654;
  --max: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--copy);
  font-family: "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic ProN", "Meiryo", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.8;
  overflow-x: hidden;
}

body,
button,
input,
textarea,
select {
  font-family: inherit;
}

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

a,
button,
summary {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid #1e98a2;
  outline-offset: 4px;
}

img {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
p,
figure,
dl,
dd {
  margin-top: 0;
}

h1,
h2,
h3,
strong,
small,
a,
p,
li,
summary {
  overflow-wrap: anywhere;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  background: var(--paper);
  color: var(--ink);
  font-weight: 700;
  transform: translateY(-180%);
}

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

.shell {
  width: min(calc(100% - 48px), var(--max));
  margin-inline: auto;
}

.hub-breadcrumb {
  border-bottom: 1px solid var(--line);
  background: #f7f9fa;
}

.hub-breadcrumb ol {
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  padding: 0;
  color: #526875;
  font-size: 11px;
  font-weight: 700;
  list-style: none;
}

.hub-breadcrumb li + li::before {
  margin-right: 12px;
  color: #8a9aa3;
  content: ">";
}

.hub-breadcrumb a {
  color: var(--ink);
}

.hub-breadcrumb a:hover,
.hub-breadcrumb a:focus-visible {
  color: var(--teal);
}

.utility-bar {
  background: var(--ink-deep);
  color: #d9e5ea;
  font-size: 11px;
  font-weight: 700;
}

.utility-bar__inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.utility-bar a {
  color: #ffffff;
}

.utility-bar a:hover,
.utility-bar a:focus-visible {
  color: var(--gold-light);
}

.site-header {
  position: relative;
  z-index: 30;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.primary-nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: 122px;
  height: 53px;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
}

.desktop-nav a {
  position: relative;
  padding: 8px 0;
  white-space: nowrap;
}

.desktop-nav a:not(.nav-contact)::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
}

.desktop-nav .nav-contact {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background: var(--ink);
  color: #ffffff;
}

.desktop-nav .nav-contact:hover,
.desktop-nav .nav-contact:focus-visible {
  background: var(--teal);
}

.mobile-menu {
  display: none;
  position: relative;
}

.mobile-menu summary {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  cursor: pointer;
  list-style: none;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu summary span,
.mobile-menu summary span::before,
.mobile-menu summary span::after {
  width: 20px;
  height: 2px;
  display: block;
  background: var(--ink);
  content: "";
}

.mobile-menu summary span {
  position: relative;
}

.mobile-menu summary span::before {
  position: absolute;
  top: -6px;
  left: 0;
}

.mobile-menu summary span::after {
  position: absolute;
  top: 6px;
  left: 0;
}

.mobile-menu nav {
  position: absolute;
  top: 52px;
  right: 0;
  width: min(310px, calc(100vw - 32px));
  padding: 8px;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 16px 40px rgba(3, 27, 43, .18);
}

.mobile-menu nav a {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 8px 12px;
  color: var(--ink);
  border-bottom: 1px solid #e5ecef;
  font-size: 14px;
  font-weight: 700;
}

.mobile-menu nav a:last-child {
  margin-top: 8px;
  background: var(--gold);
  border-bottom: 0;
}

.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  isolation: isolate;
  background-color: var(--ink-deep);
  background-image: url("../images/physical-ai-platform.webp");
  background-position: center;
  background-size: cover;
  color: #ffffff;
}

.hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: rgba(3, 22, 36, .76);
  content: "";
}

.hero__content {
  padding-block: 52px 56px;
}

.eyebrow {
  margin-bottom: 14px;
  color: #896400;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow--light {
  color: var(--gold-light);
}

.hero h1 {
  max-width: 1080px;
  margin-bottom: 22px;
  color: #ffffff;
  font-size: 52px;
  line-height: 1.35;
  font-weight: 700;
}

.hero h1 span {
  display: block;
}

.hero h1 .hero-title-line {
  display: flex;
  flex-wrap: wrap;
  column-gap: .18em;
}

.hero h1 .hero-title-line > span {
  display: inline;
  white-space: nowrap;
}

.hero__verbs b {
  display: inline-block;
  margin-right: .12em;
  font-weight: inherit;
}

.hero__verbs b:last-child {
  margin-right: 0;
}

.hero__support {
  margin: -6px 0 18px;
  color: #c1d2d9;
  font-size: 11px;
  font-weight: 800;
}

.hero__lead {
  max-width: 820px;
  margin-bottom: 16px;
  color: #edf4f6;
  font-size: 18px;
  line-height: 1.9;
  font-weight: 600;
}

.hero__mission {
  margin-bottom: 0;
  padding-left: 14px;
  color: #ffffff;
  border-left: 3px solid var(--gold);
  font-size: 15px;
  font-weight: 700;
}

.hero__product-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 18px;
  padding-bottom: 2px;
  color: #d9e6eb;
  border-bottom: 1px solid #78909d;
  font-size: 12px;
  font-weight: 700;
}

.hero__product-link:hover,
.hero__product-link:focus-visible {
  color: var(--gold-light);
  border-color: var(--gold-light);
}

.section--definition {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.definition-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(420px, .85fr);
  gap: 68px;
  align-items: start;
}

.definition-copy h2 {
  max-width: 860px;
  margin-bottom: 22px;
  color: var(--ink);
  font-size: 40px;
  line-height: 1.45;
}

.definition-lead {
  max-width: 820px;
  margin-bottom: 20px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 600;
  line-height: 2;
}

.definition-company {
  max-width: 820px;
  margin-bottom: 0;
  padding-left: 16px;
  color: var(--copy);
  border-left: 3px solid var(--gold);
  font-size: 14px;
  line-height: 1.9;
}

.company-hierarchy {
  margin-bottom: 0;
  border-top: 1px solid var(--line);
}

.company-hierarchy div {
  padding: 18px 4px;
  border-bottom: 1px solid var(--line);
}

.company-hierarchy dt {
  margin-bottom: 6px;
  color: var(--teal);
  font-size: 10px;
  font-weight: 800;
}

.company-hierarchy dd {
  margin-bottom: 0;
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.7;
}

.section--architecture {
  overflow: hidden;
  background: var(--ink-deep);
  color: #d7e3e8;
}

.architecture-heading {
  max-width: 980px;
}

.architecture-flow {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.architecture-flow li {
  position: relative;
  min-width: 0;
  min-height: 254px;
  padding: 22px 16px;
  background: #0a3249;
  border-top: 3px solid var(--teal);
  border-bottom: 1px solid var(--line-dark);
}

.architecture-flow li:nth-child(2) {
  border-top-color: var(--gold-light);
}

.architecture-flow li:nth-child(3) {
  border-top-color: #6ba17e;
}

.architecture-flow li:nth-child(4) {
  border-top-color: #5b91ae;
}

.architecture-flow li:nth-child(5) {
  border-top-color: #b087c4;
}

.architecture-flow li:nth-child(6) {
  border-top-color: #bd7593;
}

.architecture-flow li:not(:last-child)::after {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: -13px;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  color: var(--gold-light);
  content: "→";
  font-size: 18px;
  transform: translateY(-50%);
}

.architecture-flow li > span {
  display: block;
  margin-bottom: 22px;
  color: #a9c1cc;
  font-size: 10px;
  font-weight: 800;
}

.architecture-flow strong {
  display: block;
  margin-bottom: 12px;
  color: var(--gold-light);
  font-size: 13px;
}

.architecture-flow h3 {
  margin-bottom: 12px;
  color: #ffffff;
  font-size: 15px;
  line-height: 1.55;
}

.architecture-flow p {
  margin-bottom: 0;
  color: #c2d3da;
  font-size: 12px;
  line-height: 1.7;
}

.architecture-loop {
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  margin: 18px 0 0;
  padding: 16px 20px;
  color: #ffffff;
  border: 1px solid var(--line-dark);
  background: #06263a;
}

.architecture-loop > span {
  color: var(--gold-light);
  font-size: 24px;
}

.architecture-loop strong {
  font-size: 14px;
}

.architecture-loop p {
  margin-bottom: 0;
  color: #b9cbd3;
  font-size: 12px;
}

.architecture-engine {
  display: grid;
  grid-template-columns: minmax(290px, .7fr) minmax(0, 1.3fr);
  gap: 36px;
  align-items: center;
  margin-top: 24px;
  padding: 24px 28px;
  background: var(--gold-light);
  color: var(--ink-deep);
}

.architecture-engine > div span,
.architecture-engine > div strong {
  display: block;
}

.architecture-engine > div span {
  margin-bottom: 5px;
  font-size: 10px;
  font-weight: 800;
}

.architecture-engine > div strong {
  font-size: 16px;
  line-height: 1.45;
}

.architecture-engine ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.architecture-engine li {
  position: relative;
  padding-left: 14px;
  font-size: 12px;
  font-weight: 700;
}

.architecture-engine li::before {
  position: absolute;
  top: .75em;
  left: 0;
  width: 5px;
  height: 5px;
  background: var(--ink);
  content: "";
}

.actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 26px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 20px;
  border: 1px solid var(--ink);
  border-radius: 2px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
  overflow-wrap: normal;
  word-break: keep-all;
}

.button:hover,
.button:focus-visible {
  background: var(--teal);
  border-color: var(--teal);
  color: #ffffff;
}

.button--gold {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink-deep);
}

.button--light {
  background: rgba(255, 255, 255, .08);
  border-color: #d5e3e8;
  color: #ffffff;
}

.button--ink {
  margin-top: 24px;
  background: var(--ink);
  color: #ffffff;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding-block: 10px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  border-bottom: 1px solid var(--gold);
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--teal);
  border-color: var(--teal);
}

.text-link--light {
  color: #ffffff;
}

.section {
  padding: 94px 0;
}

.section--paper {
  background: var(--paper);
}

.section--ink {
  background: var(--ink-deep);
  color: #d7e3e8;
}

.section--research {
  background: var(--soft-blue);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section--aidc {
  background: #f8f9f7;
}

.section--evidence {
  background: var(--soft);
}

.section--faq {
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.section-heading {
  max-width: 850px;
  margin-bottom: 42px;
}

.section-heading h2,
.definition-copy h2,
.research-copy h2,
.aidc-copy h2,
.network-layout h2,
.product-proof-layout h2,
.ip-layout h2,
.faq-layout h2 {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: 38px;
  line-height: 1.45;
  font-weight: 700;
}

.heading-phrase {
  display: inline-block;
}

.section-heading > p:last-child,
.section-lead,
.faq-layout header > p:last-child {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--copy);
  font-size: 16px;
  line-height: 1.9;
}

.section-heading--light h2 {
  color: #ffffff;
}

.section-heading--light > p:last-child {
  color: #b9cbd3;
}

.challenge-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.challenge-card {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-top: 3px solid var(--teal);
  border-radius: 6px;
}

.challenge-card:nth-child(3n + 2) {
  border-top-color: var(--gold);
}

.challenge-card:nth-child(3n) {
  border-top-color: var(--green);
}

.challenge-card--manufacturing {
  min-height: 0;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 160px minmax(240px, .7fr) minmax(320px, 1.3fr);
  gap: 24px;
  align-items: center;
  border-top-color: var(--ink);
}

.challenge-card--manufacturing .card-index,
.challenge-card--manufacturing h3,
.challenge-card--manufacturing p {
  min-height: 0;
  margin-bottom: 0;
}

.challenge-card--manufacturing .card-links {
  grid-column: 2 / -1;
  margin-top: -6px;
}

.manufacturing-bridge {
  display: grid;
  grid-template-columns: minmax(280px, .7fr) minmax(0, 1.3fr);
  gap: 26px 54px;
  align-items: start;
  margin-top: 38px;
  padding: 34px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.manufacturing-bridge .eyebrow {
  margin-bottom: 10px;
}

.manufacturing-bridge h3 {
  margin-bottom: 0;
  color: var(--ink);
  font-size: 26px;
  line-height: 1.5;
}

.manufacturing-bridge > p {
  margin-bottom: 0;
  color: var(--copy);
  font-size: 14px;
  line-height: 1.9;
}

.manufacturing-bridge > a {
  grid-column: 2;
  justify-self: start;
}

.card-index {
  display: block;
  margin-bottom: 20px;
  color: var(--gold-text);
  font-size: 13px;
  font-weight: 800;
}

.challenge-card h3 {
  min-height: 58px;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.45;
}

.challenge-card p {
  margin-bottom: 20px;
  color: var(--copy);
  font-size: 14px;
  line-height: 1.8;
}

.card-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-top: auto;
}

.card-links a {
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  border-bottom: 1px solid var(--gold);
}

.card-links a:hover,
.card-links a:focus-visible {
  color: var(--teal);
  border-color: var(--teal);
}

.technology-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.technology-card {
  min-width: 0;
  overflow: hidden;
  background: #0b354e;
  border: 1px solid var(--line-dark);
  border-radius: 6px;
}

.technology-card figure {
  width: 100%;
  aspect-ratio: 16 / 8;
  margin-bottom: 0;
  overflow: hidden;
  background: #ffffff;
  border-bottom: 1px solid var(--line-dark);
}

.technology-card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.technology-card .technology-card__figure--contain img {
  object-fit: contain;
}

.technology-card__body {
  min-height: 365px;
  display: flex;
  flex-direction: column;
  padding: 28px;
}

.technology-card__body > span {
  margin-bottom: 14px;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 800;
}

.technology-card h3 {
  margin-bottom: 14px;
  color: #ffffff;
  font-size: 23px;
  line-height: 1.5;
}

.technology-card p {
  margin-bottom: 16px;
  color: #d7e3e8;
  font-size: 14px;
  line-height: 1.9;
}

.technology-card small {
  display: block;
  margin-bottom: 20px;
  color: #9bb4bf;
  font-size: 12px;
  line-height: 1.7;
}

.technology-card a {
  align-self: flex-start;
  margin-top: auto;
  padding-bottom: 3px;
  color: #ffffff;
  border-bottom: 1px solid var(--gold);
  font-size: 13px;
  font-weight: 800;
}

.technology-card a:hover,
.technology-card a:focus-visible {
  color: var(--gold-light);
}

.technology-note {
  max-width: 920px;
  margin: 30px 0 0;
  padding: 18px 20px;
  color: #d8e4e8;
  border-left: 3px solid var(--gold);
  background: #092b40;
  font-size: 14px;
  line-height: 1.8;
}

.research-layout {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(520px, 1.18fr);
  gap: 68px;
  align-items: start;
}

.research-copy {
  position: sticky;
  top: 28px;
}

.research-copy p:not(.eyebrow) {
  margin-bottom: 0;
  color: var(--copy);
  font-size: 16px;
  line-height: 1.95;
}

.implementation-flow {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #afc2ca;
}

.implementation-flow li {
  min-height: 80px;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) minmax(140px, .65fr);
  gap: 18px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid #afc2ca;
}

.implementation-flow li > span {
  color: var(--gold-text);
  font-size: 13px;
  font-weight: 800;
}

.implementation-flow strong {
  color: var(--ink);
  font-size: 16px;
  line-height: 1.5;
}

.implementation-flow small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.aidc-layout {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(520px, 1.12fr);
  gap: 58px;
  align-items: center;
}

.aidc-copy h2 {
  font-size: 42px;
}

.aidc-lead {
  color: var(--ink);
  font-size: 17px;
  line-height: 1.95;
  font-weight: 600;
}

.aidc-copy > p:not(.eyebrow):not(.aidc-lead):not(.aidc-note) {
  color: var(--copy);
  font-size: 14px;
  line-height: 1.9;
}

.aidc-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.aidc-metrics div {
  min-width: 0;
  padding: 18px 14px;
  border-right: 1px solid var(--line);
}

.aidc-metrics div:last-child {
  border-right: 0;
}

.aidc-metrics dt {
  margin-bottom: 5px;
  color: var(--teal);
  font-size: 10px;
  font-weight: 800;
}

.aidc-metrics dd {
  margin-bottom: 0;
  color: var(--ink);
  font-size: 19px;
  font-weight: 800;
  line-height: 1.4;
}

.aidc-note {
  margin: 24px 0 0;
  padding-left: 14px;
  border-left: 3px solid var(--gold);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
}

.aidc-figure {
  margin-bottom: 0;
}

.aidc-figure img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: var(--paper);
  border: 1px solid var(--line);
}

.aidc-figure figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.75;
}

.edge-core-diagram {
  margin-top: 54px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.edge-core-diagram header {
  display: grid;
  grid-template-columns: minmax(190px, .45fr) minmax(0, 1.55fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 22px;
}

.edge-core-diagram header .eyebrow {
  margin-bottom: 4px;
}

.edge-core-diagram h3 {
  margin-bottom: 0;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.5;
}

.edge-core-flow {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.edge-core-flow li {
  position: relative;
  min-width: 0;
  min-height: 146px;
  padding: 18px 14px;
  background: #eef4f6;
  border-top: 3px solid var(--teal);
}

.edge-core-flow li:nth-child(3),
.edge-core-flow li:nth-child(6) {
  border-top-color: var(--gold-text);
}

.edge-core-flow li:not(:last-child)::after {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: -12px;
  width: 18px;
  color: var(--gold-text);
  content: "→";
  font-weight: 800;
  transform: translateY(-50%);
}

.edge-core-flow span,
.edge-core-flow strong,
.edge-core-flow small {
  display: block;
}

.edge-core-flow span {
  margin-bottom: 12px;
  color: var(--gold-text);
  font-size: 9px;
  font-weight: 800;
}

.edge-core-flow strong {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.45;
}

.edge-core-flow small {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.edge-core-diagram > p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.75;
}

.network-layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(520px, 1.1fr);
  gap: 76px;
  align-items: center;
}

.network-copy .section-lead {
  margin-bottom: 18px;
}

.network-public-note {
  margin: 0 0 22px;
  padding-left: 14px;
  color: var(--muted);
  border-left: 3px solid var(--gold-text);
  font-size: 13px;
  line-height: 1.8;
}

.expert-network {
  position: relative;
  min-height: 540px;
  display: grid;
  place-items: center;
  padding: 26px;
  overflow: hidden;
  background: #edf3f5;
  border: 1px solid var(--line);
}

.expert-network::before,
.expert-network::after {
  position: absolute;
  inset: 50% auto auto 50%;
  border: 1px solid #b6cbd3;
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%);
}

.expert-network::before {
  width: 72%;
  aspect-ratio: 1;
}

.expert-network::after {
  width: 44%;
  aspect-ratio: 1;
}

.expert-network__center {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 170px;
  min-height: 112px;
  display: grid;
  place-content: center;
  padding: 18px;
  text-align: center;
  background: var(--ink);
  color: #ffffff;
  border: 3px solid var(--gold-light);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.expert-network__center strong,
.expert-network__center span {
  display: block;
}

.expert-network__center strong {
  font-size: 14px;
}

.expert-network__center span {
  margin-top: 4px;
  color: #d7e3e8;
  font-size: 8px;
  font-weight: 700;
}

.expert-network__domains {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(4, minmax(88px, auto));
  gap: 18px 150px;
  align-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.expert-network__domains li {
  min-width: 0;
  display: grid;
  align-content: center;
  padding: 12px 14px;
  background: rgba(255, 255, 255, .94);
  border-left: 3px solid var(--teal);
  box-shadow: 0 8px 24px rgba(3, 27, 43, .08);
}

.expert-network__domains li:nth-child(even) {
  border-left-color: var(--gold-text);
}

.expert-network__domains li:last-child {
  grid-column: 1 / -1;
  width: min(240px, 100%);
  justify-self: center;
}

.expert-network__domains span,
.expert-network__domains strong,
.expert-network__domains small {
  display: block;
}

.expert-network__domains span {
  color: var(--gold-text);
  font-size: 9px;
  font-weight: 800;
}

.expert-network__domains strong {
  color: var(--ink);
  font-size: 12px;
  line-height: 1.35;
}

.expert-network__domains small {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.45;
}

.domain-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.domain-list li {
  min-height: 64px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 4px;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  font-weight: 700;
}

.domain-list li:nth-child(odd) {
  padding-right: 20px;
  border-right: 1px solid var(--line);
}

.domain-list li:nth-child(even) {
  padding-left: 20px;
}

.domain-list span {
  color: var(--gold-text);
  font-size: 11px;
}

.evidence-stack {
  border-top: 1px solid var(--line);
}

.evidence-layer {
  display: grid;
  grid-template-columns: minmax(240px, .65fr) minmax(0, 1.35fr);
  border-bottom: 1px solid var(--line);
}

.evidence-layer > header {
  padding: 24px 28px 24px 0;
  border-right: 1px solid var(--line);
}

.evidence-layer > header span {
  display: block;
  margin-bottom: 9px;
  color: var(--teal);
  font-size: 11px;
  font-weight: 800;
}

.evidence-layer > header h3 {
  margin-bottom: 0;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.55;
}

.evidence-layer__links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.evidence-layer__links a {
  min-height: 132px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px 26px;
  background: var(--paper);
  border-right: 1px solid var(--line);
}

.evidence-layer__links a:last-child {
  border-right: 0;
}

.evidence-layer__links a:hover,
.evidence-layer__links a:focus-visible {
  background: #e8f3f3;
}

.evidence-layer__links strong {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.5;
}

.evidence-layer__links small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.evidence-news-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  padding-bottom: 4px;
  color: var(--ink);
  border-bottom: 1px solid var(--gold);
  font-size: 14px;
  font-weight: 800;
}

.evidence-news-link:hover,
.evidence-news-link:focus-visible {
  color: var(--teal);
  border-color: var(--teal);
}

.section--product-proof {
  background: var(--paper);
}

.product-proof-layout {
  display: grid;
  grid-template-columns: minmax(520px, 1.15fr) minmax(0, .85fr);
  gap: 64px;
  align-items: center;
}

.product-proof-layout figure {
  margin-bottom: 0;
  overflow: hidden;
  background: var(--ink-deep);
  border: 1px solid var(--line);
}

.product-proof-layout figure img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.product-proof-layout h2 {
  margin-bottom: 18px;
}

.product-proof-layout p:not(.eyebrow) {
  margin-bottom: 0;
  color: var(--copy);
  font-size: 15px;
  line-height: 1.95;
}

.section--ip {
  background: #0a3249;
  color: #d8e5ea;
}

.ip-layout {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(520px, 1.15fr);
  gap: 74px;
  align-items: start;
}

.ip-layout h2 {
  margin-bottom: 0;
  color: #ffffff;
}

.ip-layout p {
  margin-bottom: 18px;
  color: #d4e1e6;
  font-size: 15px;
  line-height: 1.95;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(580px, 1.28fr);
  gap: 72px;
  align-items: start;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  min-height: 72px;
  display: flex;
  align-items: center;
  padding: 18px 52px 18px 0;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.6;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 14px;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  color: var(--teal);
  content: "+";
  font-size: 22px;
  font-weight: 400;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  margin-bottom: 22px;
  padding-right: 48px;
  color: var(--copy);
  font-size: 14px;
  line-height: 1.9;
}

.final-cta {
  padding: 86px 0;
  background: var(--ink-deep);
  color: #ffffff;
}

.final-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(520px, 1.1fr);
  gap: 70px;
  align-items: start;
}

.final-cta h2 {
  margin-bottom: 0;
  color: #ffffff;
  font-size: 38px;
  line-height: 1.5;
}

.final-cta__links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  background: var(--line-dark);
}

.final-cta__links a {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 18px;
  background: #082d46;
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
}

.final-cta__links a:hover,
.final-cta__links a:focus-visible {
  background: var(--gold);
  color: var(--ink-deep);
}

.site-footer {
  padding: 36px 0;
  background: #02131f;
  color: #a9bec7;
  border-top: 1px solid #16394d;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 36px;
  align-items: center;
}

.footer-brand img {
  width: 122px;
  height: 53px;
  object-fit: contain;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 24px;
  font-size: 11px;
  font-weight: 700;
}

.site-footer nav a:hover,
.site-footer nav a:focus-visible {
  color: var(--gold-light);
}

.site-footer p {
  margin-bottom: 0;
  font-size: 11px;
  white-space: nowrap;
}

@media (max-width: 1080px) {
  .desktop-nav {
    gap: 12px;
    font-size: 11px;
  }

  .challenge-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .architecture-flow,
  .edge-core-flow {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .architecture-flow li:nth-child(3)::after,
  .edge-core-flow li:nth-child(3)::after {
    display: none;
  }

  .research-layout,
  .aidc-layout,
  .definition-layout,
  .network-layout,
  .product-proof-layout,
  .ip-layout,
  .faq-layout,
  .final-cta__inner {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .research-copy {
    position: static;
  }
}

@media (max-width: 900px) {
  .desktop-nav {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .hero h1 {
    font-size: 48px;
  }

  .technology-card__body {
    min-height: 420px;
  }

}

@media (max-width: 768px) {
  .shell {
    width: min(calc(100% - 32px), var(--max));
  }

  .utility-bar__inner {
    min-height: 30px;
    font-size: 10px;
  }

  .utility-bar__inner > span {
    display: none;
  }

  .primary-nav {
    min-height: 66px;
  }

  .brand img,
  .footer-brand img {
    width: 104px;
    height: 45px;
  }

  .hero {
    min-height: 720px;
    background-position: 38% center;
  }

  .hero__content {
    padding-block: 36px 46px;
  }

  .hero h1 {
    font-size: 38px;
    line-height: 1.35;
  }

  .hero__lead {
    font-size: 16px;
    line-height: 1.75;
  }

  .hero__mission {
    font-size: 13px;
  }

  .actions--hero {
    gap: 8px;
    margin-top: 20px;
  }

  .actions--hero .button {
    min-height: 44px;
    padding: 9px 14px;
    font-size: 12px;
  }

  .section {
    padding: 72px 0;
  }

  .section-heading h2,
  .definition-copy h2,
  .research-copy h2,
  .aidc-copy h2,
  .network-layout h2,
  .product-proof-layout h2,
  .ip-layout h2,
  .faq-layout h2,
  .final-cta h2 {
    font-size: 32px;
  }

  .challenge-grid,
  .technology-grid {
    grid-template-columns: 1fr;
  }

  .challenge-card--manufacturing {
    grid-column: auto;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .challenge-card--manufacturing .card-links {
    grid-column: auto;
    margin-top: 0;
  }

  .manufacturing-bridge {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .manufacturing-bridge > a {
    grid-column: auto;
  }

  .architecture-flow {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .architecture-flow li {
    min-height: 0;
  }

  .architecture-flow li:not(:last-child)::after {
    display: grid;
    top: auto;
    right: 50%;
    bottom: -17px;
    transform: translateX(50%) rotate(90deg);
  }

  .architecture-flow li > span {
    margin-bottom: 12px;
  }

  .architecture-loop,
  .architecture-engine {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .architecture-loop > span {
    display: none;
  }

  .architecture-engine ul {
    grid-template-columns: 1fr;
  }

  .challenge-card {
    min-height: 0;
  }

  .challenge-card h3 {
    min-height: 0;
  }

  .technology-card__body {
    min-height: 0;
  }

  .implementation-flow li {
    grid-template-columns: 40px minmax(0, 1fr);
  }

  .implementation-flow small {
    grid-column: 2;
  }

  .edge-core-diagram header {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .edge-core-flow {
    grid-template-columns: 1fr;
  }

  .edge-core-flow li {
    min-height: 0;
  }

  .edge-core-flow li:nth-child(3)::after,
  .edge-core-flow li:not(:last-child)::after {
    display: block;
    top: auto;
    right: 50%;
    bottom: -17px;
    transform: translateX(50%) rotate(90deg);
  }

  .aidc-metrics dd {
    font-size: 16px;
  }

  .aidc-figure img {
    min-height: 280px;
  }

  .expert-network {
    min-height: 0;
    display: block;
    padding: 18px;
  }

  .expert-network::before,
  .expert-network::after {
    display: none;
  }

  .expert-network__center {
    position: static;
    width: 100%;
    min-height: 86px;
    margin-bottom: 14px;
    border-radius: 2px;
    transform: none;
  }

  .expert-network__domains {
    height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 10px;
  }

  .expert-network__domains li:last-child {
    grid-column: auto;
    width: 100%;
  }

  .faq-list details p {
    padding-right: 0;
  }

  .evidence-layer {
    grid-template-columns: 1fr;
  }

  .evidence-layer > header {
    padding: 20px 4px 16px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .product-proof-layout figure img {
    min-height: 280px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 22px;
  }
}

@media (max-width: 540px) {
  body {
    font-size: 15px;
  }

  .hero {
    min-height: 700px;
  }

  .hero h1 {
    margin-bottom: 16px;
    font-size: 32px;
  }

  .hero__lead {
    font-size: 14px;
  }

  .actions--hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .actions--hero .button {
    width: 100%;
  }

  .actions--hero .text-link {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .section-heading h2,
  .definition-copy h2,
  .research-copy h2,
  .aidc-copy h2,
  .network-layout h2,
  .product-proof-layout h2,
  .ip-layout h2,
  .faq-layout h2,
  .final-cta h2 {
    font-size: 28px;
  }

  .section-heading > p:last-child,
  .section-lead,
  .faq-layout header > p:last-child,
  .research-copy p:not(.eyebrow) {
    font-size: 14px;
  }

  .challenge-card,
  .technology-card__body {
    padding: 22px;
  }

  .manufacturing-bridge h3 {
    font-size: 22px;
  }

  .technology-card h3 {
    font-size: 20px;
  }

  .aidc-metrics {
    grid-template-columns: 1fr;
  }

  .aidc-metrics div {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 18px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .aidc-metrics div:last-child {
    border-bottom: 0;
  }

  .aidc-figure img {
    min-height: 240px;
  }

  .evidence-layer__links,
  .final-cta__links {
    grid-template-columns: 1fr;
  }

  .evidence-layer__links a {
    min-height: 112px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .final-cta__links a {
    min-height: 66px;
  }
}

@media (max-width: 360px) {
  .shell {
    width: min(calc(100% - 24px), var(--max));
  }

  .hero {
    min-height: 590px;
  }

  .hero h1 {
    font-size: 27px;
    line-height: 1.28;
  }

  .hero__content {
    padding-block: 20px 24px;
  }

  .hero .eyebrow {
    margin-bottom: 8px;
    font-size: 10px;
  }

  .hero__support {
    margin: -2px 0 8px;
    font-size: 9px;
  }

  .hero__lead {
    margin-bottom: 10px;
    font-size: 12px;
    line-height: 1.55;
  }

  .hero__mission {
    font-size: 11px;
    line-height: 1.55;
  }

  .actions--hero {
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    margin-top: 12px;
  }

  .actions--hero .button {
    min-height: 42px;
    padding: 6px 8px;
    font-size: 10px;
  }

  .actions--hero .text-link {
    grid-column: 1 / -1;
    padding-block: 5px;
    font-size: 11px;
  }

  .hero__product-link {
    margin-top: 9px;
    font-size: 10px;
  }

  .actions--hero {
    grid-template-columns: 1fr 1fr;
  }

  .actions--hero .text-link {
    grid-column: 1 / -1;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}


/* Reserve the final desktop navigation geometry before web-font activation. */
@media (min-width: 992px) {
  .header_aera .navbar-collapse .navbar-nav.navbar-right {
    display: flex;
    height: 100px;
    flex-wrap: nowrap;
    align-items: stretch;
  }
  .header_aera .navbar-collapse .navbar-nav.navbar-right > li,
  .header_aera .navbar-collapse .navbar-nav.navbar-right > li > a {
    height: 100px;
  }
  .header_aera .navbar-collapse .navbar-nav.navbar-right > li > a {
    display: flex;
    align-items: center;
    line-height: 1.25;
  }
}

@media (max-width: 520px) {
  html[lang="en"] .hero h1 .hero-title-line > span {
    white-space: normal;
  }
}

html[lang="en"] main p {
  text-align: left;
}
