@font-face {
  font-family: Manrope;
  src: url('fonts/manrope-latin-wght-normal.woff2') format('woff2');
  font-weight: 200 800;
  font-display: swap
}

@font-face {
  font-family: 'DM Sans';
  src: url('fonts/dm-sans-latin-wght-normal.woff2') format('woff2');
  font-weight: 100 1000;
  font-display: swap
}

:root {
  --ink: #112526;
  --muted: #627071;
  --night: #091314;
  --night-soft: #112223;
  --paper: #fff;
  --soft: #f3f6f4;
  --line: #dce5e0;
  --mint: #66efd2;
  --lime: #b9ff65;
  --accent: #007d68;
  --width: 1280px;
  --header: 88px;
  --ease: cubic-bezier(.2, .7, .2, 1)
}

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

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: 'DM Sans', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased
}

body:has(dialog[open]) {
  overflow: hidden
}

button,
input,
select {
  font: inherit
}

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

button {
  cursor: pointer
}

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

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

svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  stroke-width: 1.7
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none
}

p {
  margin: 0 0 20px
}

h1,
h2,
h3 {
  font-family: Manrope, Arial, sans-serif;
  font-weight: 750;
  margin: 0;
  line-height: 1.18;
  text-wrap: balance
}

h1 {
  font-size: 52px
}

h2 {
  font-size: 36px
}

h3 {
  font-size: 22px
}

button {
  border: 0
}

a,
button,
select {
  touch-action: manipulation
}

:focus-visible {
  outline: 3px solid #007e70;
  outline-offset: 5px
}

.site-header :focus-visible,
.hero :focus-visible,
.site-footer :focus-visible,
.cta-band :focus-visible {
  outline-color: var(--lime)
}

::selection {
  background: var(--lime);
  color: var(--night)
}

[hidden] {
  display: none !important
}

.container {
  width: min(var(--width), calc(100% - 96px));
  margin-inline: auto
}

.section {
  padding: 88px 0
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--accent);
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 22px
}

.eyebrow>span {
  display: inline-block;
  width: 25px;
  height: 2px;
  background: currentColor;
  flex-shrink: 0
}

.label {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted);
  margin: 0 0 12px
}

.caption {
  font-size: 13px;
  color: var(--muted)
}

.large-paragraph {
  font-size: 22px;
  line-height: 1.55
}

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

.section-heading h2 {
  max-width: 660px
}

.section-heading .eyebrow {
  margin-bottom: 15px
}

.section-description {
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0;
  max-width: 410px;
  justify-self: end
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-height: 54px;
  padding: 14px 23px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.35;
  transition: background .2s, color .2s, transform .2s;
  max-width: 100%
}

.button svg {
  width: 19px;
  height: 19px;
  transition: transform .25s var(--ease)
}

.button:hover svg,
.text-link:hover svg {
  transform: translate(2px, -2px)
}

.button--primary {
  color: #101e0a;
  background: var(--lime)
}

.button--primary:hover {
  background: #ceff96;
  transform: translateY(-2px)
}

.button--ghost {
  border-color: #849596;
  color: #fff;
  background: #07181933
}

.button--ghost:hover {
  background: #ffffff10;
  border-color: #fff
}

.button--dark {
  background: var(--ink);
  color: #fff
}

.button--dark:hover {
  background: #204b46
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-weight: 650;
  font-size: 14px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 7px;
  line-height: 1.5
}

.text-link svg {
  width: 18px;
  height: 18px;
  transition: transform .2s
}

.icon-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: transparent;
  color: inherit;
  border-radius: 4px
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 12px;
  padding: 10px 20px;
  z-index: 200;
  background: var(--lime);
  color: var(--night);
  transform: translateY(-150%)
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #091314fa;
  border-bottom: 1px solid #ffffff12;
  color: #fff;
  backdrop-filter: blur(16px)
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header);
  gap: 32px
}

.brand {
  display: inline-flex;
  flex-direction: column;
  flex-shrink: 0;
  line-height: 1.1
}

.brand-name {
  font-family: Manrope, sans-serif;
  font-size: 30px;
  font-weight: 650
}

.brand-dot {
  color: var(--lime)
}

.brand-description {
  margin-top: 5px;
  font-size: 9px;
  font-weight: 500;
  text-transform: uppercase
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 36px
}

.desktop-nav a {
  position: relative;
  font-size: 14px;
  padding: 30px 0;
  color: #dce5e3;
  transition: color .2s
}

.desktop-nav a:hover,
.desktop-nav a[aria-current] {
  color: var(--lime)
}

.desktop-nav a[aria-current]::after {
  content: '';
  height: 2px;
  position: absolute;
  bottom: 19px;
  left: 0;
  right: 0;
  background: var(--lime)
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px
}

.language-nav {
  display: flex;
  align-items: center;
  gap: 7px
}

.language-nav a {
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 33px;
  min-height: 38px;
  color: #9badac;
  border-bottom: 2px solid transparent
}

.language-nav a:hover {
  color: #fff
}

.language-nav a[aria-current] {
  color: var(--lime);
  border-color: var(--lime)
}

.menu-toggle {
  display: none
}

.mobile-nav {
  padding: 8px 32px 28px;
  background: var(--night)
}

.mobile-nav>a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 0;
  border-bottom: 1px solid #ffffff15;
  font-size: 18px
}

.mobile-nav>a[aria-current] {
  color: var(--lime)
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--night);
  color: #fff
}

.hero-art {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 58%;
  height: auto;
  object-fit: contain;
  object-position: right center;
  z-index: -2
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #071213 0%, #071213eb 22%, #071213a8 43%, #07121308 74%), linear-gradient(0deg, #091314 0%, transparent 20%);
  z-index: -1
}

.hero-inner {
  min-height: 572px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 74px;
  padding-bottom: 31px;
  gap: 70px
}

.hero-copy {
  max-width: 615px
}

.hero .eyebrow {
  color: #c7d6cf;
  margin-bottom: 24px
}

.hero .eyebrow>span {
  background: var(--lime)
}

.hero h1 {
  font-size: 44px;
  line-height: 1.22;
  font-weight: 750;
  text-wrap: initial
}

.hero h1 span {
  display: block;
  color: var(--mint)
}

.hero-description {
  max-width: 515px;
  font-size: 20px;
  line-height: 1.6;
  color: #c7d3d2;
  margin: 24px 0 28px
}

.hero-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap
}

.hero-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px
}

.hero-benefits {
  display: flex;
  gap: 28px;
  align-items: center
}

.hero-benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: #dbe6e2
}

.hero-benefits svg {
  color: var(--mint);
  width: 22px;
  height: 22px
}

.hero-caption {
  margin: 0;
  font-size: 11px;
  color: #a9bfba;
  max-width: 200px;
  text-align: right;
  line-height: 1.6
}

.services-overview {
  padding-top: 53px;
  padding-bottom: 56px
}

.services-overview h2 {
  font-size: 30px
}

.services-overview .section-heading {
  margin-bottom: 34px
}

.service-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr)
}

.service-overview {
  display: flex;
  position: relative;
  gap: 20px;
  padding: 8px 34px;
  transition: color .2s
}

.service-overview:first-child {
  padding-left: 0
}

.service-overview:last-child {
  padding-right: 0
}

.service-overview+.service-overview {
  border-left: 1px solid var(--line)
}

.service-overview h3 {
  font-size: 18px;
  margin-bottom: 10px
}

.service-overview p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
  padding-right: 8px
}

.service-icon {
  color: var(--accent);
  margin-top: 1px
}

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

.service-arrow {
  position: absolute;
  right: 15px;
  top: 5px;
  color: var(--accent)
}

.service-arrow svg {
  width: 17px
}

.service-overview:last-child .service-arrow {
  right: 0
}

.service-overview:hover h3 {
  color: var(--accent)
}

.featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px
}

.project-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden
}

.project-image {
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 1.65;
  border: 0;
  padding: 26px 26px 0;
  background: #e8eceb;
  overflow: hidden;
  text-align: left
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: 4px 4px 0 0;
  box-shadow: 0 5px 26px #14352b19;
  transition: transform .6s var(--ease)
}

.project-image:hover img {
  transform: translateY(-4px) scale(1.012)
}

.project-image.lumina {
  background: #e4e5df
}

.project-image.imobly {
  background: #dbebe7
}

.project-image.multienvio {
  background: #dce9dc
}

.project-image.elbarbero {
  background: #e9e3dd
}

.zoom-icon {
  position: absolute;
  right: 16px;
  top: 16px;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 4px;
  color: var(--ink);
  box-shadow: 0 2px 8px #0001
}

.zoom-icon svg {
  width: 17px;
  height: 17px
}

.image-label {
  position: absolute;
  bottom: 11px;
  left: 16px;
  background: #ffffffed;
  padding: 5px 8px;
  font-size: 10px;
  border: 1px solid #dce5df;
  border-radius: 3px;
  color: var(--muted)
}

.project-card-body {
  padding: 28px 30px
}

.project-card-body h3 {
  font-size: 25px;
  margin-bottom: 11px
}

.project-card-body h3 a {
  display: flex;
  align-items: center;
  justify-content: space-between
}

.project-card-body h3 a svg {
  color: var(--accent)
}

.project-card-body p:last-child {
  color: var(--muted);
  margin: 0;
  max-width: 410px;
  font-size: 15px
}

.section-end {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 34px
}

.small-index {
  font-size: 11px;
  color: var(--muted);
  font-family: monospace
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px
}

.method-grid li {
  border-top: 1px solid var(--line);
  padding-top: 25px
}

.step-number {
  display: block;
  font-family: Manrope;
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 27px
}

.method-grid h3 {
  font-size: 20px;
  margin-bottom: 13px
}

.method-grid p {
  color: var(--muted);
  font-size: 15px;
  margin: 0
}

.about-preview {
  border-top: 1px solid var(--line)
}

.about-preview-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px
}

.about-preview h2 {
  max-width: 470px
}

.about-preview .large-paragraph {
  margin-bottom: 26px
}

.career-label {
  margin-top: 42px;
  margin-bottom: 17px
}

.career-brands {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap
}

.career-brands img {
  height: 50px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: .75;
  transition: filter .2s, opacity .2s
}

.career-brands img:hover {
  filter: grayscale(0%);
  opacity: 1
}

.cta-band {
  background: var(--night);
  color: #fff;
  padding: 72px 0;
  position: relative;
  border-top: 1px solid #254341
}

.cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px
}

.cta-inner>div {
  max-width: 710px
}

.cta-band .eyebrow {
  color: var(--mint);
  margin-bottom: 18px
}

.cta-band h2 {
  max-width: 630px;
  font-size: 36px
}

.cta-band p:not(.eyebrow) {
  color: #acbfba;
  margin: 18px 0 0;
  max-width: 590px
}

.cta-band .button {
  flex-shrink: 0
}

.page-hero {
  background: var(--night);
  color: #fff;
  padding: 62px 0 70px;
  border-bottom: 1px solid #1d3c35
}

.page-hero-top {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  align-items: start
}

.page-hero .eyebrow {
  color: var(--mint)
}

.page-index {
  font-size: 11px;
  color: #77918c;
  font-family: monospace
}

.page-hero h1 {
  font-size: 48px;
  max-width: 860px;
  line-height: 1.2;
  margin-bottom: 24px
}

.page-lead {
  font-size: 20px;
  color: #aec2bc;
  max-width: 740px;
  margin: 0;
  line-height: 1.6
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 55px
}

.service-detail {
  display: grid;
  grid-template-columns: 90px 1.1fr 1fr;
  gap: 48px;
  padding-bottom: 55px;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 120px
}

.service-detail:last-child {
  border-bottom: 0;
  padding-bottom: 0
}

.service-number {
  font-size: 12px;
  color: var(--muted);
  font-family: monospace
}

.service-number>span {
  display: flex;
  margin-top: 26px;
  color: var(--accent)
}

.service-number svg {
  width: 38px;
  height: 38px
}

.service-detail .label {
  margin-bottom: 13px
}

.service-detail h2 {
  font-size: 32px;
  margin-bottom: 20px
}

.service-detail p:not(.label) {
  color: var(--muted);
  max-width: 480px
}

.service-detail .text-link {
  margin-top: 7px
}

.check-list {
  padding-top: 26px;
  align-self: center
}

.check-list li {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px
}

.check-list li:last-child {
  border: 0
}

.check-list svg {
  color: var(--accent);
  width: 18px;
  margin-top: 3px
}

.microsoft-section {
  background: var(--soft)
}

.microsoft-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px
}

.microsoft-grid article {
  padding-top: 28px;
  border-top: 1px solid #b7c9c0
}

.platform-mark {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: Manrope;
  border: 1px solid #a4c5b8;
  color: var(--accent);
  border-radius: 5px;
  margin-bottom: 28px
}

.microsoft-grid h3 {
  font-size: 23px;
  margin-bottom: 18px
}

.microsoft-grid p {
  font-size: 15px;
  color: var(--muted);
  min-height: 75px
}

.microsoft-grid .text-link {
  font-size: 13px
}

.projects-section {
  padding-top: 40px
}

.project-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 35px
}

.project-filters {
  display: flex;
  gap: 7px;
  flex-wrap: wrap
}

.project-filters button {
  background: transparent;
  color: var(--muted);
  padding: 10px 18px;
  border-radius: 4px;
  border: 1px solid transparent;
  font-size: 14px
}

.project-filters button:hover {
  background: var(--soft);
  color: var(--ink)
}

.project-filters button[aria-pressed=true] {
  color: var(--ink);
  background: #e4f4ec;
  border-color: #abc7b8
}

.project-count {
  font-size: 12px;
  color: var(--muted);
  white-space: nowrap
}

.project-list {
  display: grid;
  gap: 50px
}

.project-detail {
  display: grid;
  grid-template-columns: 1.14fr 1fr;
  gap: 56px;
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 50px;
  scroll-margin-top: 120px
}

.project-detail .project-image {
  aspect-ratio: 1.32;
  border-radius: 6px;
  padding: 24px 20px 0
}

.project-detail .project-image img {
  object-position: left top
}

.project-detail-copy>p {
  font-size: 15px;
  color: var(--muted)
}

.project-number {
  font-size: 11px;
  text-transform: uppercase;
  color: var(--accent)
}

.project-detail h2 {
  font-size: 36px;
  margin: 13px 0 20px
}

.project-detail-copy .project-lead {
  font-size: 20px;
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: 15px
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 24px 0
}

.tag-list li {
  font-size: 11px;
  text-transform: uppercase;
  color: var(--muted);
  padding-left: 11px;
  border-left: 2px solid #87b19e
}

.project-detail-copy>.text-link {
  margin-left: 20px;
  font-size: 12px
}

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

.about-hero {
  padding-top: 70px
}

.about-grid {
  display: grid;
  grid-template-columns: 1.18fr .82fr;
  gap: 80px;
  align-items: center
}

.about-grid h1 {
  font-size: 51px;
  margin-bottom: 29px
}

.about-grid h1 span {
  display: block;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.3;
  margin-top: 10px;
  color: var(--accent)
}

.about-grid p:not(.eyebrow) {
  color: var(--muted)
}

.about-grid .large-paragraph {
  color: var(--ink) !important;
  font-size: 20px
}

.about-grid .text-link {
  margin-top: 14px;
  font-size: 13px
}

.portrait {
  margin: 0;
  position: relative
}

.portrait img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 6px
}

.portrait figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  font-weight: 650;
  margin-top: 18px
}

.portrait figcaption span {
  font-weight: 400;
  color: var(--muted);
  font-size: 11px
}

.career-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px
}

.career-section h2 {
  max-width: 520px;
  margin-bottom: 24px
}

.career-section p:not(.eyebrow) {
  color: var(--muted)
}

.career-section .career-brands {
  margin: 35px 0 17px
}

.career-section .caption {
  font-size: 12px
}

.expertise-list {
  margin: 25px 0
}

.expertise-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px
}

.expertise-list svg {
  color: var(--accent);
  width: 18px
}

.qualification {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 13px;
  margin-top: 27px
}

.credentials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px
}

.credentials h2 {
  margin-bottom: 24px
}

.credentials p:not(.eyebrow) {
  color: var(--muted)
}

.credential-list {
  align-self: center
}

.credential-list li {
  display: flex;
  gap: 24px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px
}

.credential-list span {
  font-family: Manrope;
  font-weight: 700;
  font-size: 18px;
  min-width: 90px;
  color: var(--accent)
}

.practice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px
}

.practice-card {
  background: var(--soft);
  padding: 28px;
  border-radius: 6px;
  border: 1px solid var(--line)
}

.practice-card h3 {
  font-size: 20px;
  margin-bottom: 14px
}

.practice-card p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0
}

.sectors-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 25px
}

.sector-chip {
  background: var(--soft);
  padding: 14px 22px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid var(--line);
  color: var(--ink)
}

.case-section {
  background: var(--night-soft);
  color: #fff
}

.case-section .eyebrow {
  color: var(--mint)
}

.case-section .section-heading {
  margin-bottom: 45px
}

.case-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px;
  margin-bottom: 50px
}

.case-block h3 {
  color: var(--lime);
  font-size: 18px;
  margin-bottom: 18px
}

.case-block p {
  font-size: 15px;
  line-height: 1.7;
  color: #c7d6cf;
  margin: 0
}

.progress-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  counter-reset: step
}

.progress-steps li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #8da8a2
}

.progress-steps .step-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0
}

.progress-steps .step-check svg {
  width: 16px;
  height: 16px;
  color: #fff
}

.progress-steps .completed {
  color: var(--lime)
}

.progress-steps .completed .step-check {
  background: var(--accent)
}

.progress-steps li:not(.completed) .step-check {
  background: #2a4a48
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 90px
}

.contact-main label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 11px
}

.contact-main select {
  display: block;
  width: 100%;
  border: 1px solid #b9cbc1;
  border-radius: 5px;
  min-height: 55px;
  padding: 12px 42px 12px 16px;
  background: #fff;
  color: var(--ink);
  margin-bottom: 28px;
  font-size: 15px
}

.contact-primary {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 27px;
  background: var(--lime);
  border-radius: 6px;
  color: var(--ink);
  transition: background .2s
}

.contact-primary:hover {
  background: #c8ff89
}

.contact-primary>svg:last-child,
.contact-row>svg:last-child {
  margin-left: auto
}

.contact-primary strong,
.contact-row strong {
  display: block;
  font-size: 18px;
  font-family: Manrope;
  font-weight: 700
}

.contact-primary small,
.contact-row small {
  display: block;
  font-size: 14px;
  margin-top: 5px
}

.contact-icon svg {
  width: 31px;
  height: 31px
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 30px 10px;
  border-bottom: 1px solid var(--line)
}

.contact-row>svg {
  color: var(--accent)
}

.contact-row small {
  color: var(--muted)
}

.contact-row:hover strong {
  color: var(--accent)
}

.contact-location {
  padding-top: 22px
}

.contact-location>svg {
  width: 37px;
  height: 37px;
  color: var(--accent);
  margin-bottom: 25px
}

.contact-location h2 {
  font-size: 31px;
  margin-bottom: 20px;
  max-width: 390px
}

.contact-location p {
  color: var(--muted)
}

.location-line {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 34px
}

.location-line svg {
  width: 18px;
  color: var(--accent)
}

.language-list {
  font-size: 12px;
  color: var(--accent)
}

.faq-layout {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 70px
}

.faq-layout h2 {
  max-width: 310px
}

.faq-list details {
  border-bottom: 1px solid #cfdcd4
}

.faq-list details:first-child {
  border-top: 1px solid #cfdcd4
}

.faq-list summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding: 23px 0;
  list-style: none;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer
}

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

.faq-list summary svg {
  width: 18px;
  color: var(--accent);
  transition: transform .2s
}

.faq-list details[open] summary svg {
  transform: rotate(45deg)
}

.faq-list details p {
  color: var(--muted);
  font-size: 15px;
  max-width: 650px;
  margin-bottom: 25px
}

.site-footer {
  background: #071011;
  color: #dce6e1;
  padding: 62px 0 0
}

.footer-main {
  display: grid;
  grid-template-columns: 1.3fr .7fr 1fr;
  gap: 60px;
  padding-bottom: 45px
}

.footer-main .brand {
  margin-bottom: 22px
}

.footer-main p {
  max-width: 280px;
  font-size: 14px;
  color: #91a7a0
}

.footer-main nav {
  display: grid;
  gap: 9px;
  align-content: start;
  font-size: 14px;
  padding-top: 7px
}

.footer-main nav a:hover {
  color: var(--lime)
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
  padding-top: 7px
}

.footer-contact>a {
  font-size: 16px;
  margin-bottom: 5px
}

.footer-contact>span {
  font-size: 13px;
  color: #91a7a0
}

.footer-contact .language-nav {
  margin-top: 15px
}

.footer-bottom {
  border-top: 1px solid #ffffff15;
  display: flex;
  align-items: center;
  gap: 30px;
  min-height: 80px;
  color: #849c94;
  font-size: 11px
}

.plain-button {
  background: none;
  color: inherit;
  padding: 10px 0;
  font-size: 12px
}

.plain-button:hover {
  color: #fff
}

.back-top {
  margin-left: auto;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ffffff25;
  border-radius: 4px;
  color: #d6e8dc
}

.back-top svg {
  width: 18px
}

.back-top:hover {
  border-color: var(--lime);
  color: var(--lime)
}

dialog {
  border: 0;
  border-radius: 8px;
  padding: 34px;
  max-width: min(600px, calc(100vw - 32px));
  color: var(--ink);
  box-shadow: 0 25px 100px #0005
}

dialog::backdrop {
  background: #021211db;
  backdrop-filter: blur(6px)
}

.dialog-close {
  position: absolute;
  right: 12px;
  top: 12px;
  z-index: 2;
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line)
}

.privacy-dialog h2 {
  font-size: 27px;
  margin: 10px 45px 22px 0
}

.privacy-dialog p {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 4px
}

.lightbox {
  padding: 16px;
  max-width: calc(100vw - 64px);
  width: 1200px;
  background: #f3f6f4;
  max-height: calc(100dvh - 48px);
  overflow: auto
}

.lightbox figure {
  margin: 0
}

.lightbox img {
  width: 100%;
  height: auto
}

.lightbox figcaption {
  font-size: 13px;
  padding-top: 14px;
  color: var(--muted)
}

@media(min-width:1600px) {
  .hero-inner {
    min-height: 650px;
    padding-top: 110px
  }

  .hero-shade {
    background: linear-gradient(90deg, #071213 0%, #071213eb 20%, #07121360 42%, transparent 65%), linear-gradient(0deg, #091314, transparent 15%)
  }
}

@media(max-width:1150px) {
  .container {
    width: calc(100% - 64px)
  }

  .hero h1 {
    font-size: 38px
  }

  .hero-copy {
    max-width: 535px
  }

  .hero-inner {
    min-height: 560px;
    gap: 65px
  }

  .hero-description {
    font-size: 18px;
    max-width: 440px
  }

  .hero-benefits {
    gap: 17px
  }

  .hero-caption {
    max-width: 140px
  }

  .section-heading {
    gap: 45px
  }

  .service-overview {
    padding: 8px 23px;
    gap: 14px
  }

  .service-overview h3 {
    font-size: 16px
  }

  .service-overview p {
    font-size: 13px
  }

  .service-arrow {
    display: none
  }

  .about-preview-inner,
  .career-section,
  .credentials {
    gap: 55px
  }

  .project-detail {
    gap: 35px
  }

  .service-detail {
    grid-template-columns: 60px 1fr 1fr;
    gap: 30px
  }

  .contact-grid {
    gap: 60px
  }
}

@media(max-width:900px) {
  :root {
    --header: 78px
  }

  .desktop-nav {
    display: none
  }

  .menu-toggle {
    display: flex
  }

  .header-inner {
    gap: 20px
  }

  .hero h1 {
    font-size: 37px
  }

  .hero-copy {
    max-width: 520px
  }

  .hero-art {
    object-position: 69% center;
    opacity: .7
  }

  .hero-shade {
    background: linear-gradient(90deg, #071213 0%, #071213c9 36%, #07121320 100%), linear-gradient(0deg, #091314, transparent 25%)
  }

  .hero-caption {
    display: none
  }

  .section {
    padding: 66px 0
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 34px
  }

  .section-description {
    justify-self: start;
    max-width: 620px
  }

  .service-columns {
    gap: 0
  }

  .service-overview {
    display: block;
    padding-inline: 22px
  }

  .service-icon {
    display: block;
    margin-bottom: 20px
  }

  .service-overview h3 {
    font-size: 17px
  }

  .service-overview p {
    font-size: 14px;
    padding: 0
  }

  .services-overview {
    padding-top: 42px;
    padding-bottom: 45px
  }

  .featured-grid {
    gap: 22px
  }

  .project-image {
    padding: 18px 18px 0
  }

  .project-card-body {
    padding: 23px
  }

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

  .method-grid li {
    padding-top: 20px
  }

  .step-number {
    margin-bottom: 16px
  }

  .about-preview-inner {
    grid-template-columns: 1fr;
    gap: 30px
  }

  .about-preview h2 {
    max-width: 620px
  }

  .cta-inner {
    display: block
  }

  .cta-band .button {
    margin-top: 28px
  }

  .cta-band h2 {
    font-size: 33px
  }

  .page-hero h1 {
    font-size: 41px
  }

  .page-hero {
    padding: 48px 0 55px
  }

  .page-lead {
    font-size: 18px
  }

  .service-detail {
    grid-template-columns: 44px 1fr;
    gap: 28px
  }

  .check-list {
    grid-column: 2;
    padding-top: 0
  }

  .service-detail {
    row-gap: 8px
  }

  .microsoft-grid {
    gap: 24px
  }

  .microsoft-grid h3 {
    font-size: 19px
  }

  .project-detail {
    grid-template-columns: 1fr;
    gap: 28px
  }

  .project-detail .project-image {
    aspect-ratio: 1.8
  }

  .project-detail-copy {
    max-width: 660px
  }

  .about-grid {
    gap: 38px;
    grid-template-columns: 1.1fr .9fr;
    align-items: start
  }

  .about-grid h1 {
    font-size: 39px
  }

  .about-grid h1 span {
    font-size: 25px
  }

  .portrait figcaption {
    flex-direction: column;
    align-items: start;
    gap: 5px
  }

  .career-section,
  .credentials {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .career-section .large-paragraph {
    font-size: 20px
  }

  .credential-list {
    max-width: 650px
  }

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

  .contact-primary {
    padding: 24px 20px;
    gap: 15px
  }

  .contact-primary strong,
  .contact-row strong {
    font-size: 16px
  }

  .contact-primary small,
  .contact-row small {
    font-size: 13px
  }

  .contact-primary .contact-icon {
    display: none
  }

  .contact-location h2 {
    font-size: 29px
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 30px
  }

  .faq-layout h2 {
    max-width: none
  }

  .footer-main {
    gap: 35px;
    grid-template-columns: 1fr .65fr 1fr
  }
}

@media(max-width:600px) {
  .container {
    width: calc(100% - 40px)
  }

  h2 {
    font-size: 29px
  }

  h3 {
    font-size: 20px
  }

  .eyebrow {
    font-size: 10px;
    gap: 10px
  }

  .brand-name {
    font-size: 26px
  }

  .brand-description {
    font-size: 8px
  }

  .header-actions {
    gap: 7px
  }

  .language-nav {
    gap: 0
  }

  .language-nav a {
    min-width: 29px;
    font-size: 10px
  }

  .menu-toggle {
    width: 36px;
    height: 40px
  }

  .header-inner {
    gap: 12px
  }

  .hero-inner {
    min-height: 770px;
    padding-top: 43px;
    padding-bottom: 26px;
    gap: 265px
  }

  .hero-copy {
    max-width: 100%
  }

  .hero h1 {
    font-size: 34px;
    line-height: 1.2;
    max-width: 430px
  }

  .hero-description {
    font-size: 17px;
    margin: 20px 0 23px;
    max-width: 390px
  }

  .hero .eyebrow {
    margin-bottom: 22px
  }

  .hero-actions {
    gap: 12px
  }

  .hero-actions .button {
    font-size: 12px;
    padding: 13px 15px;
    gap: 12px;
    min-height: 49px
  }

  .hero-actions .button--ghost {
    border-color: transparent;
    background: transparent;
    padding-left: 0
  }

  .hero-art {
    height: 360px;
    top: auto;
    bottom: 66px;
    object-fit: cover;
    object-position: right center;
    width: 165%;
    max-width: none;
    left: -65%;
    opacity: .95
  }

  .hero-shade {
    background: linear-gradient(180deg, #071213 0%, #071213 42%, transparent 68%, #091314 95%)
  }

  .hero-bottom {
    width: 100%
  }

  .hero-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    width: 100%
  }

  .hero-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 7px;
    line-height: 1.5;
    font-size: 10px
  }

  .hero-benefits svg {
    width: 18px;
    height: 18px
  }

  .section {
    padding: 52px 0
  }

  .services-overview {
    padding: 39px 0
  }

  .services-overview h2 {
    font-size: 27px
  }

  .section-heading {
    gap: 16px;
    margin-bottom: 30px
  }

  .section-description {
    font-size: 15px
  }

  .service-columns {
    grid-template-columns: 1fr
  }

  .service-overview {
    display: flex;
    padding: 23px 0 !important;
    gap: 18px;
    border: 0 !important;
    border-bottom: 1px solid var(--line) !important
  }

  .service-overview:last-child {
    border-bottom: 0 !important;
    padding-bottom: 0 !important
  }

  .service-overview:first-child {
    padding-top: 0 !important
  }

  .service-overview h3 {
    font-size: 18px;
    margin-bottom: 7px
  }

  .service-overview p {
    font-size: 14px;
    max-width: 300px;
    padding-right: 20px
  }

  .service-icon {
    margin-top: 1px;
    margin-bottom: 0
  }

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

  .service-arrow {
    display: block;
    right: 0 !important;
    top: 25px
  }

  .service-overview:first-child .service-arrow {
    top: 0
  }

  .featured-grid {
    grid-template-columns: 1fr;
    gap: 24px
  }

  .project-image {
    aspect-ratio: 1.6
  }

  .project-card-body {
    padding: 22px
  }

  .project-card-body h3 {
    font-size: 23px
  }

  .method-grid {
    gap: 28px 20px
  }

  .method-grid h3 {
    font-size: 18px
  }

  .method-grid p {
    font-size: 14px
  }

  .step-number {
    font-size: 12px
  }

  .large-paragraph {
    font-size: 19px
  }

  .career-brands {
    gap: 30px
  }

  .career-brands>span {
    font-size: 23px
  }

  .cta-band {
    padding: 51px 0
  }

  .cta-band h2 {
    font-size: 29px
  }

  .cta-band p:not(.eyebrow) {
    font-size: 15px
  }

  .button {
    font-size: 13px;
    min-height: 51px;
    padding: 13px 18px;
    gap: 18px
  }

  .page-hero {
    padding: 40px 0 47px
  }

  .page-index {
    font-size: 9px;
    white-space: nowrap;
    padding-top: 3px
  }

  .page-hero h1 {
    font-size: 34px;
    margin-top: 10px;
    margin-bottom: 20px
  }

  .page-hero-top {
    gap: 12px
  }

  .page-hero-top .eyebrow {
    max-width: 230px
  }

  .page-lead {
    font-size: 17px
  }

  .service-detail {
    grid-template-columns: 1fr;
    gap: 0;
    padding-bottom: 35px
  }

  .service-number {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px
  }

  .service-number>span {
    margin: 0
  }

  .service-number svg {
    width: 26px;
    height: 26px
  }

  .service-detail h2 {
    font-size: 29px
  }

  .service-detail .label {
    font-size: 11px
  }

  .service-detail p:not(.label) {
    font-size: 15px
  }

  .check-list {
    grid-column: 1;
    padding-top: 22px
  }

  .check-list li {
    font-size: 14px;
    padding: 10px 0
  }

  .services-list {
    gap: 34px
  }

  .microsoft-grid {
    grid-template-columns: 1fr;
    gap: 32px
  }

  .microsoft-grid article {
    padding-top: 23px
  }

  .microsoft-grid h3 {
    font-size: 23px
  }

  .microsoft-grid p {
    min-height: 0
  }

  .platform-mark {
    margin-bottom: 18px
  }

  .project-toolbar {
    align-items: start;
    flex-direction: column;
    gap: 14px;
    padding-bottom: 25px
  }

  .project-filters {
    gap: 4px
  }

  .project-filters button {
    font-size: 12px;
    padding: 9px 12px
  }

  .project-count {
    align-self: flex-end;
    font-size: 11px
  }

  .project-detail {
    gap: 22px;
    padding-top: 28px
  }

  .project-list {
    gap: 34px
  }

  .project-detail .project-image {
    padding: 16px 13px 0;
    aspect-ratio: 1.45
  }

  .project-detail h2 {
    font-size: 31px;
    margin-top: 9px;
    margin-bottom: 16px
  }

  .project-detail-copy .project-lead {
    font-size: 19px
  }

  .project-detail-copy>.text-link {
    margin-left: 12px;
    font-size: 11px
  }

  .image-label {
    font-size: 8px;
    bottom: 7px;
    left: 8px;
    padding: 3px 5px
  }

  .zoom-icon {
    width: 31px;
    height: 31px;
    right: 10px;
    top: 10px
  }

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

  .about-grid h1 {
    font-size: 40px
  }

  .about-grid h1 span {
    font-size: 26px
  }

  .about-grid .large-paragraph {
    font-size: 19px
  }

  .portrait {
    max-width: 440px
  }

  .portrait figcaption {
    flex-direction: row;
    align-items: center
  }

  .portrait figcaption span {
    font-size: 10px
  }

  .career-section .career-brands {
    gap: 32px
  }

  .credentials .text-link {
    font-size: 12px
  }

  .credential-list li {
    gap: 15px;
    font-size: 13px
  }

  .credential-list span {
    font-size: 16px;
    min-width: 77px
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 44px
  }

  .contact-primary {
    padding: 24px 20px
  }

  .contact-primary .contact-icon {
    display: block
  }

  .contact-primary strong,
  .contact-row strong {
    font-size: 17px
  }

  .contact-row {
    gap: 17px;
    padding: 25px 6px
  }

  .contact-main select {
    font-size: 14px
  }

  .contact-location {
    border-top: 1px solid var(--line);
    padding-top: 33px
  }

  .contact-location h2 {
    font-size: 30px
  }

  .contact-location p {
    font-size: 15px
  }

  .faq-list summary {
    font-size: 15px;
    gap: 20px
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 35px 25px
  }

  .footer-main>div:first-child {
    grid-column: 1/-1
  }

  .footer-main>div:first-child p {
    max-width: none;
    margin-bottom: 0
  }

  .footer-main .brand {
    margin-bottom: 17px
  }

  .footer-main nav {
    gap: 13px;
    font-size: 13px
  }

  .footer-contact>a {
    font-size: 14px
  }

  .footer-contact>span {
    font-size: 11px
  }

  .site-footer {
    padding-top: 45px
  }

  .footer-bottom {
    flex-wrap: wrap;
    gap: 12px;
    min-height: 85px;
    padding-block: 14px;
    font-size: 10px
  }

  .footer-bottom>span {
    max-width: 220px
  }

  .footer-bottom .plain-button {
    font-size: 11px
  }

  .back-top {
    width: 33px;
    height: 33px
  }

  .lightbox {
    padding: 10px;
    max-width: calc(100vw - 20px);
    max-height: calc(100dvh - 40px)
  }

  .lightbox figcaption {
    font-size: 11px;
    padding-top: 10px
  }

  .lightbox .dialog-close {
    width: 37px;
    height: 37px;
    top: 6px;
    right: 6px
  }
}

@media(max-width:359px) {
  .container {
    width: calc(100% - 32px)
  }

  .hero h1 {
    font-size: 30px
  }

  .hero-actions {
    gap: 5px
  }

  .hero-actions .button {
    font-size: 11px;
    padding-inline: 11px
  }

  .brand-name {
    font-size: 24px
  }

  .language-nav a {
    min-width: 25px
  }

  .hero-benefits {
    gap: 8px
  }

  .hero-benefits li {
    font-size: 9px
  }

  .project-filters button {
    padding-inline: 9px
  }

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

  .footer-main>div:first-child {
    grid-column: auto
  }
}

@media(max-width:600px) {
  .hero-inner {
    min-height: calc(100svh - var(--header) - 90px);
    padding-top: 32px;
    padding-bottom: 22px;
    gap: 150px
  }

  .hero h1 {
    font-size: 30px
  }

  .hero-description {
    font-size: 16px;
    margin: 17px 0 20px
  }

  .hero .eyebrow {
    font-size: 9px;
    margin-bottom: 18px
  }

  .hero-art {
    height: 310px;
    bottom: 50px
  }

  .hero-shade {
    background: linear-gradient(180deg, #071213 0%, #071213 40%, transparent 67%, #091314 96%)
  }
}

@media(max-width:359px) {
  .hero h1 {
    font-size: 27px
  }

  .hero .eyebrow {
    font-size: 8px
  }

  .hero-inner {
    gap: 130px
  }
}

@media(max-width:600px) and (max-height:740px) {
  .hero-inner {
    gap: 24px;
    padding-top: 24px;
    padding-bottom: 24px
  }

  .hero h1 {
    font-size: 27px
  }

  .hero-description {
    font-size: 15px;
    line-height: 1.55;
    margin: 15px 0 17px
  }

  .hero .eyebrow {
    margin-bottom: 14px
  }

  .hero-art {
    top: 0;
    bottom: auto;
    width: 150%;
    height: 100%;
    left: -50%;
    opacity: .36
  }

  .hero-shade {
    background: linear-gradient(90deg, #071213dd, #07121350), linear-gradient(0deg, #091314, transparent 40%)
  }
}

@media(min-width:901px) and (max-height:760px) {
  .hero-inner {
    min-height: calc(100svh - var(--header) - 90px);
    padding-top: 35px;
    gap: 32px
  }
}

@media(max-width:900px) {
  .case-content {
    grid-template-columns: 1fr;
    gap: 30px
  }

  .progress-steps {
    grid-template-columns: repeat(3, 1fr)
  }

  .progress-steps li:nth-child(4),
  .progress-steps li:nth-child(5) {
    grid-column: span 1
  }
}

@media(max-width:600px) {
  .case-content {
    gap: 25px
  }

  .progress-steps {
    grid-template-columns: 1fr 1fr;
    gap: 15px
  }

  .practice-grid {
    grid-template-columns: 1fr
  }

  .sectors-chips {
    gap: 10px
  }

  .sector-chip {
    padding: 11px 17px;
    font-size: 13px
  }
}

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

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important
  }
}