@font-face {
  font-family: Manrope;
  src: url("/assets/fonts/manrope-regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
}
@font-face {
  font-family: Manrope;
  src: url("/assets/fonts/manrope-bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 650 900;
  font-display: swap;
}
:root {
  --navy: #00213e;
  --blue: #075cde;
  --cyan: #00a6dc;
  --text: #4d6375;
  --muted: #627486;
  --line: #dee7ed;
  --ice: #f1f9fc;
  --paper: #fff;
  --font: Manrope, Arial, sans-serif;
  color: var(--navy);
  background: var(--paper);
  font-family: var(--font);
  font-synthesis: none;
  scroll-behavior: smooth;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
body {
  margin: 0;
  min-width: 320px;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
/* A non-blocking loading accent: the HTML is always visible and indexable. */
body::before {
  content: "";
  position: fixed;
  z-index: 9999;
  inset: 0 0 auto;
  height: 3px;
  pointer-events: none;
  transform-origin: left center;
  background: linear-gradient(90deg, #075cde, #00a6dc 70%, #69e5ff);
  box-shadow: 0 0 16px #00a6dc66;
  animation: page-load-accent 800ms cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes page-load-accent {
  0% { opacity: 0; transform: scaleX(0); }
  12% { opacity: 1; transform: scaleX(0.15); }
  76% { opacity: 1; transform: scaleX(0.88); }
  96% { opacity: 1; transform: scaleX(1); }
  100% { opacity: 0; transform: scaleX(1); }
}
/* Same-origin HTML navigation stays native; supported browsers add a soft handoff. */
@view-transition {
  navigation: auto;
}
::view-transition-old(root) {
  animation: 160ms ease-in both page-exit;
}
::view-transition-new(root) {
  animation: 260ms ease-out both page-enter;
}
@keyframes page-exit {
  to { opacity: 0.65; transform: translateY(-5px); }
}
@keyframes page-enter {
  from { opacity: 0.75; transform: translateY(6px); }
}
@media (prefers-reduced-motion: reduce) {
  body::before { content: none; animation: none; }
  ::view-transition-old(root),
  ::view-transition-new(root) { animation-duration: 0.01ms; }
}
@media print {
  body::before { content: none; }
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  font-weight: 700;
}
h2 {
  font-size: clamp(2.25rem, 4.1vw, 3.85rem);
  line-height: 1.13;
  letter-spacing: -0.055em;
}
h3 {
  line-height: 1.25;
  letter-spacing: -0.035em;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea,
select {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
button:disabled {
  cursor: wait;
}
img {
  max-width: 100%;
  display: block;
}
svg {
  display: block;
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: none;
}
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
[hidden] {
  display: none !important;
}
::selection {
  background: #c5edff;
  color: var(--navy);
}
:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 5px;
}
section[id],
article[id] {
  scroll-margin-top: 140px;
}
p {
  color: var(--text);
}
.wrap {
  width: min(1344px, calc(100% - 112px));
  margin-inline: auto;
}
.ink-gradient {
  color: var(--blue);
  background: linear-gradient(108deg, #004ed8 6%, #037ddd 55%, #00869e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.muted {
  color: var(--muted);
}
.display {
  font-size: clamp(4.75rem, 8.4vw, 8.35rem);
  line-height: 1.065;
  letter-spacing: -0.07em;
}
.display > span {
  display: block;
}
.lead {
  font-size: clamp(1.1rem, 1.48vw, 1.35rem);
  line-height: 1.65;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.74rem;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
}
.eyebrow > span {
  height: 7px;
  width: 7px;
  border: 1px solid var(--cyan);
  flex: none;
  transform: rotate(45deg);
  background: var(--cyan);
}
.small-label,
.micro-note {
  font-size: 0.73rem;
  letter-spacing: 0.1em;
  font-weight: 700;
  text-transform: uppercase;
}
.micro-note {
  color: var(--muted);
}
.skip-link {
  position: fixed;
  left: 20px;
  top: 15px;
  z-index: 200;
  padding: 12px 18px;
  color: var(--navy);
  background: #fff;
  transform: translateY(-180%);
}
.skip-link:focus {
  transform: none;
}
.line-icon {
  width: 30px;
  height: 30px;
}
.site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.97);
  z-index: 50;
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  width: min(1456px, calc(100% - 80px));
  height: 108px;
  margin-inline: auto;
}
.brand {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 280px;
  height: 66px;
  overflow: hidden;
}
.brand img {
  width: 100%;
  max-width: none;
  height: auto;
  flex: none;
}
.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav > a {
  white-space: nowrap;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 10px 0;
  position: relative;
}
.main-nav > a::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s;
}
.main-nav > a:hover::after,
.main-nav > a[aria-current="page"]::after {
  transform: scaleX(1);
}
.header-end {
  display: flex;
  align-items: center;
  gap: 24px;
}
.languages {
  display: flex;
  gap: 10px;
  align-items: center;
}
.languages a {
  font-size: 0.75rem;
  min-height: 40px;
  display: grid;
  place-items: center;
  color: var(--muted);
}
.languages a[aria-current] {
  color: var(--navy);
  font-weight: 700;
  border-bottom: 1px solid var(--navy);
}
.header-contact {
  font-size: 0.82rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  padding: 13px 20px;
  background: var(--blue);
  color: #fff;
  border-radius: 50px;
  transition:
    background 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
}
.header-contact:hover {
  background: #0049bb;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px #075cde25;
}
.main-nav > .nav-contact {
  display: none;
}
.header-contact svg {
  width: 18px;
  height: 18px;
}
.menu-toggle {
  display: none;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 58px;
  padding: 15px 25px;
  border: 1px solid var(--navy);
  border-radius: 50px;
  background: var(--navy);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  transition:
    background 0.2s,
    transform 0.2s,
    border-color 0.2s;
}
.button:hover {
  background: var(--blue);
  border-color: var(--blue);
  transform: translateY(-2px);
}
.button svg {
  width: 19px;
  height: 19px;
}
.button-white {
  background: #fff;
  color: var(--navy);
  border-color: #fff;
}
.button-white:hover {
  color: #fff;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 25px;
  font-size: 0.9rem;
  font-weight: 700;
  min-height: 44px;
}
.text-link svg {
  transition: transform 0.2s;
}
.text-link:hover svg {
  transform: translateX(5px);
}
.hero-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 44px;
}
.home-hero {
  padding-top: 58px;
}
.hero-composition {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: end;
  gap: 64px;
}
.home-title {
  font-size: clamp(5.5rem, 9.1vw, 9.2rem);
  line-height: 1.025;
  letter-spacing: -0.075em;
}
.home-title > span:nth-child(2) {
  padding-right: 0.04em;
}
.hero-side {
  padding: 0 0 8px;
}
.hero-side-mark {
  display: block;
  font-family: Arial, sans-serif;
  font-size: 80px;
  font-weight: 400;
  line-height: 0.8;
  color: var(--cyan);
  margin-bottom: 45px;
}
.hero-side > .lead {
  font-size: 1.04rem;
  margin-bottom: 28px;
  max-width: 320px;
}
.hero-side .button {
  width: 100%;
  max-width: 290px;
}
.hero-side-note {
  font-size: 0.8rem;
  line-height: 1.6;
  margin-top: 24px;
  color: var(--muted);
}
.hero-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  border-top: 1px solid var(--line);
  margin-top: 66px;
  padding: 22px 0;
}
.scroll-cue {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.8rem;
  font-weight: 700;
  min-height: 44px;
}
.scroll-cue > span {
  font-size: 24px;
  line-height: 1;
  font-weight: 400;
  color: var(--blue);
}
.hero-bottom p {
  font-size: 0.76rem;
  letter-spacing: 0.01em;
}
.hero-bottom p span + span {
  margin-left: 13px;
}
.section-top {
  display: grid;
  grid-template-columns: 1fr 2.2fr;
  gap: 48px;
  margin-bottom: 52px;
}
.section-top > .eyebrow {
  align-self: start;
  padding-top: 12px;
}
.section-top h2 {
  max-width: 900px;
}
.section-top > div > p {
  max-width: 625px;
  margin-top: 26px;
  font-size: 1.05rem;
}
.expertise-section {
  padding-top: 124px;
}
.expertise-rows {
  border-top: 1px solid var(--line);
  margin-top: 60px;
}
.expertise-row {
  display: grid;
  grid-template-columns: 50px 1.2fr 1fr 50px 36px;
  align-items: center;
  gap: 26px;
  padding: 39px 0;
  border-bottom: 1px solid var(--line);
  transition:
    padding 0.2s,
    background 0.2s;
}
.expertise-row:hover {
  padding-inline: 18px;
  background: #f7fbfe;
}
.row-number {
  font-size: 0.78rem;
  color: var(--muted);
}
.expertise-row h3 {
  font-size: clamp(1.6rem, 2.55vw, 2.5rem);
}
.expertise-row p {
  font-size: 0.94rem;
  max-width: 280px;
}
.row-icon {
  color: var(--blue);
}
.row-arrow svg {
  width: 26px;
  height: 26px;
}
.expertise-section > .text-link {
  margin-top: 27px;
}
.home-products {
  padding-top: 132px;
}
.leady-teaser {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  min-height: 420px;
  background: var(--ice);
  border-radius: 3px;
  overflow: hidden;
}
.leady-identity {
  position: relative;
  padding: 44px 52px 50px;
  border-right: 1px solid #d2e8f0;
}
.leady-identity::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 5px;
  background: linear-gradient(90deg, #0349db, #00beed);
}
.leady-word {
  font-size: clamp(5rem, 10vw, 9rem);
  letter-spacing: -0.09em;
  font-weight: 700;
  line-height: 1.15;
  margin-top: 45px;
  color: var(--navy);
}
.leady-word > span,
.platform-name h2 > span {
  color: #029dde;
}
.leady-by {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-top: 10px;
  display: block;
}
.leady-info {
  padding: 74px 56px 42px;
  display: flex;
  align-items: start;
  flex-direction: column;
}
.leady-info > p {
  font-size: 1.13rem;
  max-width: 430px;
  margin-bottom: 30px;
}
.product-footnote {
  margin-top: auto;
  padding-top: 52px;
  font-size: 0.61rem;
  letter-spacing: 0.18em;
  color: #687f90;
}
.approach-section {
  padding-block: 134px 100px;
  display: grid;
  grid-template-columns: 1.12fr 1fr;
  gap: 110px;
}
.approach-intro h2 {
  font-size: clamp(2.3rem, 3.9vw, 3.55rem);
  margin: 30px 0;
}
.approach-intro > p:not(.eyebrow) {
  font-size: 1.04rem;
  max-width: 500px;
}
.approach-intro > .text-link {
  margin-top: 26px;
}
.approach-steps {
  border-top: 1px solid var(--line);
  align-self: center;
}
.approach-steps li {
  display: flex;
  gap: 30px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}
.step-number {
  font-size: 0.77rem;
  color: var(--blue);
  padding-top: 5px;
}
.approach-steps h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}
.approach-steps p {
  font-size: 0.94rem;
  max-width: 400px;
}
.closing {
  padding: 80px 0 110px;
  border-top: 1px solid var(--line);
}
.closing-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 80px;
  margin-top: 28px;
}
.closing h2 {
  font-size: clamp(3rem, 6.5vw, 6.2rem);
  letter-spacing: -0.065em;
  line-height: 1.075;
}
.closing p:not(.eyebrow) {
  max-width: 560px;
  margin-top: 28px;
  font-size: 1.04rem;
}
.big-arrow {
  width: 132px;
  height: 132px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: none;
  transition:
    background 0.2s,
    color 0.2s,
    transform 0.2s;
}
.big-arrow svg {
  width: 60px;
  height: 60px;
  stroke-width: 1;
}
.big-arrow:hover {
  background: var(--navy);
  color: #fff;
  transform: rotate(5deg);
}
.closing-compact {
  border-top: none;
}
.site-footer {
  border-top: 1px solid var(--line);
  padding-top: 60px;
}
.footer-main {
  display: grid;
  grid-template-columns: 1.65fr 1fr 0.8fr;
  gap: 70px;
  padding-bottom: 65px;
}
.footer-logo {
  width: 310px;
  margin-left: -7px;
  margin-top: -15px;
  margin-bottom: 12px;
}
.footer-identity > p {
  font-size: 0.95rem;
  margin-top: 6px;
}
.footer-email {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 0.85rem;
  margin-top: 24px;
  font-weight: 700;
}
.footer-email svg {
  width: 16px;
  height: 16px;
}
.footer-column {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 8px;
}
.footer-column h2 {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
  margin: 4px 0 16px;
}
.footer-column > a {
  font-size: 0.86rem;
  color: var(--text);
  min-height: 28px;
}
.footer-column > a:hover {
  color: var(--blue);
}
.footer-base {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 23px 0 28px;
  border-top: 1px solid var(--line);
  font-size: 0.7rem;
  color: var(--text);
}
.footer-base > a {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 32px;
}
.footer-base > a span {
  font-size: 19px;
}
.services-hero {
  padding-top: 80px;
}
.services-head {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 100px;
  align-items: end;
  margin-top: 30px;
}
.services-head .lead {
  margin-bottom: 12px;
}
.service-index {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 70px;
  border-block: 1px solid var(--line);
}
.service-index a {
  position: relative;
  padding: 22px 25px 22px 0;
  font-size: 0.84rem;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  gap: 12px;
  line-height: 1.5;
  transition: color 0.2s;
}
.service-index a + a {
  border-left: 1px solid var(--line);
  padding-left: 24px;
}
.service-index a > span:first-child {
  font-size: 0.69rem;
  color: var(--muted);
}
.service-index a:hover {
  color: var(--blue);
}
.down-arrow {
  position: absolute;
  right: 20px;
  top: 24px;
  font-weight: 400;
}
.capability-list {
  padding-top: 70px;
}
.capability-block {
  display: grid;
  grid-template-columns: 0.45fr 1.3fr 1fr;
  gap: 56px;
  padding: 68px 0;
  border-bottom: 1px solid var(--line);
}
.capability-number {
  font-size: 4.5rem;
  letter-spacing: -0.085em;
  line-height: 1;
  color: #a6cadc;
}
.capability-number > span {
  font-size: 2rem;
  color: var(--blue);
  margin-left: 10px;
}
.capability-description h2 {
  font-size: clamp(2rem, 3.1vw, 2.9rem);
}
.capability-description > p {
  margin-top: 22px;
  font-size: 1.05rem;
  max-width: 480px;
}
.capability-description > .text-link {
  margin-top: 22px;
}
.capability-block > ul {
  padding-top: 6px;
}
.capability-block li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.86rem;
}
.capability-block li svg {
  width: 16px;
  height: 16px;
  color: var(--blue);
}
.engagements {
  padding-block: 130px;
}
.engagements h2 {
  margin-top: 30px;
  max-width: 620px;
}
.engagement-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 65px;
  margin-top: 65px;
}
.engagement-grid article {
  border-top: 1px solid var(--blue);
  padding-top: 24px;
}
.engagement-grid h3 {
  font-size: 1.6rem;
  margin: 30px 0 18px;
}
.engagement-grid p {
  font-size: 1rem;
}
.platforms-hero {
  text-align: center;
  padding-top: 80px;
  padding-bottom: 75px;
}
.platforms-hero > .eyebrow {
  justify-content: center;
}
.platforms-hero h1 {
  margin: 32px 0 35px;
  font-size: clamp(4rem, 8vw, 7.8rem);
}
.platforms-hero > .lead {
  max-width: 710px;
  margin: auto;
}
.platforms-hero .scroll-cue {
  justify-content: center;
  margin-top: 36px;
}
.platform-showcase {
  padding: 38px 64px 0;
  background: #f1f9fc;
  position: relative;
  overflow: hidden;
  border: 1px solid #e0edf3;
}
.platform-masthead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 32px;
  border-bottom: 1px solid #d4e8f0;
}
.product-category {
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  border: 1px solid #cddde6;
  border-radius: 40px;
  padding: 8px 15px;
}
.platform-body {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
  min-height: 400px;
  padding: 48px 0;
}
.platform-name h2 {
  font-size: clamp(6.5rem, 13vw, 12.5rem);
  letter-spacing: -0.095em;
  line-height: 1;
}
.platform-name > span {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-top: 20px;
}
.platform-description p {
  font-size: 1.18rem;
  max-width: 450px;
  margin-bottom: 30px;
}
.platform-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #d4e8f0;
  padding: 25px 0;
  font-size: 0.8rem;
  color: var(--text);
}
.platform-bottom span + span {
  text-align: center;
}
.build-platform {
  padding-block: 145px 120px;
}
.split-heading {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 130px;
  align-items: start;
}
.platform-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 65px;
  margin-top: 70px;
}
.platform-steps article {
  border-top: 1px solid var(--line);
  padding-top: 25px;
}
.platform-steps .small-label {
  color: var(--blue);
}
.platform-steps h3 {
  margin-top: 38px;
  margin-bottom: 18px;
  font-size: 1.6rem;
}
.platform-steps p {
  font-size: 1rem;
}
.ai-hero {
  display: grid;
  grid-template-columns: 1.13fr 1fr;
  gap: 100px;
  padding-top: 85px;
  padding-bottom: 100px;
  align-items: center;
}
.ai-hero .display {
  font-size: clamp(4.2rem, 7vw, 6.9rem);
  margin: 35px 0 30px;
}
.ai-hero-copy > .lead {
  max-width: 550px;
}
.ai-hero .text-link {
  margin-top: 25px;
}
.workflow {
  background: #f7fafc;
  border: 1px solid var(--line);
  padding: 36px 28px 27px;
  margin-top: 45px;
}
.workflow > .small-label {
  color: var(--muted);
  margin-bottom: 25px;
}
.workflow ol {
  display: grid;
  gap: 28px;
}
.workflow-step {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 88px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 6px 15px #10325103;
}
.workflow-step:not(:last-child)::after {
  content: "↓";
  position: absolute;
  bottom: -26px;
  left: 28px;
  color: var(--muted);
  font-size: 18px;
}
.workflow-index {
  font-size: 0.68rem;
  color: var(--blue);
}
.workflow-step > div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.workflow-step strong {
  font-size: 0.93rem;
  letter-spacing: -0.02em;
}
.workflow-step > div > span {
  font-size: 0.73rem;
  color: var(--muted);
}
.workflow-step.step-1 {
  border-color: #81d3ed;
  box-shadow: inset 3px 0 #059bec;
}
.workflow-step > .line-icon {
  margin-left: auto;
  color: var(--blue);
  width: 24px;
}
.human-check {
  margin-left: auto;
  border-radius: 50%;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: #ecf8ff;
  font-size: 14px;
}
.workflow-caption {
  display: block;
  margin-top: 26px;
  font-size: 0.59rem;
  letter-spacing: 0.13em;
  color: var(--muted);
}
.ai-usecases {
  padding-block: 75px 100px;
  border-top: 1px solid var(--line);
}
.ai-usecases > h2 {
  margin-top: 27px;
  margin-bottom: 60px;
}
.usecases {
  border-top: 1px solid var(--line);
}
.usecases details {
  border-bottom: 1px solid var(--line);
}
.usecases summary {
  list-style: none;
  display: grid;
  grid-template-columns: 50px 1fr 30px;
  align-items: center;
  gap: 25px;
  padding: 30px 0;
  cursor: pointer;
}
.usecases summary::-webkit-details-marker {
  display: none;
}
.usecases summary > span {
  font-size: 0.76rem;
  color: var(--blue);
}
.usecases h3 {
  font-size: clamp(1.2rem, 2.3vw, 2rem);
  font-weight: 400;
}
.usecases summary svg {
  transition: transform 0.2s;
}
.usecases details[open] summary svg {
  transform: rotate(45deg);
}
.usecase-content {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  margin-left: 75px;
  padding: 0 55px 38px 0;
}
.usecase-content strong {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--blue);
}
.usecase-content p {
  font-size: 1rem;
  max-width: 650px;
}
.ai-trust {
  padding-block: 60px 130px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 150px;
}
.large-star {
  display: block;
  color: var(--cyan);
  margin-bottom: 35px;
}
.large-star svg {
  width: 50px;
  height: 50px;
  stroke-width: 1;
}
.ai-trust h2 {
  margin-bottom: 25px;
}
.ai-trust > ol {
  align-self: center;
}
.ai-trust li {
  position: relative;
  padding: 25px 0 25px 55px;
  border-bottom: 1px solid var(--line);
}
.ai-trust li > span {
  position: absolute;
  left: 0;
  top: 29px;
  font-size: 0.75rem;
  color: var(--blue);
}
.ai-trust h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}
.ai-trust li > p {
  font-size: 0.94rem;
}
.cloud-hero {
  padding-top: 80px;
}
.cloud-hero .display {
  margin-top: 32px;
  font-size: clamp(4rem, 7.6vw, 7.6rem);
}
.cloud-intro-row {
  display: flex;
  justify-content: space-between;
  gap: 90px;
  align-items: center;
  margin-top: 40px;
}
.cloud-intro-row > .lead {
  max-width: 700px;
}
.cloud-intro-row > .button {
  flex: none;
}
.architecture {
  margin-top: 75px;
  margin-left: auto;
  max-width: 1060px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 20px 70px rgba(0, 36, 70, 0.035);
}
.architecture-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 40px;
}
.architecture-heading svg {
  color: var(--blue);
}
.architecture-layer {
  display: grid;
  grid-template-columns: 55px 1.1fr 1.4fr 15px;
  gap: 20px;
  align-items: center;
  padding: 31px 40px;
  border-top: 1px solid var(--line);
}
.architecture-layer:nth-child(3) {
  background: #f8fbfd;
}
.architecture-layer:nth-child(4) {
  background: #eff7fb;
  border-left: 3px solid var(--cyan);
  padding-left: 37px;
}
.architecture-layer > span:first-child {
  font-size: 0.72rem;
  color: var(--blue);
}
.architecture-layer h2 {
  font-size: 1.7rem;
  letter-spacing: -0.04em;
}
.architecture-layer p {
  font-size: 0.84rem;
}
.layer-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: 1px solid #a2bfcd;
}
.cloud-details {
  padding-top: 140px;
}
.cloud-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  padding-top: 15px;
}
.cloud-columns article {
  border-top: 1px solid var(--line);
  padding-top: 23px;
}
.cloud-columns .small-label {
  color: var(--blue);
}
.cloud-columns h3 {
  font-size: 1.55rem;
  margin: 33px 0 20px;
}
.cloud-columns p {
  font-size: 1rem;
}
.cloud-principles {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 32px;
  padding: 48px 0;
  border-block: 1px solid var(--line);
  margin-top: 65px;
  justify-content: space-between;
}
.cloud-principles li {
  font-size: 0.81rem;
  display: flex;
  gap: 12px;
  align-items: center;
}
.cloud-principles li > span {
  color: var(--blue);
  font-size: 22px;
}
.cloud-statement {
  padding-block: 100px 65px;
}
.cloud-statement p {
  font-size: clamp(2.8rem, 5.8vw, 5.5rem);
  line-height: 1.15;
  letter-spacing: -0.06em;
  color: var(--navy);
  max-width: 1100px;
}
.about-hero {
  padding-top: 85px;
  padding-bottom: 75px;
}
.about-hero .display {
  font-size: clamp(4.5rem, 9vw, 9rem);
  margin-top: 35px;
}
.about-lead {
  margin-top: 42px;
  margin-left: auto;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 35px;
  max-width: 750px;
  align-items: start;
}
.about-lead > span {
  font-size: 70px;
  line-height: 1;
  color: var(--cyan);
  font-family: Arial, sans-serif;
}
.about-lead > .lead {
  font-size: 1.23rem;
}
.manifesto {
  border-block: 1px solid var(--line);
  padding-block: 90px;
  display: grid;
  grid-template-columns: 1fr 2.2fr;
  gap: 80px;
}
.manifesto-index {
  font-size: 0.76rem;
  color: var(--blue);
  letter-spacing: 0.08em;
  padding-top: 11px;
}
.manifesto h2 {
  font-size: clamp(2.4rem, 4vw, 3.85rem);
}
.manifesto p {
  max-width: 660px;
  margin-top: 30px;
  font-size: 1.05rem;
}
.values {
  padding-block: 125px;
}
.values-heading {
  max-width: 620px;
  margin-bottom: 55px;
}
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 90px;
  row-gap: 70px;
}
.values-grid article {
  padding-top: 25px;
  border-top: 1px solid var(--line);
}
.value-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--blue);
}
.value-top p {
  color: var(--navy);
}
.values-grid h3 {
  margin-top: 50px;
  font-size: 2.15rem;
  margin-bottom: 20px;
}
.values-grid article > p {
  font-size: 1.04rem;
  max-width: 480px;
}
.contact-page {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 110px;
  padding-top: 90px;
  padding-bottom: 115px;
  align-items: start;
}
.contact-intro {
  position: sticky;
  top: 155px;
}
.contact-intro .display {
  font-size: clamp(3.7rem, 6.5vw, 6.3rem);
  margin-top: 30px;
  margin-bottom: 32px;
}
.contact-intro > .lead {
  max-width: 460px;
}
.direct-contact {
  margin-top: 80px;
}
.direct-contact > span {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 10px;
}
.direct-contact a {
  display: inline-flex;
  gap: 22px;
  align-items: center;
  font-size: clamp(1rem, 1.6vw, 1.45rem);
  font-weight: 700;
  letter-spacing: -0.035em;
}
.direct-contact svg {
  width: 22px;
}
.form-panel {
  padding-top: 12px;
}
.form-panel > h2 {
  font-size: 1.4rem;
  letter-spacing: -0.035em;
}
.form-required {
  font-size: 0.76rem;
  margin-top: 10px;
  margin-bottom: 34px;
  color: var(--muted);
}
#contact-form {
  display: grid;
  gap: 23px;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
#contact-form label {
  display: block;
  font-size: 0.81rem;
  font-weight: 700;
  color: var(--navy);
}
.optional {
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--muted);
}
#contact-form input:not([type="checkbox"]),
#contact-form textarea,
#contact-form select {
  display: block;
  width: 100%;
  border: 0;
  border-bottom: 1px solid #b7c9d6;
  background: #f9fbfc;
  border-radius: 0;
  padding: 13px 12px;
  margin-top: 10px;
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.5;
  transition: border-color 0.2s;
}
#contact-form textarea {
  resize: vertical;
  min-height: 130px;
}
#contact-form textarea::placeholder {
  font-size: 0.86rem;
  color: #6c7e8b;
}
#contact-form input:focus,
#contact-form textarea:focus,
#contact-form select:focus {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  background: #fff;
}
.checkbox-label {
  display: flex !important;
  gap: 12px !important;
  align-items: start;
  font-weight: 400 !important;
  font-size: 0.79rem !important;
}
.checkbox-label input {
  flex: none;
  width: 17px;
  height: 17px;
  accent-color: var(--blue);
  margin: 4px 0 0;
}
.checkbox-label a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.form-note {
  font-size: 0.78rem;
  color: var(--muted);
  max-width: 450px;
  line-height: 1.65;
}
#contact-form > .button {
  justify-self: start;
  min-width: 235px;
}
.email-result {
  padding: 25px;
  margin-top: 30px;
  background: var(--ice);
  border: 1px solid var(--line);
}
.email-result p {
  font-size: 0.84rem;
  margin-bottom: 15px;
}
.email-result p[role="status"] {
  color: var(--navy);
  font-weight: 700;
}
.email-result textarea {
  width: 100%;
  margin: 5px 0 15px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 12px;
  font-size: 0.85rem;
}
.text-button {
  padding: 8px 0;
  border: 0;
  border-bottom: 1px solid var(--navy);
  background: transparent;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 700;
}
#copy-status {
  font-size: 0.8rem;
  margin-left: 12px;
}
.legal-hero {
  padding-top: 80px;
  padding-bottom: 65px;
}
.legal-hero .display {
  font-size: clamp(3.7rem, 7vw, 6.5rem);
  margin: 32px 0;
}
.legal-hero > .small-label {
  color: var(--muted);
  font-weight: 400;
}
.legal-body {
  display: grid;
  grid-template-columns: 0.75fr 1.6fr;
  gap: 130px;
  padding: 65px 0 110px;
  border-top: 1px solid var(--line);
}
.legal-toc {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 13px;
  position: sticky;
  top: 150px;
  align-self: start;
}
.legal-toc p {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.legal-toc a {
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.5;
}
.legal-toc a:hover {
  color: var(--blue);
}
.legal-content section {
  padding-bottom: 36px;
  margin-bottom: 36px;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 150px;
}
.legal-content h2 {
  font-size: 1.65rem;
  margin: 12px 0 17px;
  letter-spacing: -0.035em;
}
.legal-content p {
  font-size: 1.02rem;
  line-height: 1.85;
}
.legal-content .small-label {
  color: var(--blue);
}
.not-found {
  padding-block: 110px;
}
.not-found > .display {
  margin-top: 30px;
}
.not-found > p:not(.eyebrow) {
  margin-block: 25px 35px;
}
@media (min-width: 1181px) and (max-width: 1360px) {
  .header-inner {
    gap: 18px;
    width: calc(100% - 56px);
  }
  .brand {
    width: 225px;
  }
  .main-nav {
    gap: 18px;
  }
  .main-nav > a {
    font-size: 0.75rem;
  }
  .header-end {
    gap: 20px;
  }
  .header-contact {
    font-size: 0.77rem;
  }
  .hero-composition {
    grid-template-columns: minmax(0, 1fr) 290px;
    gap: 55px;
  }
  .hero-side > .lead {
    font-size: 1rem;
  }
}
@media (max-width: 1180px) {
  .wrap {
    width: calc(100% - 72px);
  }
  .header-inner {
    height: 92px;
    width: calc(100% - 56px);
    gap: 26px;
  }
  .brand {
    width: 275px;
  }
  .header-end {
    margin-left: auto;
  }
  .header-contact {
    margin-left: 15px;
  }
  .menu-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    background: #fff;
    order: 3;
    border-radius: 50%;
  }
  .menu-toggle span {
    display: block;
    width: 18px;
    height: 1px;
    background: var(--navy);
    transition: transform 0.2s;
  }
  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }
  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }
  .main-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: #fff;
    padding: 18px 36px 28px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px 35px;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 25px #14395808;
    margin: 0;
  }
  .main-nav > a {
    padding: 14px 0;
    font-size: 1rem;
  }
  .js .main-nav {
    display: none;
  }
  .js .menu-open .main-nav {
    display: grid;
  }
  .hero-topline > .micro-note {
    display: none;
  }
  .hero-composition {
    grid-template-columns: minmax(0, 1fr) 270px;
    gap: 40px;
  }
  .home-title {
    font-size: clamp(4.5rem, 8.6vw, 7rem);
  }
  .hero-side > .lead {
    font-size: 0.98rem;
  }
  .hero-side-mark {
    font-size: 60px;
    margin-bottom: 30px;
  }
  .hero-side .button {
    font-size: 0.8rem;
    min-height: 54px;
    padding: 15px 19px;
    gap: 14px;
  }
  .hero-side-note {
    margin-top: 20px;
  }
  .section-top {
    grid-template-columns: 0.7fr 1.8fr;
    gap: 30px;
  }
  .expertise-row {
    grid-template-columns: 35px 1.2fr 1fr 36px 25px;
    gap: 18px;
  }
  .expertise-row p {
    font-size: 0.85rem;
  }
  .leady-info {
    padding: 55px 35px 35px;
  }
  .leady-identity {
    padding: 38px;
  }
  .approach-section {
    gap: 65px;
  }
  .services-head {
    gap: 55px;
  }
  .capability-block {
    gap: 35px;
    grid-template-columns: 0.3fr 1.2fr 1fr;
  }
  .engagement-grid {
    gap: 35px;
  }
  .split-heading {
    gap: 60px;
  }
  .ai-hero {
    gap: 55px;
  }
  .ai-hero .display {
    font-size: clamp(3.5rem, 6.5vw, 5.2rem);
  }
  .ai-trust {
    gap: 75px;
  }
  .cloud-intro-row {
    gap: 55px;
  }
  .architecture {
    max-width: 100%;
  }
  .cloud-columns {
    gap: 35px;
  }
  .contact-page {
    gap: 60px;
  }
  .contact-intro .display {
    font-size: clamp(3.25rem, 6.2vw, 5rem);
  }
  .field-row {
    grid-template-columns: 1fr;
  }
  .footer-main {
    gap: 35px;
  }
  .legal-body {
    gap: 60px;
  }
}
@media (max-width: 820px) {
  .main-nav > .nav-contact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--blue);
    border-radius: 9px;
    color: #fff;
    padding: 12px 18px;
  }
  .wrap {
    width: calc(100% - 48px);
  }
  .header-inner {
    width: calc(100% - 36px);
    height: 84px;
    gap: 15px;
  }
  .brand {
    width: 230px;
    height: 64px;
  }
  .header-end {
    gap: 14px;
  }
  .header-contact {
    display: none;
  }
  .languages {
    gap: 11px;
  }
  .menu-toggle {
    margin-left: 4px;
  }
  .home-hero {
    padding-top: 42px;
  }
  .hero-topline {
    margin-bottom: 30px;
  }
  .hero-composition {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .home-title {
    font-size: clamp(5rem, 12.8vw, 7.8rem);
    line-height: 1.06;
  }
  .hero-side {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 20px 30px;
    align-items: center;
  }
  .hero-side-mark {
    display: none;
  }
  .hero-side > .lead {
    font-size: 1.05rem;
    max-width: 100%;
    margin: 0;
    grid-row: 1 / 3;
  }
  .hero-side .button {
    font-size: 0.85rem;
    width: auto;
    justify-self: end;
    min-width: 225px;
  }
  .hero-side-note {
    margin: 0;
    justify-self: end;
    text-align: right;
  }
  .hero-bottom {
    margin-top: 35px;
  }
  .hero-bottom p {
    max-width: 320px;
    line-height: 1.8;
    text-align: right;
  }
  .hero-bottom p span + span {
    margin-left: 5px;
  }
  .expertise-section {
    padding-top: 90px;
  }
  .section-top {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 38px;
  }
  .section-top > .eyebrow {
    padding: 0;
  }
  .section-top h2 {
    max-width: 650px;
  }
  .expertise-rows {
    margin-top: 35px;
  }
  .expertise-row {
    grid-template-columns: 30px 1fr 30px;
    gap: 18px;
    padding: 30px 0;
  }
  .expertise-row h3 {
    font-size: 1.95rem;
  }
  .expertise-row p {
    grid-column: 2;
    grid-row: 2;
    max-width: none;
    font-size: 0.94rem;
  }
  .row-icon {
    display: none;
  }
  .row-arrow {
    grid-column: 3;
    grid-row: 1 / 3;
  }
  .leady-teaser {
    grid-template-columns: 1fr 1fr;
    min-height: 360px;
  }
  .leady-word {
    font-size: 6rem;
    margin-top: 40px;
  }
  .leady-identity {
    padding: 30px;
    border-right: 0;
  }
  .leady-info {
    padding: 55px 28px 30px;
  }
  .leady-info > p {
    font-size: 0.97rem;
  }
  .leady-info .button {
    font-size: 0.8rem;
    gap: 12px;
    min-height: 52px;
    padding: 14px 19px;
  }
  .product-footnote {
    font-size: 0.54rem;
  }
  .home-products {
    padding-top: 90px;
  }
  .approach-section {
    padding-top: 95px;
    padding-bottom: 90px;
    gap: 45px;
  }
  .approach-intro h2 {
    font-size: 2.4rem;
  }
  .approach-intro > p:not(.eyebrow) {
    font-size: 0.97rem;
  }
  .approach-steps li {
    gap: 20px;
  }
  .approach-steps p {
    font-size: 0.85rem;
  }
  .closing {
    padding-block: 65px 85px;
  }
  .closing-grid {
    gap: 40px;
  }
  .closing h2 {
    font-size: clamp(2.7rem, 6.5vw, 4rem);
  }
  .big-arrow {
    width: 95px;
    height: 95px;
  }
  .big-arrow svg {
    width: 43px;
    height: 43px;
  }
  .footer-main {
    grid-template-columns: 1.4fr 1fr;
    gap: 45px;
  }
  .footer-identity {
    grid-column: 1 / -1;
  }
  .footer-logo {
    width: 290px;
  }
  .footer-base {
    flex-wrap: wrap;
    gap: 14px;
  }
  .services-hero,
  .cloud-hero,
  .about-hero,
  .legal-hero {
    padding-top: 65px;
  }
  .services-head {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .display {
    font-size: clamp(4.25rem, 10.4vw, 6rem);
  }
  .services-head > .lead {
    max-width: 600px;
  }
  .service-index {
    margin-top: 45px;
    grid-template-columns: 1fr 1fr;
  }
  .service-index a:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-left: 0;
  }
  .service-index a:nth-child(4) {
    border-top: 1px solid var(--line);
  }
  .capability-block {
    grid-template-columns: 70px 1fr;
    gap: 25px;
    padding-block: 48px;
  }
  .capability-number {
    font-size: 3rem;
  }
  .capability-block > ul {
    grid-column: 2;
  }
  .capability-description h2 {
    font-size: 2rem;
  }
  .capability-description > .text-link {
    margin-top: 15px;
  }
  .engagements {
    padding-block: 90px;
  }
  .engagement-grid {
    gap: 28px;
  }
  .engagement-grid h3 {
    font-size: 1.3rem;
  }
  .engagement-grid p {
    font-size: 0.93rem;
  }
  .platforms-hero {
    padding-top: 65px;
    padding-bottom: 50px;
  }
  .platforms-hero h1 {
    font-size: clamp(3.5rem, 8.8vw, 5rem);
  }
  .platform-showcase {
    padding: 30px 32px 0;
  }
  .platform-body {
    gap: 35px;
    min-height: 330px;
  }
  .platform-name h2 {
    font-size: 7rem;
  }
  .platform-description p {
    font-size: 1.03rem;
  }
  .platform-description .button {
    font-size: 0.8rem;
    padding: 14px 19px;
    gap: 15px;
  }
  .platform-bottom {
    font-size: 0.7rem;
  }
  .build-platform {
    padding-block: 100px;
  }
  .split-heading {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .platform-steps {
    gap: 30px;
    margin-top: 45px;
  }
  .platform-steps h3 {
    font-size: 1.3rem;
  }
  .platform-steps p {
    font-size: 0.94rem;
  }
  .ai-hero {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-top: 65px;
    padding-bottom: 65px;
  }
  .ai-hero .display {
    font-size: clamp(3.8rem, 9.5vw, 5.5rem);
  }
  .ai-hero-copy > .lead {
    max-width: 650px;
  }
  .workflow {
    max-width: 100%;
    margin-top: 35px;
    padding: 30px;
  }
  .workflow ol {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .workflow-step:not(:last-child)::after {
    display: none;
  }
  .workflow-step {
    min-height: 98px;
    padding: 15px;
    gap: 15px;
  }
  .workflow-step.step-2 {
    grid-column: 2;
    grid-row: 2;
  }
  .workflow-step.step-3 {
    grid-column: 1;
    grid-row: 2;
  }
  .workflow-step strong {
    font-size: 0.84rem;
  }
  .workflow-step > div > span {
    font-size: 0.68rem;
  }
  .workflow-step > .line-icon {
    width: 19px;
  }
  .ai-usecases {
    padding-block: 65px;
  }
  .ai-usecases h2 {
    margin-bottom: 40px;
  }
  .usecases summary {
    grid-template-columns: 30px 1fr 25px;
    gap: 20px;
  }
  .usecase-content {
    margin-left: 50px;
    padding-right: 30px;
    gap: 30px;
  }
  .ai-trust {
    padding-block: 30px 90px;
    gap: 55px;
  }
  .cloud-hero .display {
    font-size: clamp(3.4rem, 8.5vw, 5rem);
  }
  .cloud-intro-row {
    align-items: start;
    gap: 30px;
  }
  .cloud-intro-row > .lead {
    font-size: 1.04rem;
  }
  .cloud-intro-row .button {
    font-size: 0.83rem;
    padding: 14px 19px;
    gap: 15px;
  }
  .architecture {
    margin-top: 45px;
  }
  .architecture-layer {
    padding: 25px;
    grid-template-columns: 35px 1fr 1.4fr 7px;
    gap: 15px;
  }
  .architecture-layer:nth-child(4) {
    padding-left: 22px;
  }
  .architecture-heading {
    padding: 25px;
  }
  .architecture-layer h2 {
    font-size: 1.25rem;
  }
  .architecture-layer p {
    font-size: 0.7rem;
  }
  .cloud-details {
    padding-top: 90px;
  }
  .cloud-columns {
    gap: 27px;
  }
  .cloud-columns h3 {
    font-size: 1.3rem;
  }
  .cloud-columns p {
    font-size: 0.95rem;
  }
  .cloud-principles {
    padding: 30px 0;
    gap: 18px 25px;
    justify-content: start;
  }
  .cloud-statement {
    padding-block: 70px 30px;
  }
  .about-hero .display {
    font-size: clamp(3.8rem, 9.8vw, 5.8rem);
  }
  .about-lead {
    margin-top: 40px;
    max-width: 640px;
    gap: 30px;
    grid-template-columns: 50px 1fr;
  }
  .about-lead > .lead {
    font-size: 1.15rem;
  }
  .manifesto {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-block: 65px;
  }
  .manifesto h2 {
    max-width: 700px;
  }
  .values {
    padding-block: 90px;
  }
  .values-grid {
    gap: 50px;
  }
  .values-grid h3 {
    font-size: 1.65rem;
  }
  .values-grid article > p {
    font-size: 0.95rem;
  }
  .contact-page {
    grid-template-columns: 1fr;
    gap: 55px;
    padding-top: 65px;
    padding-bottom: 90px;
  }
  .contact-intro {
    position: static;
  }
  .contact-intro .display {
    font-size: clamp(4rem, 10.5vw, 6rem);
  }
  .contact-intro > .lead {
    max-width: 600px;
  }
  .direct-contact {
    margin-top: 35px;
  }
  .form-panel {
    max-width: 650px;
    width: 100%;
  }
  .field-row {
    grid-template-columns: 1fr 1fr;
  }
  .legal-body {
    grid-template-columns: 1fr;
    gap: 45px;
    padding-top: 45px;
  }
  .legal-toc {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 25px;
  }
  .legal-toc > p {
    grid-column: 1 / -1;
    margin: 0 0 8px;
  }
  .legal-hero .display {
    font-size: clamp(3.5rem, 9vw, 5.5rem);
  }
}
@media (max-width: 560px) {
  .wrap {
    width: calc(100% - 40px);
  }
  .header-inner {
    width: calc(100% - 28px);
    height: 78px;
    gap: 10px;
  }
  .brand {
    width: clamp(175px, 48vw, 230px);
    height: 58px;
  }
  .header-end {
    gap: 8px;
  }
  .languages {
    gap: 9px;
  }
  .languages > a {
    font-size: 0.65rem;
    min-width: 20px;
  }
  .menu-toggle {
    width: 38px;
    height: 38px;
    margin-left: 3px;
  }
  .main-nav {
    grid-template-columns: 1fr;
    padding: 14px 22px 22px;
  }
  .main-nav > a {
    padding: 11px 0;
    font-size: 0.94rem;
  }
  .eyebrow {
    font-size: 0.65rem;
    gap: 10px;
    letter-spacing: 0.07em;
  }
  .home-hero {
    padding-top: 34px;
  }
  .hero-topline {
    margin-bottom: 26px;
  }
  .home-title {
    font-size: clamp(3.55rem, 13.45vw, 4.8rem);
    letter-spacing: -0.072em;
    line-height: 1.07;
  }
  .hero-composition {
    gap: 30px;
  }
  .hero-side {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 0;
  }
  .hero-side > .lead {
    font-size: 1rem;
    line-height: 1.75;
    max-width: 390px;
  }
  .hero-side > .button {
    font-size: 0.86rem;
    margin-top: 24px;
    min-width: 230px;
    min-height: 55px;
    width: auto;
    max-width: none;
  }
  .hero-side-note {
    display: none;
  }
  .hero-bottom {
    margin-top: 34px;
    padding-block: 17px;
  }
  .hero-bottom > p {
    font-size: 0.66rem;
    max-width: 175px;
  }
  .hero-bottom > p span {
    display: block;
  }
  .hero-bottom p span + span {
    margin: 0;
  }
  .hero-bottom p span + span {
    font-size: 0;
  }
  .hero-bottom p span + span::first-letter {
    font-size: 0;
  }
  .hero-bottom p span:nth-child(2),
  .hero-bottom p span:nth-child(3) {
    display: none;
  }
  .hero-bottom .scroll-cue {
    font-size: 0.76rem;
  }
  .expertise-section {
    padding-top: 70px;
  }
  .section-top {
    gap: 24px;
  }
  .section-top h2 {
    font-size: 2.35rem;
  }
  .expertise-row {
    gap: 10px 15px;
    padding: 26px 0;
    grid-template-columns: 22px 1fr 23px;
  }
  .expertise-row:hover {
    padding-inline: 5px;
  }
  .row-number {
    font-size: 0.66rem;
  }
  .expertise-row h3 {
    font-size: 1.43rem;
    letter-spacing: -0.04em;
  }
  .expertise-row p {
    font-size: 0.83rem;
  }
  .row-arrow svg {
    width: 21px;
  }
  .home-products {
    padding-top: 75px;
  }
  .section-top > div > p {
    font-size: 1rem;
    margin-top: 20px;
  }
  .leady-teaser {
    grid-template-columns: 1fr;
  }
  .leady-identity {
    padding: 29px 29px 34px;
    border-bottom: 1px solid #d2e8f0;
  }
  .leady-identity::after {
    height: 3px;
  }
  .leady-word {
    font-size: 6.8rem;
    margin-top: 28px;
  }
  .leady-by {
    margin-top: 0;
    font-size: 0.7rem;
  }
  .small-label {
    font-size: 0.64rem;
  }
  .leady-info {
    padding: 30px;
  }
  .leady-info > p {
    font-size: 1.02rem;
    margin-bottom: 25px;
  }
  .product-footnote {
    padding-top: 35px;
    font-size: 0.55rem;
  }
  .approach-section {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-block: 78px;
  }
  .approach-intro h2 {
    font-size: 2.35rem;
    margin-block: 25px;
  }
  .approach-steps li {
    gap: 23px;
    padding-block: 22px;
  }
  .approach-steps p {
    font-size: 0.96rem;
  }
  .approach-steps h3 {
    font-size: 1.23rem;
  }
  .closing {
    padding-block: 55px 65px;
  }
  .closing-grid {
    margin-top: 25px;
    gap: 25px;
    align-items: start;
    flex-direction: column;
  }
  .closing h2 {
    font-size: clamp(2.5rem, 9.9vw, 3.3rem);
    line-height: 1.13;
  }
  .closing p:not(.eyebrow) {
    margin-top: 23px;
    font-size: 0.97rem;
  }
  .big-arrow {
    width: 75px;
    height: 75px;
    align-self: flex-end;
  }
  .big-arrow svg {
    width: 33px;
    height: 33px;
  }
  .site-footer {
    padding-top: 38px;
  }
  .footer-logo {
    width: 265px;
    margin-top: -10px;
  }
  .footer-main {
    gap: 35px 28px;
    padding-bottom: 40px;
    grid-template-columns: 1fr 1fr;
  }
  .footer-identity > p {
    font-size: 0.88rem;
  }
  .footer-email {
    font-size: 0.85rem;
    margin-top: 18px;
  }
  .footer-column h2 {
    font-size: 0.66rem;
    margin-bottom: 10px;
  }
  .footer-column > a {
    font-size: 0.77rem;
  }
  .footer-base {
    font-size: 0.63rem;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 7px;
    padding-bottom: 22px;
  }
  .footer-base > span:nth-child(2) {
    grid-row: 2;
  }
  .footer-base > a {
    grid-column: 2;
    grid-row: 1 / 3;
    gap: 7px;
  }
  .services-hero,
  .cloud-hero,
  .about-hero,
  .legal-hero {
    padding-top: 45px;
  }
  .display {
    font-size: clamp(3.35rem, 12vw, 4.5rem);
    line-height: 1.075;
    letter-spacing: -0.065em;
  }
  .services-head {
    margin-top: 24px;
    gap: 27px;
  }
  .lead {
    font-size: 1.02rem;
  }
  .service-index {
    margin-top: 35px;
  }
  .service-index a {
    font-size: 0.74rem;
    padding: 19px 20px 19px 0;
    gap: 8px;
  }
  .service-index a + a {
    padding-left: 18px;
  }
  .service-index a:nth-child(3) {
    padding-left: 0;
  }
  .service-index .down-arrow {
    right: 8px;
    top: 16px;
  }
  .capability-list {
    padding-top: 20px;
  }
  .capability-block {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-block: 40px;
  }
  .capability-number {
    font-size: 2.4rem;
  }
  .capability-number > span {
    font-size: 1.5rem;
  }
  .capability-block > ul {
    grid-column: auto;
    padding-top: 0;
  }
  .capability-description h2 {
    font-size: 2rem;
    max-width: 310px;
  }
  .capability-description > p {
    font-size: 1rem;
    margin-top: 18px;
  }
  .capability-block li {
    font-size: 0.82rem;
  }
  .engagements {
    padding-block: 75px;
  }
  .engagements h2 {
    font-size: 2.25rem;
    margin-top: 24px;
  }
  .engagement-grid {
    grid-template-columns: 1fr;
    gap: 35px;
    margin-top: 35px;
  }
  .engagement-grid h3 {
    margin-top: 17px;
    margin-bottom: 14px;
    font-size: 1.55rem;
  }
  .engagement-grid p {
    font-size: 1rem;
  }
  .platforms-hero {
    padding-top: 45px;
    padding-bottom: 40px;
    text-align: left;
  }
  .platforms-hero .eyebrow,
  .platforms-hero .scroll-cue {
    justify-content: start;
  }
  .platforms-hero h1 {
    font-size: clamp(3rem, 10.3vw, 4rem);
    line-height: 1.12;
    letter-spacing: -0.065em;
    margin-block: 25px;
  }
  .platforms-hero .lead {
    font-size: 1rem;
  }
  .platforms-hero .scroll-cue {
    margin-top: 24px;
  }
  .platform-showcase {
    padding: 24px 25px 0;
  }
  .platform-masthead {
    padding-bottom: 20px;
  }
  .product-category {
    font-size: 0.51rem;
    padding: 6px 10px;
  }
  .platform-body {
    grid-template-columns: 1fr;
    gap: 33px;
    padding-block: 38px 35px;
  }
  .platform-name h2 {
    font-size: 6.3rem;
  }
  .platform-name > span {
    font-size: 0.73rem;
    margin-top: 9px;
  }
  .platform-description p {
    font-size: 1rem;
    margin-bottom: 24px;
  }
  .platform-description .button {
    font-size: 0.77rem;
  }
  .platform-bottom {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.72rem;
    padding-block: 22px;
  }
  .platform-bottom span + span {
    text-align: left;
  }
  .build-platform {
    padding-block: 75px;
  }
  .split-heading {
    gap: 25px;
  }
  .split-heading h2 {
    font-size: 2.35rem;
  }
  .platform-steps {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 38px;
  }
  .platform-steps h3 {
    margin-top: 18px;
    font-size: 1.5rem;
  }
  .platform-steps p {
    font-size: 1rem;
  }
  .ai-hero {
    padding-top: 45px;
    padding-bottom: 55px;
  }
  .ai-hero .display {
    font-size: clamp(3.25rem, 11.2vw, 4.3rem);
    line-height: 1.11;
    margin-block: 25px;
  }
  .ai-hero-copy > .lead {
    font-size: 1rem;
  }
  .workflow {
    padding: 25px 18px 21px;
    margin-top: 32px;
  }
  .workflow ol {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .workflow-step.step-2,
  .workflow-step.step-3 {
    grid-column: auto;
    grid-row: auto;
  }
  .workflow-step {
    min-height: 84px;
    padding: 15px;
    gap: 17px;
  }
  .workflow-step:not(:last-child)::after {
    display: block;
    bottom: -24px;
    left: 23px;
  }
  .workflow-step strong {
    font-size: 0.89rem;
  }
  .workflow-step > div > span {
    font-size: 0.69rem;
  }
  .workflow-caption {
    font-size: 0.55rem;
  }
  .ai-usecases {
    padding-block: 55px;
  }
  .ai-usecases > h2 {
    font-size: 2.3rem;
    margin-top: 24px;
    margin-bottom: 33px;
  }
  .usecases summary {
    gap: 10px;
    grid-template-columns: 26px 1fr 22px;
    padding-block: 25px;
  }
  .usecases h3 {
    font-size: 1.1rem;
    line-height: 1.5;
  }
  .usecases summary > span {
    font-size: 0.64rem;
  }
  .usecases summary > svg {
    width: 19px;
  }
  .usecase-content {
    grid-template-columns: 1fr;
    gap: 13px;
    margin-left: 36px;
    padding: 0 22px 28px 0;
  }
  .usecase-content p {
    font-size: 0.96rem;
  }
  .usecase-content strong {
    font-size: 0.73rem;
  }
  .ai-trust {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-block: 20px 75px;
  }
  .ai-trust h2 {
    font-size: 2.35rem;
  }
  .ai-trust li {
    padding-left: 37px;
  }
  .cloud-hero .display {
    font-size: clamp(2.8rem, 10.2vw, 3.8rem);
    line-height: 1.12;
    margin-top: 25px;
  }
  .cloud-intro-row {
    flex-direction: column;
    gap: 25px;
    margin-top: 30px;
  }
  .cloud-intro-row > .lead {
    font-size: 1rem;
  }
  .architecture {
    margin-top: 40px;
  }
  .architecture-heading {
    padding: 18px;
  }
  .architecture-heading .small-label {
    font-size: 0.59rem;
  }
  .architecture-heading .line-icon {
    width: 25px;
  }
  .architecture-layer {
    grid-template-columns: 23px 1fr 10px;
    gap: 6px 13px;
    padding: 20px;
  }
  .architecture-layer:nth-child(4) {
    padding-left: 17px;
  }
  .architecture-layer > span:first-child {
    font-size: 0.63rem;
    grid-row: 1 / 3;
    align-self: start;
    padding-top: 2px;
  }
  .architecture-layer > h2 {
    font-size: 1.28rem;
  }
  .architecture-layer > p {
    grid-column: 2;
    font-size: 0.65rem;
  }
  .architecture-layer > .layer-dot {
    grid-column: 3;
    grid-row: 1 / 3;
  }
  .cloud-details {
    padding-top: 75px;
  }
  .cloud-columns {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-top: 0;
  }
  .cloud-columns h3 {
    font-size: 1.6rem;
    margin-top: 19px;
    margin-bottom: 17px;
  }
  .cloud-columns p {
    font-size: 1rem;
  }
  .cloud-principles {
    margin-top: 40px;
    padding-block: 25px;
    flex-direction: column;
    gap: 14px;
  }
  .cloud-statement {
    padding-block: 55px 22px;
  }
  .cloud-statement p {
    font-size: 2.5rem;
  }
  .about-hero {
    padding-bottom: 50px;
  }
  .about-hero .display {
    font-size: clamp(3.1rem, 11vw, 4.2rem);
    line-height: 1.11;
    margin-top: 25px;
  }
  .about-lead {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 32px;
  }
  .about-lead > span {
    font-size: 45px;
  }
  .about-lead > .lead {
    font-size: 1.04rem;
  }
  .manifesto {
    padding-block: 50px;
    gap: 25px;
  }
  .manifesto h2 {
    font-size: 2.4rem;
  }
  .manifesto p {
    font-size: 1rem;
    margin-top: 23px;
  }
  .values {
    padding-block: 75px;
  }
  .values-heading {
    font-size: 2.25rem;
    margin-bottom: 38px;
  }
  .values-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .values-grid h3 {
    font-size: 1.9rem;
    margin-top: 27px;
    margin-bottom: 17px;
  }
  .values-grid article > p {
    font-size: 1rem;
  }
  .contact-page {
    padding-top: 45px;
    padding-bottom: 75px;
    gap: 43px;
  }
  .contact-intro .display {
    font-size: clamp(3.5rem, 12vw, 4.7rem);
    margin-top: 25px;
    margin-bottom: 27px;
  }
  .contact-intro > .lead {
    font-size: 1rem;
  }
  .direct-contact {
    margin-top: 30px;
  }
  .direct-contact a {
    font-size: 1.14rem;
    gap: 15px;
  }
  .direct-contact > span {
    font-size: 0.73rem;
  }
  .field-row {
    grid-template-columns: 1fr;
    gap: 23px;
  }
  .form-panel > h2 {
    font-size: 1.28rem;
  }
  .form-required {
    margin-bottom: 27px;
  }
  .form-panel {
    padding-top: 30px;
    border-top: 1px solid var(--line);
  }
  .form-note {
    font-size: 0.75rem;
  }
  .legal-hero {
    padding-bottom: 40px;
  }
  .legal-hero .display {
    font-size: clamp(2.85rem, 10.25vw, 3.75rem);
    line-height: 1.12;
    margin-block: 25px;
  }
  .legal-hero > .small-label {
    font-size: 0.64rem;
  }
  .legal-body {
    padding-block: 35px 60px;
    gap: 40px;
  }
  .legal-toc {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .legal-toc a {
    font-size: 0.84rem;
  }
  .legal-content h2 {
    font-size: 1.6rem;
  }
  .legal-content p {
    font-size: 0.98rem;
  }
  .not-found {
    padding-block: 70px;
  }
}
/* Brand artwork, product portfolio and dark company footer. */
.home-hero {
  padding-top: 36px;
}
.hero-topline {
  margin-bottom: 24px;
}
.hero-composition {
  grid-template-columns: minmax(0, 1.16fr) minmax(0, 1fr);
  align-items: center;
  gap: 22px;
}
.home-title {
  font-size: clamp(4.5rem, 7.4vw, 7.4rem);
  line-height: 1.055;
  letter-spacing: -0.072em;
}
.hero-copy {
  position: relative;
  z-index: 1;
  padding-block: 20px;
}
.hero-copy > .lead {
  max-width: 520px;
  margin-top: 27px;
  font-size: 1.08rem;
}
.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px 26px;
  margin-top: 30px;
}
.button-blue {
  background: var(--blue);
  border-color: var(--blue);
}
.button-blue:hover {
  background: #0049bb;
  border-color: #0049bb;
}
.hero-art {
  position: relative;
  isolation: isolate;
  aspect-ratio: 0.95;
  min-width: 0;
  display: grid;
  align-items: center;
  background: #fff;
  border-radius: 0;
}
.hero-sculpture {
  width: 100%;
  height: auto;
  mix-blend-mode: multiply;
  mask-image: radial-gradient(ellipse at center, #000 47%, transparent 73%);
}
.hero-art:hover .hero-sculpture {
  transform: none;
}
.hero-art-caption {
  position: absolute;
  bottom: 0;
  left: 6%;
  right: 6%;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid #e1ecf4;
  padding: 20px 23px;
  border-radius: 18px;
  background: #fffffff0;
  box-shadow: 0 16px 45px #00213e08;
}
.art-caption-mark {
  display: grid;
  place-items: center;
  background: #ecf6ff;
  color: var(--blue);
  width: 48px;
  height: 48px;
  border-radius: 12px;
}
.hero-art-caption p {
  font-size: 0.8rem;
  line-height: 1.65;
}
.hero-art-caption strong {
  color: var(--navy);
}
.art-caption-number {
  margin-left: auto;
  color: var(--muted);
  font-size: 0.75rem;
  white-space: nowrap;
}
.hero-bottom {
  margin-top: 38px;
}
.expertise-section {
  padding-top: 88px;
}
.product-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.product-leady {
  --product-bg: #f4fbdc;
  --product-ink: #4b6100;
  --product-accent: #d6f554;
}
.product-cloudvoce {
  --product-bg: #eaf7ff;
  --product-ink: #0064ba;
  --product-accent: #b8e5ff;
}
.product-oromanager {
  --product-bg: #faf4e6;
  --product-ink: #836319;
  --product-accent: #f0dba6;
}
.product-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.35s,
    box-shadow 0.35s,
    border-color 0.35s;
}
.product-card:hover,
.product-card:focus-within {
  transform: translateY(-7px);
  box-shadow: 0 22px 45px #00213e0b;
  border-color: #b9ccd9;
}
.product-card-art {
  background: var(--product-bg);
  padding: 25px 28px;
  min-height: 245px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
}
.product-index {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: var(--product-ink);
}
.product-card-art img {
  width: 100%;
  max-width: 270px;
  height: 88px;
  object-fit: contain;
  align-self: center;
  transition: transform 0.5s;
}
.product-card:hover img {
  transform: scale(1.04);
}
.product-card-art .product-category {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--product-ink);
  letter-spacing: 0.035em;
}
.product-card-copy {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 30px;
}
.product-card-copy h3 {
  font-size: 1.75rem;
  line-height: 1.18;
  max-width: 290px;
}
.product-card-copy p {
  font-size: 0.94rem;
  margin: 20px 0 28px;
}
.product-card-copy .text-link {
  margin-top: auto;
  justify-content: space-between;
  color: var(--navy);
}
.products-more {
  display: flex;
  justify-content: flex-end;
  margin-top: 28px;
}
.product-jump-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}
.product-jump-links a {
  display: inline-flex;
  gap: 28px;
  padding: 11px 21px;
  border: 1px solid var(--line);
  border-radius: 40px;
  font-size: 0.85rem;
  font-weight: 700;
  transition:
    background 0.2s,
    border-color 0.2s;
}
.product-jump-links a:hover {
  background: var(--ice);
  border-color: var(--cyan);
}
.portfolio {
  display: grid;
  gap: 72px;
}
.portfolio-product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 90px);
  align-items: center;
  padding-block: 16px;
}
.portfolio-product:nth-child(even) .portfolio-visual {
  order: 2;
}
.portfolio-visual {
  padding: 45px;
  border-radius: 26px;
  background: var(--product-bg);
  min-width: 0;
}
.portfolio-logo {
  height: 112px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 35px;
}
.portfolio-logo img {
  width: 100%;
  max-width: 330px;
  max-height: 112px;
  height: auto;
  object-fit: contain;
}
.product-flow {
  border-radius: 18px;
  background: #ffffffc9;
  border: 1px solid #ffffff;
  padding: 24px;
  box-shadow: 0 15px 30px #00213e06;
}
.product-flow > .small-label {
  display: block;
  color: var(--product-ink);
  margin-bottom: 20px;
}
.product-flow ol {
  display: grid;
  gap: 18px;
}
.product-flow li {
  display: flex;
  align-items: center;
  gap: 13px;
  position: relative;
  background: #fff;
  border: 1px solid #dde3e6;
  padding: 14px 16px;
  border-radius: 9px;
  transition: transform 0.45s;
}
.product-flow li + li::before {
  content: "";
  position: absolute;
  left: 29px;
  top: -19px;
  height: 18px;
  border-left: 1px dashed var(--product-ink);
}
.product-flow li:nth-child(2) {
  transition-delay: 0.08s;
}
.product-flow li:nth-child(3) {
  transition-delay: 0.16s;
}
.portfolio-product:hover .product-flow li,
.portfolio-product:focus-within .product-flow li {
  transform: translateX(5px);
}
.product-flow li > span:first-child {
  font-size: 0.7rem;
  color: var(--product-ink);
}
.product-flow strong {
  font-size: 0.82rem;
}
.flow-check {
  display: grid;
  place-items: center;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  background: var(--product-accent);
  color: var(--navy);
  margin-left: auto;
  flex: none;
}
.portfolio-domain {
  display: block;
  margin-top: 24px;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--product-ink);
}
.portfolio-copy > .small-label {
  color: var(--product-ink);
}
.portfolio-copy h2 {
  font-size: clamp(2.3rem, 3.7vw, 3.6rem);
  margin-top: 22px;
}
.portfolio-copy > p {
  margin-top: 24px;
}
.portfolio-copy ul {
  margin-top: 26px;
}
.portfolio-copy li {
  padding-block: 9px;
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
}
.portfolio-copy li > span {
  margin-right: 12px;
  color: var(--product-ink);
}
.portfolio-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px 24px;
  margin-top: 30px;
}
.site-footer {
  background: #041a2e;
  color: #fff;
  border-top: 3px solid #075cde;
  padding-top: 70px;
}
.site-footer p,
.footer-column > a {
  color: #b9cbd9;
}
.site-footer a:hover {
  color: #6fdaff;
}
.site-footer :focus-visible {
  outline-color: #6fdaff;
}
.footer-logo img {
  filter: brightness(0) invert(1);
}
.footer-main {
  padding-bottom: 48px;
}
.footer-column h2 {
  color: #fff;
  font-size: 0.78rem;
}
.footer-email {
  color: #fff;
}
.footer-products {
  display: grid;
  gap: 8px;
  margin-top: 24px;
  width: 100%;
}
.footer-products h2 {
  margin-bottom: 7px;
}
.footer-products a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #b9cbd9;
  font-size: 0.86rem;
}
.footer-products svg {
  width: 14px;
  height: 14px;
}
.social-links {
  display: flex;
  gap: 11px;
  margin-top: 27px;
}
.social-links a {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid #385066;
  border-radius: 50%;
  transition:
    background 0.2s,
    transform 0.2s;
}
.social-links a:hover {
  background: #0b3758;
  transform: translateY(-3px);
}
.social-links svg {
  width: 19px;
  height: 19px;
}
.company-details {
  border-top: 1px solid #284054;
  padding: 28px 0;
  font-size: 0.8rem;
  line-height: 1.95;
  color: #b9cbd9;
}
.company-details strong {
  display: block;
  color: #fff;
  font-size: 0.92rem;
  margin-bottom: 6px;
}
.company-details address {
  font-style: normal;
}
.company-details p > span {
  padding-inline: 7px;
}
.company-details a {
  text-decoration: underline;
  text-decoration-color: #5c7183;
  text-underline-offset: 4px;
}
.footer-base {
  border-color: #284054;
  color: #a9bfce;
  font-size: 0.75rem;
}
@keyframes hero-enter {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes sculpture-enter {
  0% {
    opacity: 0;
    transform: translateY(25px) rotate(-6deg) scale(0.95);
  }
  65% {
    opacity: 1;
    transform: translateY(-7px) rotate(1deg) scale(1);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@media (prefers-reduced-motion: no-preference) {
  .hero-copy {
    animation: hero-enter 0.85s both;
  }
  .hero-sculpture {
    animation: none;
  }
  .hero-art-caption {
    animation: hero-enter 0.85s 0.3s both;
  }
}
@media (max-width: 1180px) {
  .hero-composition {
    gap: 12px;
  }
  .home-title {
    font-size: clamp(3.6rem, 7.35vw, 6rem);
  }
  .hero-copy > .lead {
    font-size: 1rem;
  }
  .hero-actions {
    gap: 14px;
  }
  .hero-actions .button {
    padding-inline: 21px;
  }
  .hero-actions .text-link {
    font-size: 0.82rem;
    gap: 12px;
  }
  .hero-art-caption {
    padding: 16px;
    left: 2%;
    right: 2%;
    gap: 10px;
  }
  .art-caption-number {
    display: none;
  }
  .product-card-art {
    padding: 20px;
    min-height: 225px;
  }
  .product-card-copy {
    padding: 24px;
  }
  .product-card-copy h3 {
    font-size: 1.5rem;
  }
  .product-cards {
    gap: 16px;
  }
  .portfolio-visual {
    padding: 28px;
  }
}
@media (max-width: 820px) {
  .hero-composition {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .home-title {
    font-size: clamp(4.1rem, 12.3vw, 6.6rem);
  }
  .hero-copy {
    padding: 0;
  }
  .hero-copy > .lead {
    max-width: 540px;
  }
  .hero-art {
    max-width: 510px;
    width: 100%;
    justify-self: center;
    aspect-ratio: 1.12;
    overflow: hidden;
  }
  .hero-sculpture {
    width: 92%;
    justify-self: center;
    margin-top: -30px;
  }
  .hero-art-caption {
    left: 9%;
    right: 9%;
    bottom: 8px;
  }
  .hero-actions {
    gap: 22px;
  }
  .product-cards {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .product-card {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
  }
  .product-card-art {
    min-height: 280px;
  }
  .product-card-copy h3 {
    font-size: 1.6rem;
  }
  .product-card-copy p {
    font-size: 0.91rem;
  }
  .portfolio-product {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .portfolio-product:nth-child(even) .portfolio-visual {
    order: 0;
  }
  .portfolio-visual {
    padding: 34px;
  }
  .portfolio-logo {
    max-width: 330px;
  }
  .product-flow {
    max-width: 460px;
    margin-inline: auto;
  }
  .portfolio-copy h2 {
    max-width: 570px;
    font-size: 2.6rem;
  }
}
@media (max-width: 560px) {
  .home-hero {
    padding-top: 27px;
  }
  .hero-topline {
    margin-bottom: 24px;
  }
  .home-title {
    font-size: clamp(2.95rem, 12.3vw, 4.7rem);
  }
  .hero-copy > .lead {
    margin-top: 22px;
  }
  .hero-actions {
    margin-top: 24px;
    gap: 12px 20px;
  }
  .hero-art-caption p {
    font-size: 0.75rem;
  }
  .art-caption-mark {
    width: 39px;
    height: 39px;
  }
  .art-caption-mark svg {
    width: 25px;
    height: 25px;
  }
  .hero-art-caption {
    padding: 14px;
  }
  .hero-bottom {
    margin-top: 27px;
  }
  .expertise-section {
    padding-top: 64px;
  }
  .product-card {
    display: flex;
  }
  .product-card-art {
    min-height: 230px;
    padding: 25px;
  }
  .product-card-art img {
    max-width: 260px;
  }
  .product-card-copy {
    padding: 28px;
  }
  .product-card-copy h3 {
    font-size: 1.9rem;
  }
  .product-card-copy p {
    font-size: 1rem;
  }
  .product-jump-links {
    justify-content: flex-start;
    gap: 10px;
  }
  .product-jump-links a {
    font-size: 0.8rem;
    gap: 14px;
    padding: 10px 16px;
  }
  .portfolio {
    gap: 48px;
  }
  .portfolio-visual {
    padding: 25px 20px;
    border-radius: 18px;
  }
  .portfolio-logo {
    height: 95px;
    margin-bottom: 24px;
    max-width: 265px;
  }
  .product-flow {
    padding: 20px 16px;
  }
  .product-flow li {
    padding: 12px;
    gap: 10px;
  }
  .product-flow strong {
    font-size: 0.76rem;
  }
  .portfolio-copy h2 {
    font-size: 2.3rem;
  }
  .portfolio-actions {
    align-items: start;
    flex-direction: column;
  }
  .site-footer {
    padding-top: 50px;
  }
  .footer-main {
    padding-bottom: 35px;
  }
  .company-details {
    font-size: 0.76rem;
    line-height: 1.95;
  }
  .company-details p > span {
    padding-inline: 3px;
  }
  .footer-base {
    font-size: 0.7rem;
  }
}
/* Editorial refinement: compact navigation and quieter, distinct inner pages. */
:root {
  --header-height: 96px;
}
.site-header {
  background: #fff;
  border-bottom-color: #eaf0f4;
}
.header-inner {
  height: var(--header-height);
  width: min(1456px, calc(100% - 64px));
  gap: 22px;
}
.site-header .brand {
  width: 248px;
  height: 68px;
}
.site-header .main-nav {
  margin-left: auto;
  gap: 4px;
}
.site-header .main-nav > a {
  padding: 10px 12px;
  border-radius: 7px;
  font-size: 0.82rem;
  font-weight: 600;
}
.site-header .main-nav > a::after {
  display: none;
}
.site-header .main-nav > a:hover,
.site-header .main-nav > a[aria-current="page"] {
  background: #f2f7fc;
  color: var(--blue);
}
.site-header .main-nav > .nav-contact {
  display: none;
}
.nav-number,
.nav-direction,
.nav-reach {
  display: none;
}
.header-end {
  gap: 16px;
  margin-left: 0;
}
.header-contact {
  margin: 0;
  padding: 12px 20px;
  min-height: 46px;
  border-radius: 9px;
  box-shadow: none;
}
.header-contact:hover {
  transform: none;
  box-shadow: none;
}
.language-select {
  position: relative;
  flex: none;
  color: var(--navy);
}
.language-select summary {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 9px 11px;
  border: 1px solid var(--line);
  border-radius: 9px;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 700;
  background: #fff;
}
.language-select summary::-webkit-details-marker {
  display: none;
}
.language-select summary > svg:first-child {
  width: 17px;
  height: 17px;
}
.language-select summary > svg:last-child {
  width: 14px;
  height: 14px;
  transition: transform 0.18s;
}
.language-select[open] summary {
  border-color: #9fc6e7;
  background: #f7fbff;
}
.language-select[open] summary > svg:last-child {
  transform: rotate(180deg);
}
.language-options {
  position: absolute;
  z-index: 80;
  top: calc(100% + 10px);
  right: 0;
  width: 210px;
  padding: 7px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 12px 35px #00213e14;
  max-height: min(360px, calc(100vh - 100px));
  overflow-y: auto;
}
.language-options a {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 45px;
  padding: 9px 11px;
  border-radius: 7px;
  font-size: 0.88rem;
}
.language-options a:hover,
.language-options a[aria-current] {
  background: #f0f7fc;
  color: var(--blue);
}
.language-code {
  font-size: 0.67rem;
  letter-spacing: 0.03em;
  color: var(--muted);
  width: 23px;
}
.language-check {
  margin-left: auto;
}
.breadcrumbs {
  padding-top: 28px;
}
.breadcrumbs ol {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-size: 0.78rem;
}
.breadcrumbs li + li::before {
  content: "/";
  margin-right: 10px;
  color: #aebdca;
}
.breadcrumbs a:hover {
  color: var(--blue);
}
.breadcrumbs li[aria-current] {
  color: var(--text);
}
.hero-sculpture {
  mask-image: radial-gradient(ellipse at center, #000 64%, transparent 73%);
}
.hero-art-caption {
  box-shadow: none;
  background: #fff;
  border-radius: 12px;
}
body:not(.page-home) .display {
  font-size: clamp(2.8rem, 5.35vw, 5.2rem);
  line-height: 1.12;
  letter-spacing: -0.058em;
}
body:not(.page-home) h2 {
  letter-spacing: -0.04em;
}
body:not(.page-home) .lead {
  font-size: 1.08rem;
  line-height: 1.8;
}
.eyebrow {
  letter-spacing: 0.065em;
  font-size: 0.78rem;
}
.services-hero,
.cloud-hero,
.about-hero,
.legal-hero {
  padding-top: 38px;
}
.services-head {
  grid-template-columns: 1.6fr 1fr;
  gap: 64px;
  align-items: center;
}
.service-index {
  margin-top: 46px;
}
.service-index a {
  font-size: 0.85rem;
}
.capability-list {
  padding-top: 12px;
}
.capability-block {
  grid-template-columns: 55px minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 45px;
  padding-block: 50px;
}
.capability-number {
  font-size: 0.9rem;
  letter-spacing: 0;
  color: var(--blue);
  padding-top: 8px;
}
.capability-number > span {
  display: none;
}
.capability-description h2 {
  font-size: clamp(1.65rem, 2.4vw, 2.3rem);
}
.capability-description > p {
  font-size: 1rem;
  margin-top: 18px;
}
.capability-block li {
  font-size: 0.88rem;
}
.capability-block li svg {
  display: none;
}
.engagements {
  padding-block: 80px;
}
.engagements > h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
}
.engagement-grid {
  gap: 38px;
  margin-top: 40px;
}
.engagement-grid h3 {
  font-size: 1.4rem;
  margin: 20px 0 13px;
}
.platforms-hero {
  text-align: left;
  padding-block: 40px 54px;
}
.platforms-hero > .eyebrow {
  justify-content: start;
}
.platforms-hero > .display {
  margin-top: 24px;
}
.platforms-hero > .lead {
  max-width: 720px;
  margin: 25px 0 0;
}
.product-jump-links {
  justify-content: flex-start;
  margin-top: 28px;
}
.product-jump-links a {
  border-radius: 8px;
  padding: 10px 16px;
}
.portfolio {
  gap: 0;
}
.portfolio-product {
  gap: clamp(32px, 6vw, 80px);
  padding-block: 48px;
  border-top: 1px solid var(--line);
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}
.portfolio-visual {
  border-radius: 12px;
  padding: 34px;
  background: var(--product-bg);
}
.portfolio-logo {
  margin-bottom: 28px;
  height: 100px;
}
.portfolio-logo img {
  max-width: 315px;
  max-height: 100px;
}
.product-flow {
  background: none;
  border: 0;
  padding: 22px 0 0;
  box-shadow: none;
  border-radius: 0;
  border-top: 1px solid #00213e1a;
}
.product-flow > .small-label {
  font-size: 0.7rem;
  margin-bottom: 10px;
}
.product-flow ol {
  gap: 0;
}
.product-flow li {
  background: none;
  border: 0;
  border-radius: 0;
  padding: 9px 0;
}
.product-flow li + li::before {
  display: none;
}
.portfolio-product:hover .product-flow li,
.portfolio-product:focus-within .product-flow li {
  transform: none;
}
.product-flow strong {
  font-size: 0.86rem;
  font-weight: 400;
}
.flow-check {
  width: 20px;
  height: 20px;
  font-size: 0.75rem;
}
.portfolio-domain {
  margin-top: 22px;
}
.portfolio-copy h2 {
  font-size: clamp(1.85rem, 3vw, 2.6rem);
  max-width: 520px;
  margin-top: 16px;
}
.portfolio-copy > p {
  margin-top: 18px;
}
.portfolio-copy ul {
  margin-top: 19px;
}
.portfolio-copy li {
  padding-block: 8px;
}
.portfolio-actions {
  margin-top: 24px;
}
.portfolio-actions .button {
  border-radius: 9px;
  min-height: 50px;
  padding: 12px 20px;
}
.build-platform {
  padding-block: 75px;
}
.build-platform .split-heading {
  gap: 65px;
}
.build-platform h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
}
.platform-steps {
  margin-top: 45px;
  gap: 38px;
}
.platform-steps h3 {
  margin-top: 23px;
  font-size: 1.4rem;
}
.ai-hero {
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.85fr);
  gap: 70px;
  padding-block: 36px 70px;
  align-items: start;
}
.ai-hero .display {
  margin-top: 23px;
  margin-bottom: 25px;
}
.workflow {
  background: #fff;
  border: 0;
  border-left: 1px solid var(--line);
  padding: 5px 0 0 35px;
  margin-top: 12px;
}
.workflow ol {
  gap: 0;
}
.workflow-step,
.workflow-step.step-1 {
  border: 0;
  border-bottom: 1px solid var(--line);
  box-shadow: none;
  padding: 18px 0;
  min-height: 84px;
}
.workflow-step:not(:last-child)::after {
  display: none;
}
.workflow-step.step-1 strong {
  color: var(--blue);
}
.workflow-step strong {
  font-size: 0.96rem;
}
.workflow-step > div > span {
  font-size: 0.82rem;
}
.workflow-caption {
  display: none;
}
.ai-usecases {
  padding-block: 56px 65px;
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  column-gap: 70px;
  align-items: start;
}
.ai-usecases > .eyebrow {
  grid-column: 1;
}
.ai-usecases > h2 {
  grid-column: 1;
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin: 20px 0 0;
}
.usecases {
  grid-column: 2;
  grid-row: 1 / 3;
}
.usecases details {
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.usecases summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 23px 0;
}
.usecases summary > .faq-question {
  font-size: 1.02rem;
  line-height: 1.55;
  font-weight: 600;
  color: var(--navy);
}
.usecases summary:hover .faq-question,
.usecases details[open] .faq-question {
  color: var(--blue);
}
.faq-icon {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  flex: none;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--navy);
}
.faq-icon svg {
  width: 16px;
  height: 16px;
}
.usecases details[open] .faq-icon {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}
.usecases details[open] summary svg {
  transform: rotate(0);
}
.usecases details[open] summary svg .icon-vertical {
  opacity: 0;
}
.usecase-content {
  display: block;
  margin: 0;
  padding: 0 45px 25px 0;
}
.usecase-content strong {
  display: block;
  font-size: 0.78rem;
  margin-bottom: 10px;
}
.usecase-content p {
  font-size: 0.98rem;
  line-height: 1.8;
  max-width: 600px;
}
.ai-trust {
  gap: 80px;
  padding-block: 50px 85px;
}
.ai-trust h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
}
.architecture {
  max-width: none;
  margin-top: 44px;
  border: 0;
  border-top: 1px solid var(--line);
  box-shadow: none;
}
.architecture-heading {
  padding: 23px 0;
}
.architecture-layer {
  grid-template-columns: 50px 1fr 1.4fr;
  padding: 25px 0;
  gap: 30px;
}
.architecture-layer:nth-child(3),
.architecture-layer:nth-child(4) {
  background: none;
  border-left: 0;
  padding-left: 0;
}
.architecture-layer h2 {
  font-size: 1.4rem;
}
.architecture-layer p {
  font-size: 0.92rem;
}
.layer-dot {
  display: none;
}
.cloud-intro-row {
  margin-top: 27px;
  gap: 55px;
}
.cloud-intro-row .button {
  border-radius: 9px;
}
.cloud-details {
  padding-top: 70px;
}
.cloud-details h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
}
.cloud-columns {
  gap: 35px;
}
.cloud-principles {
  padding-block: 26px;
  margin-top: 42px;
  gap: 16px 24px;
}
.cloud-principles li > span {
  font-size: 17px;
}
.cloud-statement {
  padding-block: 55px;
}
.cloud-statement p {
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  max-width: 900px;
  line-height: 1.35;
}
.about-hero {
  padding-bottom: 55px;
}
.about-lead {
  display: block;
  margin: 28px 0 0;
  max-width: 750px;
}
.manifesto {
  grid-template-columns: 0.75fr 1.5fr;
  gap: 65px;
  padding-block: 55px;
}
.manifesto-index {
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.75rem;
}
.manifesto h2 {
  font-size: clamp(1.75rem, 3vw, 2.75rem);
}
.manifesto p {
  font-size: 1rem;
  margin-top: 23px;
}
.values {
  padding-block: 70px;
}
.values-heading {
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin-bottom: 38px;
}
.values-grid {
  column-gap: 65px;
  row-gap: 42px;
}
.values-grid h3 {
  font-size: 1.5rem;
  margin-block: 26px 15px;
}
.contact-page {
  gap: 75px;
  padding-block: 40px 85px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}
.contact-intro {
  position: static;
}
.direct-contact {
  margin-top: 38px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: start;
}
.direct-contact > span {
  margin-bottom: 2px;
}
.direct-contact a {
  font-size: 1.16rem;
  min-height: 35px;
  letter-spacing: -0.02em;
}
.direct-contact address {
  margin-top: 17px;
  font-size: 0.87rem;
  font-style: normal;
  color: var(--text);
  line-height: 1.8;
}
.form-panel {
  border-left: 1px solid var(--line);
  padding-left: 45px;
}
#contact-form label {
  font-size: 0.86rem;
}
#contact-form input:not([type="checkbox"]),
#contact-form textarea,
#contact-form select {
  border: 1px solid #cddae4;
  border-radius: 7px;
  background: #fff;
}
#contact-form .button {
  border-radius: 9px;
  background: var(--blue);
  border-color: var(--blue);
}
.legal-hero {
  padding-bottom: 36px;
}
.legal-hero .display {
  margin-block: 22px;
  max-width: 900px;
}
.legal-body {
  gap: 60px;
  padding-bottom: 75px;
}
.legal-content h2 {
  font-size: 1.6rem;
}
.legal-content p {
  font-size: 1rem;
}
body:not(.page-home) .closing {
  padding-block: 60px 70px;
}
body:not(.page-home) .closing h2 {
  font-size: clamp(2rem, 3.8vw, 3.5rem);
}
body:not(.page-home) .big-arrow {
  width: 84px;
  height: 84px;
}
body:not(.page-home) .big-arrow svg {
  width: 35px;
  height: 35px;
}
.footer-phone {
  display: block;
  font-size: 0.95rem;
  margin-top: 9px;
  width: fit-content;
}
.footer-main,
.company-details {
  overflow-wrap: anywhere;
}
@media (max-width: 1280px) {
  :root {
    --header-height: 88px;
  }
  .header-inner {
    width: calc(100% - 48px);
    gap: 16px;
  }
  .site-header .brand {
    width: 242px;
    height: 64px;
  }
  .header-end {
    margin-left: auto;
    gap: 14px;
  }
  .site-header .menu-toggle {
    display: flex;
    order: 3;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    flex: none;
    gap: 7px;
    border: 1px solid var(--line);
    border-radius: 9px;
    margin: 0;
    background: #fff;
  }
  .menu-toggle span {
    display: block;
    width: 18px;
    height: 1px;
    background: var(--navy);
  }
  .site-header .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 36px;
    padding: 25px 36px 32px;
    max-height: calc(100dvh - var(--header-height));
    overflow-y: auto;
    overscroll-behavior: contain;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 16px 30px #00213e0d;
  }
  .js .site-header .main-nav {
    display: none;
  }
  .js .menu-open .site-header .main-nav {
    display: grid;
  }
  .menu-open {
    overflow: hidden;
  }
  .site-header .main-nav > a {
    display: flex;
    align-items: center;
    gap: 15px;
    border-radius: 0;
    border-bottom: 1px solid var(--line);
    padding: 20px 0;
    font-size: 1.1rem;
  }
  .site-header .main-nav > a:hover,
  .site-header .main-nav > a[aria-current] {
    background: none;
  }
  .nav-number {
    display: inline;
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--muted);
  }
  .nav-direction {
    display: inline;
    margin-left: auto;
    color: var(--blue);
  }
  .nav-direction svg {
    width: 18px;
    height: 18px;
  }
  .site-header .main-nav > .nav-contact {
    display: flex;
    justify-content: space-between;
    background: var(--blue);
    color: #fff;
    border: 0;
    border-radius: 9px;
    padding: 15px 20px;
    margin-top: 12px;
    align-self: center;
  }
  .site-header .main-nav > .nav-contact:hover {
    background: #0049bb;
    color: #fff;
  }
  .nav-reach {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 26px;
    padding-top: 26px;
    grid-column: 1 / -1;
    font-size: 0.88rem;
  }
  .nav-reach > span {
    color: var(--muted);
    font-size: 0.75rem;
  }
  .nav-reach > a {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
  }
  .header-contact {
    display: flex;
  }
  .services-head {
    gap: 40px;
  }
  .ai-hero {
    gap: 40px;
  }
  .capability-block {
    gap: 28px;
  }
  .contact-page {
    gap: 45px;
  }
  .form-panel {
    padding-left: 30px;
  }
}
@media (max-width: 900px) {
  .wrap {
    width: calc(100% - 48px);
  }
  .services-head {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .services-head > .lead {
    max-width: 680px;
  }
  .service-index {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .service-index a:nth-child(3) {
    border-left: 0;
    padding-left: 0;
  }
  .service-index a:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }
  .capability-block {
    grid-template-columns: 35px minmax(0, 1fr);
  }
  .capability-block > ul {
    grid-column: 2;
  }
  .capability-description h2 {
    font-size: 1.8rem;
  }
  .engagement-grid {
    gap: 25px;
  }
  .portfolio-product {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 32px;
  }
  .portfolio-visual {
    padding: 26px;
  }
  .portfolio-product:nth-child(even) .portfolio-visual {
    order: 2;
  }
  .portfolio-copy h2 {
    font-size: 1.9rem;
  }
  .portfolio-actions {
    flex-direction: column;
    align-items: start;
  }
  .ai-hero {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .workflow {
    margin-top: 0;
    border-left: 0;
    border-block: 1px solid var(--line);
    padding: 25px 0;
  }
  .workflow ol {
    grid-template-columns: 1fr 1fr;
    gap: 0 28px;
  }
  .ai-usecases {
    grid-template-columns: 1fr;
    row-gap: 20px;
  }
  .ai-usecases > h2 {
    margin: 0 0 10px;
  }
  .usecases {
    grid-column: 1;
    grid-row: auto;
  }
  .ai-trust {
    gap: 45px;
  }
  .cloud-intro-row {
    align-items: start;
    flex-direction: column;
    gap: 24px;
  }
  .architecture-layer {
    grid-template-columns: 35px 1fr 1.3fr;
    gap: 20px;
  }
  .architecture-layer h2 {
    font-size: 1.2rem;
  }
  .cloud-details .section-top {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .cloud-columns {
    gap: 25px;
  }
  .manifesto {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .values-grid {
    column-gap: 40px;
  }
  .contact-page {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .contact-intro > .lead {
    max-width: 650px;
  }
  .direct-contact {
    margin-top: 28px;
  }
  .form-panel {
    padding: 30px 0 0;
    border-left: 0;
    border-top: 1px solid var(--line);
    max-width: 700px;
    width: 100%;
  }
}
@media (max-width: 600px) {
  :root {
    --header-height: 76px;
  }
  .wrap {
    width: calc(100% - 40px);
  }
  .header-inner {
    width: calc(100% - 28px);
    gap: 8px;
  }
  .site-header .brand {
    width: clamp(140px, 44vw, 196px);
    height: 56px;
  }
  .header-end {
    margin-left: auto;
    gap: 0;
  }
  .header-contact {
    display: none;
  }
  .language-select summary {
    min-height: 40px;
    padding: 8px;
    gap: 6px;
    font-size: 0.73rem;
  }
  .language-select summary > svg:first-child {
    width: 15px;
    height: 15px;
  }
  .language-select summary > svg:last-child {
    width: 11px;
    height: 11px;
  }
  .language-options {
    right: -44px;
    width: 205px;
  }
  .site-header .menu-toggle {
    width: 40px;
    height: 40px;
  }
  .site-header .main-nav {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 12px 22px 25px;
  }
  .site-header .main-nav > a {
    font-size: 1.08rem;
    padding: 16px 0;
    min-height: 57px;
  }
  .site-header .main-nav > .nav-contact {
    margin-top: 18px;
    padding-inline: 18px;
    min-height: 52px;
  }
  .nav-reach {
    display: grid;
    gap: 4px;
    padding-top: 22px;
  }
  .nav-reach > span {
    margin-bottom: 6px;
  }
  .nav-reach > a {
    min-height: 30px;
  }
  .breadcrumbs {
    padding-top: 22px;
  }
  .breadcrumbs ol {
    font-size: 0.75rem;
  }
  .eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.045em;
  }
  body:not(.page-home) .display {
    font-size: clamp(2rem, 7.7vw, 2.85rem);
    line-height: 1.15;
    letter-spacing: -0.052em;
    overflow-wrap: anywhere;
  }
  body:not(.page-home) .lead {
    font-size: 1rem;
    line-height: 1.75;
  }
  .services-hero,
  .cloud-hero,
  .about-hero,
  .legal-hero {
    padding-top: 28px;
  }
  .services-head {
    margin-top: 23px;
    gap: 20px;
  }
  .service-index {
    margin-top: 32px;
  }
  .service-index a {
    font-size: 0.78rem;
    padding: 17px 25px 17px 0;
  }
  .service-index a + a {
    padding-left: 17px;
  }
  .service-index a:nth-child(3) {
    padding-left: 0;
  }
  .service-index .down-arrow {
    right: 10px;
    top: 17px;
  }
  .capability-block {
    padding-block: 35px;
    gap: 15px;
    grid-template-columns: 24px minmax(0, 1fr);
  }
  .capability-description h2 {
    font-size: 1.55rem;
  }
  .capability-number {
    font-size: 0.75rem;
    padding-top: 6px;
  }
  .capability-block > ul {
    margin-top: 0;
  }
  .capability-block li {
    font-size: 0.86rem;
  }
  .engagements {
    padding-block: 50px;
  }
  .engagement-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 30px;
  }
  .engagement-grid h3 {
    margin-top: 16px;
  }
  .platforms-hero {
    padding-block: 28px 35px;
  }
  .portfolio-product {
    grid-template-columns: 1fr;
    gap: 26px;
    padding-block: 34px;
  }
  .portfolio-product:nth-child(even) .portfolio-visual {
    order: 0;
  }
  .portfolio-visual {
    padding: 27px;
  }
  .portfolio-copy h2 {
    font-size: 1.9rem;
  }
  .portfolio-copy .small-label {
    font-size: 0.7rem;
  }
  .portfolio-actions {
    flex-direction: row;
    gap: 15px 20px;
    align-items: center;
  }
  .build-platform {
    padding-block: 50px;
  }
  .build-platform .split-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .platform-steps {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .platform-steps h3 {
    margin-top: 18px;
  }
  .ai-hero {
    padding-block: 28px 40px;
  }
  .workflow ol {
    grid-template-columns: 1fr;
  }
  .workflow-step {
    min-height: 75px;
    padding-block: 14px;
  }
  .workflow > .small-label {
    font-size: 0.7rem;
    margin-bottom: 10px;
  }
  .ai-usecases {
    padding-block: 40px;
  }
  .usecases summary {
    gap: 17px;
    padding-block: 20px;
  }
  .usecases summary > .faq-question {
    font-size: 1rem;
  }
  .usecase-content {
    padding: 0 0 24px;
  }
  .ai-trust {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-block: 30px 50px;
  }
  .architecture {
    margin-top: 35px;
  }
  .architecture-heading {
    padding-block: 20px;
  }
  .architecture-layer {
    grid-template-columns: 26px minmax(0, 1fr);
    gap: 5px 15px;
    padding-block: 20px;
  }
  .architecture-layer h2 {
    font-size: 1.2rem;
  }
  .architecture-layer p {
    grid-column: 2;
    font-size: 0.86rem;
  }
  .cloud-details {
    padding-top: 45px;
  }
  .cloud-columns {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .cloud-columns h3 {
    margin-block: 20px 15px;
  }
  .cloud-principles {
    margin-top: 35px;
    gap: 13px;
  }
  .cloud-statement {
    padding-block: 36px;
  }
  .about-hero {
    padding-bottom: 40px;
  }
  .about-lead {
    margin-top: 23px;
  }
  .manifesto {
    padding-block: 38px;
    gap: 20px;
  }
  .manifesto h2 {
    font-size: 1.8rem;
  }
  .values {
    padding-block: 45px;
  }
  .values-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .values-grid h3 {
    margin-top: 20px;
  }
  .contact-page {
    padding-block: 28px 50px;
  }
  .contact-intro .display {
    margin-block: 23px;
  }
  .field-row {
    grid-template-columns: 1fr;
    gap: 23px;
  }
  .legal-hero {
    padding-bottom: 26px;
  }
  .legal-body {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 50px;
  }
  .legal-toc {
    position: static;
  }
  .legal-content section {
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
  .legal-content h2 {
    font-size: 1.4rem;
  }
  body:not(.page-home) .closing {
    padding-block: 40px 50px;
  }
  body:not(.page-home) .closing h2 {
    font-size: 2rem;
  }
  body:not(.page-home) .closing-grid {
    gap: 24px;
  }
  body:not(.page-home) .big-arrow {
    width: 60px;
    height: 60px;
  }
  body:not(.page-home) .big-arrow svg {
    width: 26px;
    height: 26px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
    scroll-behavior: auto !important;
  }
}
@media (forced-colors: active) {
  .ink-gradient {
    background: none;
    -webkit-text-fill-color: currentColor;
  }
  .button,
  .workflow-step,
  .big-arrow {
    border: 1px solid ButtonText;
  }
  .eyebrow > span {
    background: CanvasText;
  }
  .brand {
    forced-color-adjust: none;
  }
}
@media print {
  .site-header,
  .site-footer,
  .closing,
  .menu-toggle {
    display: none;
  }
  .wrap {
    width: 100%;
  }
  body {
    font-size: 11pt;
  }
  .display {
    font-size: 32pt;
  }
  .ink-gradient {
    -webkit-text-fill-color: var(--navy);
    background: none;
  }
  .contact-intro,
  .legal-toc {
    position: static;
  }
}
