:root {
  --ink: #0c0f12;
  --paper: #ffffff;
  --soft: #f1f3f4;
  --line: #d8dcdf;
  --muted: #697178;
  --lime: #c8ff3d;
  --cobalt: #315cff;
  --coral: #ff654f;
  --teal: #12857c;
  --shell: 1240px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
textarea,
input {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--lime);
  font-weight: 800;
}

.skip-link:focus {
  top: 12px;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  color: var(--paper);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  transition: background-color 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(12, 15, 18, 0.96);
  border-color: rgba(255, 255, 255, 0.1);
}

.header-inner {
  width: min(calc(100% - 48px), var(--shell));
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 200px;
}

.brand .brand-logo {
  display: block;
  width: 200px;
  height: 50px;
  object-fit: contain;
  object-position: left center;
  flex: 0 0 auto;
}

.brand span {
  display: grid;
  padding-left: 12px;
  border-left: 2px solid var(--lime);
  line-height: 1;
}

.brand strong {
  font-size: 19px;
  font-weight: 900;
}

.brand small {
  margin-top: 4px;
  font-size: 10px;
  font-weight: 800;
  color: var(--lime);
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
  font-weight: 700;
}

.primary-nav a {
  position: relative;
  padding-block: 12px;
}

.primary-nav a:not(.nav-contact)::after {
  content: "";
  position: absolute;
  inset: auto 0 6px;
  height: 2px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

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

.nav-contact {
  padding: 10px 15px !important;
  color: var(--ink);
  background: var(--lime);
  border: 1px solid var(--lime);
}

.nav-contact:hover,
.nav-contact:focus-visible {
  color: var(--paper);
  background: transparent;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.menu-button span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 760px;
  height: 92vh;
  max-height: 900px;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
  border-bottom: 1px solid #2a3035;
}

.hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  min-height: 100%;
  padding-top: 150px;
  padding-bottom: 120px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.eyebrow {
  margin: 0 0 24px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
}

.eyebrow--lime {
  color: var(--lime);
}

.hero h1 {
  margin: 0;
  font-size: 20px;
  line-height: 1;
  font-weight: 900;
  color: var(--lime);
}

.hero-statement {
  max-width: 650px;
  margin: 22px 0 26px;
  font-size: 62px;
  font-weight: 800;
  line-height: 1.1;
  word-break: keep-all;
}

.hero-statement strong {
  color: var(--lime);
}

.hero-lead {
  max-width: 560px;
  margin: 0;
  color: #c3c9cd;
  font-size: 18px;
  word-break: keep-all;
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  padding: 12px 18px;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border: 1px solid currentColor;
  border-radius: 0;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 160ms ease, background-color 160ms ease, color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

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

.button--lime:hover,
.button--lime:focus-visible {
  color: var(--paper);
  background: transparent;
}

.text-link {
  padding: 8px 0;
  border-bottom: 1px solid #72787c;
  font-size: 14px;
  font-weight: 800;
}

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

.hero-scene {
  position: absolute;
  z-index: 2;
  right: max(24px, calc((100vw - var(--shell)) / 2));
  top: 19%;
  width: 590px;
  height: 470px;
  transform: translateX(18%);
  opacity: 0.92;
}

.system-window {
  height: 100%;
  overflow: hidden;
  background: #161b1f;
  border: 1px solid #465057;
  box-shadow: 28px 28px 0 rgba(49, 92, 255, .28);
}

.system-window__bar {
  height: 42px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  gap: 7px;
  color: #9fa9af;
  background: #20262b;
  border-bottom: 1px solid #384047;
  font-size: 10px;
  font-style: normal;
}

.system-window__bar span {
  margin-right: auto;
  font-weight: 800;
}

.system-window__bar i {
  width: 8px;
  height: 8px;
  background: #59636a;
  border-radius: 50%;
}

.system-window__bar i:first-of-type {
  background: var(--coral);
}

.system-window__bar i:nth-of-type(2) {
  background: var(--lime);
}

.system-window__body {
  display: grid;
  height: calc(100% - 42px);
  grid-template-columns: 120px 1fr;
}

.system-nav {
  padding: 22px 13px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #8f9aa1;
  background: #111519;
  border-right: 1px solid #30373c;
  font-size: 10px;
}

.system-nav b {
  margin-bottom: 13px;
  color: var(--lime);
  font-size: 9px;
}

.system-nav span {
  padding: 7px 8px;
}

.system-nav .is-active {
  color: var(--paper);
  background: #2b3238;
}

.system-main {
  min-width: 0;
  padding: 22px;
}

.system-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.system-heading div {
  display: grid;
  gap: 4px;
}

.system-heading small {
  color: #79858d;
  font-size: 8px;
}

.system-heading strong {
  font-size: 16px;
}

.system-heading > span {
  padding: 3px 7px;
  color: var(--ink);
  background: var(--lime);
  font-size: 8px;
  font-weight: 900;
}

.system-map {
  position: relative;
  height: 250px;
  margin-top: 22px;
}

.system-node {
  position: absolute;
  z-index: 2;
  width: 150px;
  min-height: 82px;
  padding: 12px;
  display: grid;
  align-content: center;
  background: #22292e;
  border: 1px solid #4b555c;
}

.system-node small {
  margin-bottom: 5px;
  color: #8d989f;
  font-size: 8px;
}

.system-node strong {
  font-size: 12px;
}

.system-node span {
  color: #99a3a9;
  font-size: 9px;
}

.node-web {
  left: 0;
  top: 0;
  border-top: 4px solid var(--lime);
}

.node-core {
  right: 0;
  top: 0;
  border-top: 4px solid var(--cobalt);
}

.node-ai {
  left: 0;
  bottom: 0;
  border-top: 4px solid var(--coral);
}

.node-ops {
  right: 0;
  bottom: 0;
  border-top: 4px solid var(--teal);
}

.map-line {
  position: absolute;
  z-index: 1;
  background: #59646b;
}

.line-a {
  left: 148px;
  right: 148px;
  top: 40px;
  height: 1px;
}

.line-b {
  left: 75px;
  top: 80px;
  bottom: 80px;
  width: 1px;
}

.line-c {
  right: 75px;
  top: 80px;
  bottom: 80px;
  width: 1px;
}

.system-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #3c454b;
}

.system-metrics span {
  padding: 10px 8px;
  display: grid;
  gap: 2px;
  border-right: 1px solid #3c454b;
}

.system-metrics span:last-child {
  border-right: 0;
}

.system-metrics small {
  color: #7f8a91;
  font-size: 8px;
}

.system-metrics b {
  font-size: 10px;
}

.hero-index {
  position: absolute;
  z-index: 4;
  inset: auto 0 0;
  min-height: 54px;
  padding-inline: max(24px, calc((100vw - var(--shell)) / 2));
  display: grid;
  grid-template-columns: max-content minmax(24px, 1fr) max-content minmax(24px, 1fr) max-content minmax(24px, 1fr) max-content;
  align-items: center;
  color: #969fa5;
  background: rgba(0, 0, 0, .28);
  border-top: 1px solid #30373c;
  font-size: 10px;
  font-weight: 800;
}

.hero-index span {
  text-align: left;
}

.hero-index > i {
  width: 1px;
  height: 12px;
  justify-self: center;
  background: #30373c;
}

.intro-band {
  background: var(--lime);
}

.intro-band__inner {
  min-height: 230px;
  padding-block: 48px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  gap: 80px;
}

.intro-band p {
  margin: 0;
  font-size: 36px;
  font-weight: 900;
  line-height: 1.25;
}

.intro-band div > div {
  display: grid;
  gap: 8px;
}

.intro-band strong {
  font-size: 16px;
}

.intro-band span {
  max-width: 470px;
  font-size: 15px;
}

.section {
  padding-block: 120px;
}

.section-heading {
  margin-bottom: 64px;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  align-items: end;
  gap: 80px;
}

.section-heading h2 {
  margin: 0;
  font-size: 46px;
  line-height: 1.18;
  word-break: keep-all;
}

.section-heading > p {
  margin: 0 0 4px;
  color: var(--muted);
  word-break: keep-all;
}

.service-list {
  border-top: 2px solid var(--ink);
}

.service-row {
  position: relative;
  min-height: 205px;
  padding: 34px 0;
  display: grid;
  grid-template-columns: 70px 1fr 1fr;
  gap: 34px;
  border-bottom: 1px solid var(--line);
}

.service-row::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--row-accent, var(--ink));
  transform: scaleY(0);
  transition: transform 160ms ease;
}

.service-row:hover::before {
  transform: scaleY(1);
}

.service-row--lime { --row-accent: var(--lime); }
.service-row--cobalt { --row-accent: var(--cobalt); }
.service-row--coral { --row-accent: var(--coral); }
.service-row--teal { --row-accent: var(--teal); }
.service-row--ink { --row-accent: var(--ink); }

.service-number {
  font-size: 12px;
  font-weight: 900;
}

.service-row small,
.work-copy > span,
.insight-grid article > span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
}

.service-row h3 {
  margin: 8px 0 10px;
  font-size: 27px;
  line-height: 1.25;
}

.service-row p {
  max-width: 540px;
  margin: 0;
  color: var(--muted);
  word-break: keep-all;
}

.service-row ul,
.work-copy ul {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
  gap: 10px 18px;
  list-style: none;
  font-size: 13px;
  font-weight: 700;
}

.service-row li,
.work-copy li {
  padding-top: 8px;
  border-top: 1px solid var(--line);
}

.cloud-system {
  background: var(--soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.cloud-capabilities {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 2px solid var(--ink);
  border-bottom: 1px solid var(--line);
}

.cloud-capabilities article {
  min-height: 330px;
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
}

.cloud-capabilities article:last-child {
  border-right: 0;
}

.cloud-capabilities span,
.cloud-capabilities small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
}

.cloud-capabilities h3 {
  margin: 34px 0 14px;
  font-size: 24px;
  line-height: 1.3;
  word-break: keep-all;
}

.cloud-capabilities p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
  word-break: keep-all;
}

.cloud-capabilities small {
  margin-top: auto;
  padding-top: 32px;
  color: var(--ink);
}

.cloud-disclosure {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.7;
}

.work {
  color: var(--paper);
  background: var(--ink);
}

.section-heading--light > p {
  color: #9ca6ac;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

.work-item {
  display: grid;
  overflow: hidden;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid #323a40;
}

.work-item--portal {
  grid-column: span 7;
}

.work-item--site {
  grid-column: span 5;
}

.work-item--content {
  grid-column: 4 / span 7;
}

.work-visual {
  --work-visual-height: 320px;
  --work-visual-padding: 36px;
  height: var(--work-visual-height);
  padding: var(--work-visual-padding);
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--visual-bg, var(--lime));
}

.work-item--site .work-visual {
  --visual-bg: var(--cobalt);
}

.work-item--content .work-visual {
  --visual-bg: var(--coral);
}

.work-image {
  width: 88%;
  height: auto;
  max-height: calc(var(--work-visual-height) - var(--work-visual-padding) - var(--work-visual-padding));
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: cover;
  background: var(--paper);
  border: 3px solid var(--ink);
  box-shadow: 16px 16px 0 var(--ink);
}

.work-copy {
  padding: 34px;
}

.work-copy h3 {
  margin: 9px 0 12px;
  font-size: 28px;
  line-height: 1.25;
  word-break: keep-all;
}

.work-copy p {
  margin: 0 0 26px;
  color: var(--muted);
  word-break: keep-all;
}

.portal-ui {
  width: 88%;
  height: 210px;
  padding: 18px;
  background: var(--paper);
  border: 3px solid var(--ink);
  box-shadow: 16px 16px 0 var(--ink);
}

.portal-ui > span {
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 4px;
  background: var(--coral);
}

.portal-ui > span:nth-child(2) {
  background: var(--cobalt);
}

.portal-ui strong {
  display: block;
  margin: 26px 0 20px;
  font-size: 26px;
}

.portal-ui div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.portal-ui i {
  height: 72px;
  background: var(--soft);
  border: 1px solid var(--ink);
}

.site-ui {
  width: 230px;
  height: 230px;
  padding: 22px;
  background: var(--paper);
  border: 3px solid var(--ink);
  box-shadow: 14px 14px 0 var(--ink);
}

.site-ui b {
  font-size: 12px;
}

.site-ui > span {
  display: block;
  width: 100%;
  height: 5px;
  margin: 16px 0 18px;
  background: var(--ink);
}

.site-ui div {
  height: 110px;
  background: var(--lime);
}

.site-ui i {
  display: block;
  width: 55%;
  height: 10px;
  margin-top: 18px;
  background: var(--ink);
}

.content-ui {
  position: relative;
  width: 78%;
  height: 220px;
  padding: 24px;
  background: var(--paper);
  border: 3px solid var(--ink);
  box-shadow: 16px 16px 0 var(--ink);
}

.content-ui small {
  font-weight: 900;
}

.content-ui p {
  width: 58%;
  height: 9px;
  margin: 14px 0;
  background: #cfd4d7;
}

.content-ui p:nth-of-type(2) {
  width: 70%;
}

.content-ui b {
  position: absolute;
  right: 24px;
  top: 42px;
  width: 80px;
  height: 80px;
  display: grid;
  place-items: center;
  color: var(--paper);
  background: var(--cobalt);
  font-size: 26px;
}

.content-ui span {
  position: absolute;
  right: 24px;
  bottom: 25px;
  padding: 5px 9px;
  color: var(--ink);
  background: var(--lime);
  font-size: 9px;
  font-weight: 900;
}

.approach {
  background: var(--soft);
}

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

.process-list li {
  min-height: 440px;
  padding: 24px;
  display: grid;
  grid-template-rows: auto auto 1fr;
  align-content: start;
  border-right: 1px solid #c5cace;
}

.process-list li:last-child {
  border-right: 0;
}

.process-list > li > span {
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 900;
}

.process-image {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  margin-bottom: 20px;
  display: block;
  object-fit: cover;
  background: #dfe3e6;
  border: 1px solid #aeb6bb;
}

.process-list small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
}

.process-list h3 {
  margin: 9px 0 12px;
  font-size: 21px;
  line-height: 1.35;
  word-break: keep-all;
}

.process-list p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  word-break: keep-all;
}

.company-note {
  margin-top: 80px;
  padding: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  color: var(--paper);
  background: var(--ink);
}

.company-note h3 {
  margin: 0;
  font-size: 36px;
  line-height: 1.25;
}

.company-note > p {
  margin: 42px 0 0;
  color: #bdc5ca;
  word-break: keep-all;
}

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

.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 2px solid var(--ink);
  border-bottom: 1px solid var(--line);
}

.insight-grid article {
  min-height: 280px;
  padding: 30px;
  border-right: 1px solid var(--line);
}

.insight-grid article:last-child {
  border-right: 0;
}

.insight-grid h3 {
  margin: 56px 0 16px;
  font-size: 23px;
  line-height: 1.35;
  word-break: keep-all;
}

.insight-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  word-break: keep-all;
}

.contact {
  color: var(--paper);
  background: var(--cobalt);
}

.contact-layout {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 100px;
}

.contact-copy h2 {
  margin: 0 0 24px;
  font-size: 46px;
  line-height: 1.2;
  word-break: keep-all;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 430px;
  margin: 0 0 35px;
  color: #dce3ff;
  word-break: keep-all;
}

.contact-copy > a {
  display: inline-block;
  padding-bottom: 4px;
  border-bottom: 2px solid var(--lime);
  font-size: 19px;
  font-weight: 800;
}

.project-form {
  padding: 38px;
  color: var(--ink);
  background: var(--paper);
  border: 2px solid var(--ink);
  box-shadow: 16px 16px 0 rgba(12, 15, 18, .4);
}

.project-form fieldset {
  margin: 0 0 30px;
  padding: 0;
  border: 0;
}

.form-fields {
  margin-bottom: 30px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 10px;
}

.form-field {
  min-width: 0;
}

.form-field > span {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 900;
}

.project-form em {
  color: #365cff;
  font-size: 10px;
  font-style: normal;
}

.form-field input {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid #9da5aa;
  border-radius: 0;
}

.project-form legend,
.field-label {
  display: block;
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 900;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.choice-grid label {
  position: relative;
  min-width: 0;
}

.choice-grid input {
  position: absolute;
  opacity: 0;
}

.choice-grid span {
  min-height: 44px;
  padding: 9px 12px;
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.choice-grid input:checked + span {
  color: var(--ink);
  background: var(--lime);
  border-color: var(--ink);
}

.choice-grid input:focus-visible + span {
  outline: 3px solid var(--cobalt);
  outline-offset: 2px;
}

.project-form textarea {
  width: 100%;
  min-height: 145px;
  margin-bottom: 20px;
  padding: 14px;
  resize: vertical;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid #9da5aa;
  border-radius: 0;
}

.form-field input:focus,
.project-form textarea:focus {
  outline: 3px solid var(--cobalt);
  outline-offset: 1px;
  border-color: var(--cobalt);
}

.privacy-consent {
  margin: 0 0 18px;
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: #394147;
  font-size: 12px;
  font-weight: 700;
}

.privacy-consent input {
  width: 16px;
  height: 16px;
  margin: 1px 0 0;
  accent-color: var(--cobalt);
}

.privacy-consent a {
  color: var(--cobalt);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-trap {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
}

.project-form .button {
  width: 100%;
}

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

.project-form .button--lime:hover,
.project-form .button--lime:focus-visible {
  color: var(--paper);
  background: var(--ink);
  border-color: var(--ink);
}

.form-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.form-status {
  min-height: 20px;
  margin: 12px 0 0;
  font-size: 12px;
  font-weight: 800;
}

.form-status:empty {
  min-height: 0;
  margin: 0;
}

.form-status[data-state="success"] {
  color: #176c38;
}

.form-status[data-state="error"] {
  color: #b42318;
}

.site-footer {
  color: var(--paper);
  background: var(--ink);
}

.footer-main {
  min-height: 260px;
  padding-block: 54px;
  display: grid;
  grid-template-columns: minmax(180px, 0.8fr) minmax(440px, 1.7fr) minmax(220px, 0.8fr);
  align-items: start;
  gap: 40px;
}

.brand--footer {
  color: var(--paper);
}

.brand--footer .brand-logo {
  width: 216px;
  height: 54px;
}

.footer-intro > p {
  margin: 24px 0 0;
  color: #9fa8ae;
  font-size: 13px;
  line-height: 1.7;
}

.footer-company-info {
  margin: 0;
  color: #aeb7bc;
  font-size: 12px;
  font-style: normal;
  line-height: 1.65;
}

.footer-company-info > strong {
  display: block;
  margin-bottom: 18px;
  color: var(--paper);
  font-size: 13px;
}

.footer-company-info > div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px 24px;
}

.footer-company-info span {
  min-width: 0;
}

.footer-company-info b {
  margin-right: 7px;
  color: #7f898f;
  font-weight: 700;
}

.footer-company-info__wide {
  grid-column: 1 / -1;
}

.footer-company-info a {
  color: #d8dde0;
}

.footer-main nav,
.footer-legal nav {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  font-size: 13px;
  font-weight: 700;
}

.footer-main a:hover,
.footer-main a:focus-visible,
.footer-legal a:hover,
.footer-legal a:focus-visible {
  color: var(--lime);
}

.footer-legal {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: #7f898f;
  border-top: 1px solid #30373c;
  font-size: 11px;
}

.legal-main {
  min-height: calc(100vh - 284px);
  padding: 140px 0 100px;
  background: var(--soft);
}

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

.legal-shell h1 {
  margin: 0 0 18px;
  font-size: 46px;
  line-height: 1.2;
}

.legal-shell > p {
  color: var(--muted);
}

.legal-content {
  margin-top: 54px;
  padding: 44px;
  background: var(--paper);
  border-top: 5px solid var(--lime);
}

.legal-content section + section {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.legal-content h2 {
  margin: 0 0 12px;
  font-size: 22px;
}

.legal-content p,
.legal-content li {
  color: #4f575d;
}

.legal-content ul {
  padding-left: 20px;
}

@media (max-width: 1120px) {
  .hero-scene {
    right: -160px;
    opacity: 0.58;
  }

  .hero-content::after {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0 28% 0 -100vw;
    background: rgba(12, 15, 18, .82);
  }

  .primary-nav {
    gap: 20px;
  }

  .work-item--portal,
  .work-item--site,
  .work-item--content {
    grid-column: span 6;
  }

  .work-item--content {
    grid-column-start: 4;
  }

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

  .process-list li:nth-child(2) {
    border-right: 0;
  }

  .process-list li:nth-child(-n+2) {
    border-bottom: 1px solid #c5cace;
  }

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

  .cloud-capabilities article:nth-child(2) {
    border-right: 0;
  }

  .cloud-capabilities article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 68px;
  }

  .content-shell,
  .header-inner,
  .legal-shell {
    width: min(calc(100% - 32px), var(--shell));
  }

  .menu-button {
    display: block;
  }

  .primary-nav {
    position: fixed;
    inset: var(--header-height) 0 0;
    padding: 28px 24px 48px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    color: var(--paper);
    background: var(--ink);
  }

  .primary-nav[data-open="true"] {
    display: flex;
  }

  .primary-nav a {
    padding: 17px 0;
    border-bottom: 1px solid #343b40;
    font-size: 20px;
  }

  .primary-nav .nav-contact {
    margin-top: 24px;
    padding: 14px !important;
    text-align: center;
  }

  .hero {
    min-height: 720px;
    height: auto;
    max-height: none;
  }

  .hero-content {
    min-height: 720px;
    padding-top: 130px;
    padding-bottom: 110px;
  }

  .hero-statement {
    font-size: 46px;
  }

  .hero-lead {
    max-width: 510px;
    font-size: 16px;
  }

  .hero-scene {
    right: -280px;
    top: 170px;
    opacity: 0.34;
  }

  .hero-index {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px 0;
    padding-block: 10px;
  }

  .hero-index > i {
    display: none;
  }

  .hero-index span,
  .hero-index span:first-child,
  .hero-index span:last-child {
    text-align: left;
  }

  .intro-band__inner,
  .section-heading,
  .company-note,
  .contact-layout,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .intro-band__inner,
  .section-heading,
  .company-note,
  .contact-layout {
    gap: 36px;
  }

  .section {
    padding-block: 88px;
  }

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

  .section-heading h2,
  .contact-copy h2,
  .legal-shell h1 {
    font-size: 38px;
  }

  .service-row {
    grid-template-columns: 48px 1fr;
  }

  .service-row ul {
    grid-column: 2;
  }

  .work-item--portal,
  .work-item--site,
  .work-item--content {
    grid-column: 1 / -1;
  }

  .work-visual {
    --work-visual-height: 270px;
  }

  .company-note {
    padding: 42px;
  }

  .company-note > p {
    margin-top: 0;
  }

  .insight-grid {
    grid-template-columns: 1fr;
  }

  .insight-grid article {
    min-height: 230px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .footer-main {
    gap: 26px;
  }

  .footer-company-info > div {
    grid-template-columns: 1fr;
  }

  .footer-company-info__wide {
    grid-column: auto;
  }

  .footer-main nav {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

@media (max-width: 560px) {
  .brand {
    min-width: 0;
  }

  .brand strong {
    font-size: 17px;
  }

  .hero-content {
    min-height: 700px;
    padding-top: 116px;
  }

  .hero-statement {
    font-size: 38px;
  }

  .hero-actions {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
  }

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

  .intro-band p {
    font-size: 30px;
  }

  .section-heading h2,
  .contact-copy h2,
  .legal-shell h1 {
    font-size: 32px;
  }

  .service-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .service-row ul {
    grid-column: 1;
  }

  .service-row h3,
  .work-copy h3 {
    font-size: 24px;
  }

  .service-row ul,
  .work-copy ul,
  .choice-grid,
  .form-fields {
    grid-template-columns: 1fr;
  }

  .work-visual {
    --work-visual-height: 230px;
    --work-visual-padding: 24px;
  }

  .work-copy {
    padding: 26px;
  }

  .portal-ui,
  .content-ui {
    width: 92%;
  }

  .process-list {
    grid-template-columns: 1fr;
  }

  .process-list li,
  .process-list li:nth-child(2) {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid #c5cace;
  }

  .company-note {
    margin-inline: -16px;
    padding: 36px 22px;
  }

  .company-note h3 {
    font-size: 29px;
  }

  .project-form {
    margin-inline: -16px;
    padding: 26px 20px;
    box-shadow: none;
  }

  .footer-legal {
    padding-block: 20px;
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-legal nav {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .legal-content {
    margin-inline: -16px;
    padding: 28px 20px;
  }

  .cloud-capabilities {
    grid-template-columns: 1fr;
  }

  .cloud-capabilities article,
  .cloud-capabilities article:nth-child(2) {
    min-height: 260px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .cloud-capabilities article:last-child {
    border-bottom: 0;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: .01ms !important;
  }
}
