:root {
  --white: #ffffff;
  --paper: #f3f5f7;
  --paper-deep: #e9edf1;
  --ink: #383c42;
  --ink-soft: #60666e;
  --ink-faint: #8a9098;
  --blue: #225b9f;
  --blue-dark: #174477;
  --blue-deep: #102f52;
  --blue-light: #4b80bb;
  --line: #dce1e5;
  --shell: min(1180px, calc(100vw - 48px));
  --shadow: 0 24px 60px rgb(16 47 82 / 12%);
  --font: "Aptos", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --transition: 220ms cubic-bezier(0.2, 0.72, 0.25, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

svg {
  display: block;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--blue-deep);
  transform: translateY(-160%);
}

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

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: 90px;
  background: rgb(255 255 255 / 95%);
  border-bottom: 1px solid transparent;
  transition:
    height var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
  backdrop-filter: blur(16px);
}

.site-header.scrolled {
  height: 76px;
  border-color: var(--line);
  box-shadow: 0 12px 30px rgb(20 40 64 / 6%);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: flex;
  align-items: center;
  width: 160px;
  height: 78px;
  transition: height var(--transition);
}

.site-header.scrolled .brand {
  height: 66px;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.main-nav a {
  position: relative;
  color: var(--ink);
  font-size: 0.89rem;
  font-weight: 650;
  letter-spacing: 0.01em;
}

.main-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--blue);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition);
}

.main-nav > a:not(.nav-cta):hover::after,
.main-nav > a:not(.nav-cta):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 12px 20px;
  color: var(--white) !important;
  background: var(--blue);
  transition:
    background var(--transition),
    transform var(--transition);
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--blue-dark);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  background: none;
  border: 0;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
  transition: transform var(--transition);
}

.hero {
  position: relative;
  min-height: 720px;
  padding-top: 90px;
  overflow: hidden;
  background: var(--white);
}

.hero::after {
  display: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: block;
  align-items: center;
  min-height: 520px;
}

.hero-copy {
  max-width: 860px;
  padding-top: 48px;
}

.hero h1 {
  max-width: 710px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(3rem, 4vw, 3.8rem);
  font-weight: 780;
  letter-spacing: -0.065em;
  line-height: 0.96;
}

.hero h1 span {
  color: var(--blue);
}

.hero-lead {
  margin: 34px 0 0;
  color: var(--ink);
  font-size: 1.22rem;
  font-weight: 750;
  letter-spacing: 0.005em;
}

.hero-lead::before {
  display: none;
}

.hero-text {
  max-width: 625px;
  margin: 16px 0 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  margin-top: 34px;
  gap: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 25px;
  border: 0;
  font-size: 0.95rem;
  font-weight: 750;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition:
    background var(--transition),
    color var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
}

.button svg,
.text-link svg,
.service-arrow svg {
  width: 20px;
  height: 20px;
  margin-left: 18px;
  fill: none;
  stroke: currentcolor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.button-primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 14px 30px rgb(34 91 159 / 20%);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--blue-dark);
  box-shadow: 0 18px 36px rgb(34 91 159 / 28%);
  transform: translateY(-3px);
}

.text-link {
  display: inline-flex;
  align-items: center;
  padding-block: 8px;
  color: var(--blue);
  border-bottom: 1px solid currentcolor;
  font-size: 0.93rem;
  font-weight: 750;
}

.text-link svg {
  width: 17px;
  height: 17px;
  margin-left: 10px;
}

.hero-visual {
  position: relative;
  display: flex;
  min-width: 0;
  height: auto;
  margin-top: 38px;
}

.hero-service-board {
  position: relative;
  width: 100%;
  min-height: 452px;
  padding: 42px 40px 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px rgb(16 47 82 / 10%);
}

.hero-service-board::before,
.hero-service-board::after {
  position: absolute;
  top: 0;
  right: 0;
  content: "";
}

.hero-service-board::before {
  width: 46%;
  height: 94px;
  background: #dce7f2;
  clip-path: polygon(26% 0, 100% 0, 100% 100%, 0 0);
}

.hero-service-board::after {
  width: 34%;
  height: 82px;
  background: var(--blue);
  clip-path: polygon(24% 0, 100% 0, 100% 100%, 0 0);
}

.hero-board-label {
  position: relative;
  z-index: 2;
  margin: 0;
  color: var(--blue);
  font-size: 0.74rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-board-list {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 42px;
  column-gap: 28px;
}

.hero-board-list span {
  position: relative;
  min-width: 0;
  padding: 15px 0 15px 34px;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  font-size: 0.82rem;
  font-weight: 680;
}

.hero-board-list span::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 23px;
  height: 23px;
  background: var(--blue);
  border: 5px solid #dce7f2;
  border-radius: 50%;
  content: "";
  transform: translateY(-50%);
}

.hero-board-contact {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  display: flex;
  width: 72%;
  min-height: 112px;
  justify-content: center;
  flex-direction: column;
  padding: 24px 32px 22px 76px;
  color: var(--white);
  background: var(--blue);
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
}

.hero-board-contact small {
  color: #c8daec;
  font-size: 0.68rem;
  font-weight: 650;
}

.hero-board-contact strong {
  margin-top: 3px;
  font-size: 1.02rem;
  line-height: 1.3;
}

.trust-rail {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 114px;
  color: var(--ink);
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-rail > div {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 38px;
  border-right: 1px solid var(--line);
}

.trust-rail > div::before {
  display: none;
}

.trust-rail > div:last-child {
  border-right: 0;
}

.trust-rail strong {
  font-size: 1.02rem;
  line-height: 1.2;
}

.trust-rail small {
  margin-top: 3px;
  color: var(--ink-faint);
  font-size: 0.78rem;
}

.section {
  padding: 96px 0;
}

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

.section-heading {
  margin-bottom: 58px;
}

.section-heading > div {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
  gap: 70px;
}

.section-heading h2,
.solution-intro h2,
.founders-copy h2,
.partners-copy h2,
.company-copy h2,
.contact-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.7rem, 2.2vw, 2.4rem);
  font-weight: 760;
  letter-spacing: -0.045em;
  line-height: 1.06;
}

.section-heading > div > p {
  max-width: 470px;
  margin: 0 0 5px;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.75;
}

.service-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid #cfd5da;
}

.service-featured {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  min-height: 330px;
  background: #eaf0f6;
  border-bottom: 1px solid #cfd5da;
}

.service-featured-image {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
}

.service-featured-body {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  align-content: center;
  padding: 38px 48px;
  gap: 18px;
}

.service-featured h3 {
  margin: -2px 0 10px;
  color: var(--ink);
  font-size: 1.48rem;
  font-weight: 740;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.service-featured p {
  max-width: 520px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.91rem;
  line-height: 1.65;
}

.service-featured .service-details {
  max-width: 520px;
}

.service-item {
  position: relative;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  min-height: 198px;
  padding: 34px 32px 32px 0;
  border-bottom: 1px solid #cfd5da;
  gap: 18px;
  transition:
    background var(--transition),
    padding var(--transition);
}

.service-item:nth-child(even):not(.service-item-wide) {
  padding-right: 52px;
  border-right: 1px solid #cfd5da;
}

.service-item:nth-child(odd):not(.service-item-wide) {
  padding-left: 52px;
}

.service-image {
  grid-column: 1 / -1;
  width: 100%;
  height: 185px;
  margin-bottom: 4px;
  object-fit: cover;
}

.service-item:hover {
  background: var(--white);
}

.service-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: var(--blue);
  border: 1px solid #c6cfd7;
  border-radius: 50%;
}

.service-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentcolor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.service-item h3 {
  margin: -2px 0 9px;
  color: var(--ink);
  font-size: 1.35rem;
  font-weight: 730;
  letter-spacing: -0.025em;
}

.service-item p {
  max-width: 425px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.91rem;
  line-height: 1.65;
}

.service-details {
  max-width: 425px;
  margin-top: 15px;
  padding-top: 12px;
  border-top: 1px solid #d5dbe0;
}

.service-details summary {
  display: inline-flex;
  align-items: center;
  color: var(--blue);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 750;
  list-style: none;
  gap: 8px;
}

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

.service-details summary::after {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  content: "+";
}

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

.service-details > p {
  margin-top: 12px;
}

.service-detail-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.service-detail-link:hover,
.service-detail-link:focus-visible {
  color: var(--blue-dark);
}

.service-item-wide {
  grid-column: 1 / -1;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  align-items: start;
  min-height: 166px;
  padding-left: 0;
}

.service-item-wide p {
  max-width: 700px;
}

.service-item-wide .service-details {
  max-width: 700px;
}

.service-arrow {
  display: grid;
  width: 50px;
  height: 50px;
  margin: 0 8px 0 28px;
  place-items: center;
  color: var(--white);
  background: var(--blue);
  transition:
    background var(--transition),
    transform var(--transition);
}

.service-arrow svg {
  width: 21px;
  height: 21px;
  margin: 0;
}

.service-arrow:hover,
.service-arrow:focus-visible {
  background: var(--blue-dark);
  transform: translateX(4px);
}

.section-label {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.software-section {
  background: var(--white);
}

.software-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  border: 1px solid var(--line);
}

.software-visual {
  position: relative;
  min-height: 660px;
  margin: 0;
  overflow: hidden;
  background: var(--paper-deep);
}

.software-visual::after {
  position: absolute;
  right: -1px;
  bottom: -1px;
  width: 46%;
  height: 110px;
  background: var(--blue);
  clip-path: polygon(28% 0, 100% 0, 100% 100%, 0 100%);
  content: "";
}

.software-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.software-copy {
  padding: 56px 60px 58px;
}

.software-copy h2 {
  max-width: 590px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.7rem, 2.2vw, 2.35rem);
  font-weight: 760;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.software-copy > p:not(.section-label) {
  max-width: 590px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.72;
}

.software-points {
  margin-top: 32px;
  border-top: 1px solid var(--line);
}

.software-points article {
  padding: 20px 0 19px;
  border-bottom: 1px solid var(--line);
}

.software-points h3 {
  margin: 0 0 6px;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 740;
  letter-spacing: -0.015em;
}

.software-points p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.65;
}

.software-copy .button {
  margin-top: 30px;
}

.solution-section {
  position: relative;
  overflow: hidden;
  color: var(--ink);
  background: var(--paper);
}

.solution-section::before {
  display: none;
}

.solution-layout {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 112px;
}

.solution-intro {
  position: sticky;
  top: 120px;
  align-self: start;
}

.solution-intro h2,
.contact-copy h2 {
  margin-top: 0;
  color: var(--white);
}

.solution-intro h2 {
  color: var(--ink);
}

.solution-intro > p {
  max-width: 480px;
  margin: 30px 0;
  color: var(--ink-soft);
  line-height: 1.78;
}

.button-white {
  margin-top: 10px;
  color: var(--white);
  background: var(--blue);
}

.button-white:hover,
.button-white:focus-visible {
  color: var(--white);
  background: var(--blue);
  transform: translateY(-3px);
}

.solution-track {
  border-top: 1px solid #cbd2d8;
}

.solution-row {
  position: relative;
  min-height: 176px;
  padding: 34px 0;
  border-bottom: 1px solid #cbd2d8;
}

.solution-row::before {
  display: none;
}

.solution-row h3 {
  margin: -5px 0 8px;
  color: var(--ink);
  font-size: 1.35rem;
  font-weight: 720;
  letter-spacing: -0.025em;
}

.solution-row p {
  max-width: 520px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.93rem;
  line-height: 1.7;
}

.founders-section {
  padding: 96px 0;
  background: var(--white);
}

.founders-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  border: 1px solid var(--line);
}

.founders-copy {
  padding: 56px 62px;
}

.founders-copy > p:not(.section-label) {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--ink-soft);
  line-height: 1.75;
}

.founders-consultation {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 50px;
  color: var(--white);
  background: var(--blue);
}

.founders-consultation h3 {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 730;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.founders-consultation p {
  margin: 18px 0 0;
  color: rgb(255 255 255 / 78%);
  font-size: 0.91rem;
  line-height: 1.7;
}

.button-light {
  align-self: flex-start;
  margin-top: 26px;
  color: var(--blue-dark);
  background: var(--white);
}

.button-light:hover,
.button-light:focus-visible {
  color: var(--blue-dark);
  background: #edf3f8;
  transform: translateY(-2px);
}

.references {
  background: var(--white);
}

.section-heading-compact {
  margin-bottom: 70px;
}

.project-stage {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.project {
  position: relative;
  min-height: 315px;
  padding: 42px;
  overflow: hidden;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition:
    background var(--transition),
    transform var(--transition);
}

.project:hover {
  background: var(--paper);
}

.project-featured {
  grid-row: auto;
  min-height: 315px;
  color: var(--ink);
  background: var(--white);
}

.project-featured:hover {
  background: var(--paper);
}

.project-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
  margin-top: 24px;
}

.project:not(.project-featured) .project-copy {
  margin-top: 24px;
}

.project-type {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 780;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.project-featured .project-type {
  color: var(--blue);
}

.project h3 {
  max-width: 520px;
  margin: 0;
  font-size: clamp(1.42rem, 1.8vw, 2rem);
  font-weight: 720;
  hyphens: auto;
  letter-spacing: -0.035em;
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.project p:not(.project-type) {
  max-width: 540px;
  margin: 20px 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.project-featured p:not(.project-type) {
  color: var(--ink-soft);
}

.project-copy > span {
  color: var(--ink-faint);
  font-size: 0.73rem;
  font-weight: 650;
}

.project-featured .project-copy > span {
  color: var(--ink-faint);
}

.project-graphic {
  position: absolute;
  right: -80px;
  bottom: -100px;
  width: 420px;
  height: 420px;
  border: 1px solid rgb(255 255 255 / 14%);
  border-radius: 50%;
}

.project-graphic::before,
.project-graphic::after {
  position: absolute;
  inset: 21%;
  border: 1px solid rgb(255 255 255 / 16%);
  border-radius: 50%;
  content: "";
}

.project-graphic::after {
  inset: 41%;
  background: rgb(255 255 255 / 7%);
}

.project-graphic span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  background: var(--blue-light);
  border-radius: 50%;
}

.project-graphic span:nth-child(1) {
  transform: translate(-124px, -100px);
}

.project-graphic span:nth-child(2) {
  transform: translate(90px, -70px);
}

.project-graphic span:nth-child(3) {
  transform: translate(-70px, 94px);
}

.project-graphic span:nth-child(4) {
  transform: translate(122px, 80px);
}

.partners {
  padding: 96px 0;
  background: var(--paper);
}

.partners-layout {
  display: block;
}

.partners-copy {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: end;
  gap: 70px;
}

.partners-copy > p {
  max-width: 520px;
  margin: 0 0 4px;
  color: var(--ink-soft);
  line-height: 1.72;
}

.partner-logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 52px;
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.partner-logos figure {
  display: grid;
  min-width: 0;
  min-height: 178px;
  align-content: center;
  justify-items: center;
  margin: 0;
  padding: 24px 16px 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.partner-logos figure:nth-child(4n) {
  border-right: 0;
}

.partner-logos figure:nth-last-child(-n + 4) {
  border-bottom: 0;
}

.partner-logos img {
  width: 100%;
  max-width: 132px;
  height: 88px;
  object-fit: contain;
}

.partner-logos figure:nth-child(2) img {
  max-width: 140px;
}

.partner-logos figure:nth-child(3) img {
  max-width: 82px;
}

.partner-logos figure:nth-child(4) img {
  max-width: 124px;
}

.partner-logos figure:nth-child(5) img {
  max-width: 76px;
}

.partner-logos figure:nth-child(6) img {
  max-width: 72px;
}

.partner-logos figure:nth-child(7) img {
  max-width: 148px;
}

.partner-logos figure:nth-child(8) img {
  max-width: 92px;
}

.partner-logos figcaption {
  margin-top: 18px;
  color: var(--ink-faint);
  font-size: 0.7rem;
  font-weight: 720;
  letter-spacing: 0.05em;
  text-align: center;
  text-transform: uppercase;
}

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

.company-grid {
  display: block;
}

.company-image {
  position: relative;
}

.company-image::before {
  position: absolute;
  z-index: 0;
  top: -28px;
  left: -28px;
  width: 48%;
  height: 64%;
  border-top: 0;
  border-left: 0;
  content: "";
}

.company-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  object-fit: contain;
  box-shadow: var(--shadow);
}

.image-corner {
  display: none;
}

.company-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  align-items: start;
  margin-top: 0;
  gap: 76px;
}

.company-copy h2 {
  margin: 0;
}

.company-copy-body {
  padding-top: 4px;
}

.company-lead {
  margin: 0 0 14px;
  color: var(--blue) !important;
  font-size: 1.18rem !important;
  font-weight: 760;
}

.company-copy-body > p:not(.company-lead) {
  max-width: 545px;
  margin: 0 0 18px;
  color: var(--ink-soft);
  line-height: 1.75;
}

.company-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  margin-top: 58px;
  gap: 20px;
}

.company-location,
.team-portraits figure {
  margin: 0;
  overflow: hidden;
  background: var(--white);
}

.company-location {
  align-self: start;
}

.company-location img,
.company-location video {
  display: block;
  width: 100%;
  height: 360px;
  object-fit: cover;
}

@media (min-width: 861px) {
  .company-location video {
    height: 404px;
  }
}

.company-location figcaption {
  padding: 12px 16px;
  color: var(--white);
  background: var(--blue);
  font-size: 0.74rem;
  font-weight: 700;
}

.team-portraits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
  gap: 12px;
}

.team-portraits figure {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  align-items: center;
}

.team-portraits img {
  width: 92px;
  height: 92px;
  object-fit: cover;
}

.team-portraits figcaption {
  display: grid;
  padding: 11px 14px 12px;
  gap: 2px;
}

.team-portraits figcaption span {
  color: var(--ink-faint);
  font-size: 0.71rem;
  line-height: 1.4;
}

.team-portraits strong {
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 730;
  line-height: 1.25;
}

.contact {
  position: relative;
  padding: 112px 0;
  overflow: hidden;
  color: var(--white);
  background: var(--blue);
}

.contact::before {
  position: absolute;
  z-index: 0;
  top: -150px;
  right: 12%;
  width: 1px;
  height: 920px;
  background: rgb(255 255 255 / 12%);
  content: "";
  transform: rotate(32deg);
}

.contact-angle {
  position: absolute;
  z-index: 0;
  right: -8%;
  bottom: -180px;
  width: 55%;
  height: 420px;
  background: var(--blue-dark);
  transform: skewX(-31deg);
}

.contact-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: 105px;
}

.contact-copy > p {
  max-width: 500px;
  margin: 28px 0 0;
  color: rgb(255 255 255 / 72%);
  line-height: 1.75;
}

.contact-details {
  margin-top: 50px;
  border-top: 1px solid rgb(255 255 255 / 24%);
}

.contact-details > * {
  display: grid;
  padding: 19px 0;
  border-bottom: 1px solid rgb(255 255 255 / 24%);
}

.contact-details span {
  color: #b9d0e9;
  font-size: 0.7rem;
  font-weight: 720;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-details strong {
  margin-top: 4px;
  color: var(--white);
  font-size: 1.02rem;
  font-weight: 650;
}

.contact-details small {
  max-width: 560px;
  margin-top: 7px;
  color: #d4e2f0;
  font-size: 0.82rem;
  line-height: 1.55;
}

.contact-details a:hover strong,
.contact-details a:focus-visible strong {
  color: #c5e6cc;
}

.contact-form {
  position: relative;
  padding: 46px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 30px 70px rgb(6 28 53 / 28%);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-form label {
  display: block;
  margin-bottom: 18px;
}

.contact-form label > span {
  display: block;
  margin-bottom: 7px;
  color: var(--ink-soft);
  font-size: 0.74rem;
  font-weight: 730;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid transparent;
  border-radius: 0;
  outline: none;
  transition:
    background var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.contact-form input,
.contact-form select {
  height: 49px;
}

.contact-form textarea {
  min-height: 112px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  background: var(--white);
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgb(34 91 159 / 10%);
}

.button-form {
  width: 100%;
  color: var(--white);
  background: var(--blue);
}

.button-form:hover,
.button-form:focus-visible {
  background: var(--blue-dark);
}

.button-form:disabled {
  cursor: wait;
  opacity: 0.7;
}

.form-note {
  margin: 8px 0 0;
  color: var(--ink-faint);
  font-size: 0.72rem;
  text-align: center;
}

.form-status {
  min-height: 1.3em;
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-size: 0.75rem;
  text-align: center;
}

.form-note a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-status.is-success {
  color: #18743a;
  font-weight: 700;
}

.form-status.is-error {
  color: #a42b2b;
  font-weight: 700;
}

.site-footer {
  padding: 72px 0 24px;
  color: var(--ink);
  background: var(--white);
}

.footer-main {
  display: grid;
  grid-template-columns: 260px 1fr auto;
  align-items: center;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
  gap: 50px;
}

.footer-brand {
  display: block;
  width: 210px;
  height: 132px;
}

.footer-brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-main > p {
  margin: 0;
  color: var(--blue);
  font-size: 1.02rem;
  font-weight: 750;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 22px;
}

.footer-links a {
  color: var(--ink-soft);
  font-size: 0.8rem;
  font-weight: 650;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--blue);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 22px;
  color: var(--ink-faint);
  font-size: 0.72rem;
}

.legal-header-inner {
  gap: 30px;
}

.legal-back {
  padding: 10px 0;
  color: var(--blue);
  border-bottom: 0;
  font-size: 0.86rem;
  font-weight: 730;
}

.legal-page {
  padding-top: 90px;
  background: var(--paper);
}

.legal-hero {
  padding: 88px 0 72px;
  color: var(--white);
  background:
    linear-gradient(116deg, var(--blue-deep), var(--blue) 68%, #2e69ad);
}

.legal-kicker {
  margin: 0 0 12px;
  color: #c7dbef;
  font-size: 0.76rem;
  font-weight: 760;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.legal-hero h1 {
  margin: 0;
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  font-weight: 780;
  letter-spacing: -0.055em;
  line-height: 1;
}

.legal-hero > .shell > p:last-child:not(.legal-kicker) {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgb(255 255 255 / 76%);
}

.legal-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 760px);
  justify-content: space-between;
  padding-block: 76px 110px;
  gap: 80px;
}

.legal-toc {
  position: sticky;
  top: 112px;
  display: grid;
  align-self: start;
  border-top: 1px solid #cbd2d8;
}

.legal-toc a {
  padding: 11px 0;
  color: var(--ink-soft);
  border-bottom: 1px solid #cbd2d8;
  font-size: 0.78rem;
  font-weight: 680;
}

.legal-toc a:hover,
.legal-toc a:focus-visible {
  color: var(--blue);
}

.legal-content {
  min-width: 0;
}

.legal-content section {
  padding: 0 0 42px;
  scroll-margin-top: 110px;
}

.legal-content section + section {
  padding-top: 42px;
  border-top: 1px solid #cbd2d8;
}

.legal-content h2 {
  margin: 0 0 20px;
  color: var(--ink);
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  font-weight: 760;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.legal-content p,
.legal-content address {
  max-width: 720px;
  margin: 0 0 16px;
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-style: normal;
  line-height: 1.78;
}

.legal-content strong {
  color: var(--ink);
}

.legal-content a {
  color: var(--blue);
  font-weight: 650;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-footer {
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.legal-footer .footer-bottom {
  padding-bottom: 22px;
}

.legal-footer .footer-bottom > span:last-child {
  display: flex;
  gap: 20px;
}

.legal-footer a:hover,
.legal-footer a:focus-visible,
.legal-footer a[aria-current="page"] {
  color: var(--blue);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 700ms cubic-bezier(0.2, 0.72, 0.25, 1),
    transform 700ms cubic-bezier(0.2, 0.72, 0.25, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid rgb(34 91 159 / 38%);
  outline-offset: 4px;
}

@media (max-width: 1100px) {
  :root {
    --shell: min(100% - 40px, 960px);
  }

  .main-nav {
    gap: 21px;
  }

  .brand {
    width: 154px;
  }

  .hero-grid {
    grid-template-columns: 1fr 0.83fr;
    gap: 35px;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 4.6vw, 3.5rem);
  }

  .hero-visual {
    height: auto;
  }

  .service-orbit {
    right: 24px;
    width: 84%;
  }

  .orbit-label {
    font-size: 0.64rem;
  }

  .solution-layout,
  .contact-grid {
    gap: 65px;
  }

  .company-grid {
    gap: 55px;
  }
}

@media (max-width: 860px) {
  :root {
    --shell: min(100% - 36px, 720px);
  }

  .site-header,
  .site-header.scrolled {
    height: 76px;
  }

  .brand {
    width: 140px;
    height: 66px;
  }

  .menu-toggle {
    display: block;
  }

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

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

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

  .main-nav {
    position: absolute;
    top: 76px;
    right: auto;
    bottom: auto;
    left: 50%;
    display: grid;
    align-content: center;
    justify-items: center;
    width: 100vw;
    height: calc(100vh - 76px);
    padding: 40px;
    overflow-y: auto;
    background: var(--white);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -16px);
    transition:
      opacity var(--transition),
      transform var(--transition);
  }

  .main-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
  }

  .main-nav a {
    font-size: 1.35rem;
  }

  .nav-cta {
    margin-top: 10px;
    font-size: 1rem !important;
  }

  .hero {
    min-height: auto;
    padding-top: 76px;
  }

  .hero-grid {
    display: block;
    padding-top: 70px;
  }

  .hero-copy {
    padding: 0;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 6.8vw, 3.25rem);
  }

  .hero-text {
    max-width: 640px;
  }

  .hero-visual {
    max-width: 650px;
    height: auto;
    margin: 62px auto 0;
  }

  .trust-rail {
    margin-top: 54px;
  }

  .trust-rail > div {
    padding-right: 20px;
    padding-left: 20px;
  }

  .section {
    padding-block: 82px;
  }

  .section-heading,
  .section-heading > div {
    display: block;
  }

  .section-heading > div > p {
    margin-top: 24px;
  }

  .service-list {
    display: block;
  }

  .service-item,
  .service-item:nth-child(odd):not(.service-item-wide),
  .service-item:nth-child(even):not(.service-item-wide) {
    padding-right: 0;
    padding-left: 0;
    border-right: 0;
  }

  .service-item-wide {
    grid-template-columns: 58px minmax(0, 1fr) auto;
  }

  .service-image {
    height: 230px;
  }

  .service-featured {
    display: block;
  }

  .service-featured-image {
    display: block;
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .service-featured-body {
    padding: 38px 36px;
  }

  .software-layout {
    display: block;
  }

  .software-visual {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .software-copy {
    padding: 48px 44px;
  }

  .partners-layout {
    display: block;
  }

  .partners-copy {
    display: block;
  }

  .partners-copy > p {
    margin-top: 24px;
  }

  .partner-logos {
    grid-template-columns: repeat(4, 1fr);
    margin-top: 54px;
  }

  .solution-layout {
    display: block;
  }

  .solution-intro {
    position: static;
  }

  .solution-track {
    margin-top: 72px;
  }

  .founders-panel {
    display: block;
  }

  .founders-copy,
  .founders-consultation {
    padding: 44px;
  }

  .project-stage {
    display: block;
  }

  .project-featured {
    min-height: 300px;
  }

  .project {
    min-height: 300px;
  }

  .company-grid {
    display: block;
  }

  .company-copy {
    display: block;
    margin-top: 0;
  }

  .company-copy-body {
    margin-top: 26px;
  }

  .company-showcase {
    display: block;
    margin-top: 48px;
  }

  .team-portraits {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 18px;
  }

  .team-portraits figure {
    display: block;
  }

  .team-portraits img {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
  }

  .legal-layout {
    display: block;
    padding-block: 60px 88px;
  }

  .legal-toc {
    position: static;
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 56px;
    column-gap: 24px;
  }

  .contact-grid {
    display: block;
  }

  .contact-form {
    margin-top: 66px;
  }

  .footer-main {
    grid-template-columns: 220px 1fr;
  }

  .footer-brand {
    width: 210px;
  }

  .footer-links {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  :root {
    --shell: calc(100% - 28px);
  }

  html {
    scroll-padding-top: 76px;
  }

  .brand {
    width: 126px;
  }

  .hero-grid {
    padding-top: 54px;
  }

  .hero h1 {
    font-size: clamp(2.15rem, 8.7vw, 2.55rem);
    letter-spacing: -0.055em;
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-text {
    font-size: 0.98rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

  .button-primary {
    width: 100%;
  }

  .text-link {
    align-self: flex-start;
  }

  .hero-visual {
    height: auto;
    margin-top: 46px;
  }

  .hero-service-board {
    min-height: 430px;
    padding: 32px 22px 0;
  }

  .hero-board-list {
    margin-top: 34px;
    column-gap: 16px;
  }

  .hero-board-list span {
    padding: 13px 0 13px 28px;
    font-size: 0.72rem;
  }

  .hero-board-list span::before {
    width: 19px;
    height: 19px;
    border-width: 4px;
  }

  .hero-board-contact {
    width: 88%;
    min-height: 96px;
    padding: 18px 18px 18px 58px;
  }

  .trust-rail {
    display: block;
    min-height: 0;
    margin-top: 38px;
  }

  .trust-rail > div {
    min-height: 92px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-rail > div:last-child {
    border-bottom: 0;
  }

  .section {
    padding-block: 78px;
  }

  .section-heading {
    margin-bottom: 44px;
  }

  .section-heading h2,
  .solution-intro h2,
  .founders-copy h2,
  .partners-copy h2,
  .company-copy h2,
  .contact-copy h2 {
    font-size: clamp(1.58rem, 6.4vw, 1.85rem);
    line-height: 1.08;
  }

  .service-item,
  .service-item-wide {
    grid-template-columns: 48px minmax(0, 1fr);
    min-height: 0;
    padding-block: 28px;
    gap: 16px;
  }

  .service-icon {
    width: 42px;
    height: 42px;
  }

  .service-icon svg {
    width: 21px;
    height: 21px;
  }

  .service-item h3 {
    font-size: 1.18rem;
  }

  .service-item p,
  .service-featured p {
    font-size: 0.86rem;
  }

  .service-featured-body {
    grid-template-columns: 48px minmax(0, 1fr);
    padding: 28px 22px;
    gap: 16px;
  }

  .service-featured h3 {
    font-size: 1.18rem;
  }

  .software-copy {
    padding: 34px 24px 38px;
  }

  .software-copy h2 {
    font-size: clamp(1.58rem, 6.4vw, 1.85rem);
  }

  .software-copy > p:not(.section-label) {
    font-size: 0.9rem;
  }

  .software-visual {
    aspect-ratio: 4 / 3;
  }

  .software-visual::after {
    height: 70px;
  }

  .software-copy .button {
    width: 100%;
  }

  .service-arrow {
    display: none;
  }

  .service-image {
    height: 170px;
  }

  .founders-section,
  .partners {
    padding-block: 68px;
  }

  .founders-copy,
  .founders-consultation {
    padding: 30px 24px;
  }

  .button-light {
    width: 100%;
  }

  .partner-logos {
    grid-template-columns: repeat(2, 1fr);
  }

  .partner-logos figure {
    min-height: 154px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .partner-logos figure:nth-child(even) {
    border-right: 0;
  }

  .partner-logos figure:nth-child(odd) {
    border-right: 1px solid var(--line);
  }

  .partner-logos figure:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .project {
    min-height: 330px;
    padding: 30px 24px;
  }

  .project-featured {
    min-height: 330px;
  }

  .project-copy {
    margin-top: 70px;
  }

  .project:not(.project-featured) .project-copy {
    margin-top: 55px;
  }

  .company-copy {
    margin-top: 0;
  }

  .company-location img,
  .company-location video {
    height: 220px;
  }

  .team-portraits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .team-portraits figcaption {
    padding: 8px 7px 9px;
  }

  .team-portraits strong {
    font-size: 0.69rem;
  }

  .team-portraits figcaption span {
    font-size: 0.59rem;
  }

  .contact {
    padding-block: 72px;
  }

  .contact-form {
    padding: 28px 20px;
  }

  .form-row {
    display: block;
  }

  .footer-main {
    display: block;
  }

  .footer-brand {
    width: 190px;
  }

  .footer-main > p {
    margin-top: -6px;
  }

  .footer-links {
    margin-top: 35px;
    gap: 16px 22px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .legal-page {
    padding-top: 76px;
  }

  .legal-hero {
    padding: 62px 0 54px;
  }

  .legal-layout {
    padding-block: 48px 70px;
  }

  .legal-toc {
    display: none;
  }

  .legal-content section {
    padding-bottom: 32px;
  }

  .legal-content section + section {
    padding-top: 32px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
