@font-face {
  font-family: "Manrope";
  src: url("fonts/Manrope.woff2") format("woff2");
  font-weight: 300 800;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "Fraunces";
  src: url("fonts/Fraunces.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
  font-style: normal;
}

:root {
  --ink: #111316;
  --muted: #626a73;
  --soft: #f4f2ee;
  --paper: #fbfaf7;
  --panel: #ffffff;
  --line: rgba(17, 19, 22, .12);
  --line-strong: rgba(17, 19, 22, .22);
  --green: #0b6f5c;
  --blue: #2454ff;
  --clay: #c56b45;
  --lime: #c9f24a;
  --shadow: 0 18px 60px rgba(17, 19, 22, .10);
  --max: 1180px;
  --sans: "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: "Fraunces", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(17, 19, 22, .035) 1px, transparent 1px),
    linear-gradient(rgba(17, 19, 22, .035) 1px, transparent 1px),
    radial-gradient(760px 520px at 82% 8%, rgba(201, 242, 74, .22), transparent 60%),
    radial-gradient(620px 520px at 8% 10%, rgba(36, 84, 255, .12), transparent 58%),
    var(--paper);
  background-size: 48px 48px, 48px 48px, auto, auto, auto;
  font: 16px/1.6 var(--sans);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(251, 250, 247, .86), rgba(251, 250, 247, .98) 42%);
}

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

img {
  max-width: 100%;
}

button,
input,
textarea {
  font: inherit;
}

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

h1,
h2 {
  font-family: var(--serif);
  letter-spacing: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

h1 {
  font-size: clamp(48px, 7vw, 98px);
  line-height: .92;
  max-width: 10ch;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(34px, 4.2vw, 66px);
  line-height: .98;
  margin-bottom: 18px;
}

h3 {
  font-size: 19px;
  line-height: 1.2;
  margin-bottom: 10px;
}

p {
  color: var(--muted);
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.muted {
  color: var(--muted);
}

.progress {
  position: fixed;
  inset: 0 0 auto;
  height: 3px;
  z-index: 1000;
}

.progress__bar {
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--blue), var(--clay));
}

.site-header,
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line);
  background: rgba(251, 250, 247, .82);
  backdrop-filter: blur(18px);
}

.header-row,
.header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  min-height: 74px;
}

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

.brand__mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line-strong);
  background: var(--ink);
  color: var(--paper);
  font-weight: 850;
  letter-spacing: .02em;
}

.brand__name,
.brand__text {
  display: block;
  font-weight: 850;
  line-height: 1.05;
}

.brand__claim,
.brand__mini {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-top: 2px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.nav a,
.nav__link {
  color: rgba(17, 19, 22, .68);
  font-size: 14px;
  font-weight: 760;
  padding: 10px 12px;
  transition: color .18s ease, background .18s ease;
}

.nav a:hover,
.nav__link:hover {
  color: var(--ink);
  background: rgba(17, 19, 22, .045);
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  margin-left: 6px;
  padding: 3px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .58);
}

.nav .lang-switch a,
.lang-switch a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 30px;
  padding: 0 9px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .04em;
}

.nav .lang-switch a:hover,
.lang-switch a:hover {
  color: var(--ink);
  background: rgba(17, 19, 22, .045);
}

.lang-switch a.is-active {
  background: var(--ink);
  color: var(--paper);
}

.lang-switch--mobile {
  width: fit-content;
  margin: 8px 0 2px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  gap: 10px;
  padding: 12px 16px;
  border: 1px solid var(--line-strong);
  background: var(--panel);
  color: var(--ink);
  font-weight: 850;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(17, 19, 22, .11);
}

.btn--dark {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

.btn--light {
  background: rgba(255, 255, 255, .72);
}

.burger {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-strong);
  background: var(--panel);
  padding: 10px;
}

.burger span {
  display: block;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
}

.mobile {
  border-top: 1px solid var(--line);
  background: rgba(251, 250, 247, .94);
}

.mobile__inner {
  display: grid;
  gap: 10px;
  padding: 14px 0 18px;
}

.mobile__link {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 800;
}

.mobile__cta {
  width: 100%;
}

.hero {
  padding: clamp(58px, 8vw, 118px) 0 42px;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, .72fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.hero__copy {
  padding-top: 18px;
}

.eyebrow,
.section-kicker,
.badge {
  width: fit-content;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.eyebrow {
  margin-bottom: 18px;
}

.lead {
  max-width: 690px;
  color: #30363d;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
  margin-bottom: 32px;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 38px;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  max-width: 620px;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.metric-row div {
  min-height: auto;
  padding: 18px 22px 18px 0;
  border-right: 1px solid var(--line);
  background: transparent;
  box-shadow: none;
}

.metric-row div + div {
  padding-left: 22px;
}

.metric-row div:last-child {
  border-right: 0;
}

.metric-row strong {
  display: block;
  font-size: clamp(22px, 1.8vw, 30px);
  line-height: 1;
  letter-spacing: -.02em;
}

.metric-row span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  margin-top: 10px;
}

.hero-panel {
  position: relative;
  display: grid;
  gap: 18px;
  padding-top: 10px;
}

.profile {
  display: grid;
  gap: 18px;
  padding: 12px;
  border: 1px solid rgba(17, 19, 22, .10);
  border-radius: 28px;
  background: rgba(255, 255, 255, .58);
  box-shadow: 0 24px 80px rgba(17, 19, 22, .10);
  backdrop-filter: blur(18px);
}

.profile img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 24%;
  border-radius: 20px;
  filter: grayscale(.16) contrast(1.02);
}

.profile h2 {
  font-family: var(--sans);
  font-size: clamp(24px, 2vw, 32px);
  line-height: 1.05;
  margin: 0 8px 8px;
}

.profile p {
  color: var(--muted);
  margin: 0 8px 8px;
  max-width: 32ch;
}

.signal-list {
  display: grid;
  gap: 12px;
}

.signal-list div {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  overflow: hidden;
  padding: 20px;
  border: 1px solid rgba(17, 19, 22, .10);
  border-radius: 20px;
  background: rgba(255, 255, 255, .66);
  box-shadow: 0 16px 44px rgba(17, 19, 22, .07);
  backdrop-filter: blur(14px);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.signal-list div::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--green);
}

.signal-list div:nth-child(2)::before {
  background: var(--blue);
}

.signal-list div:nth-child(3)::before {
  background: var(--clay);
}

.signal-list div:hover {
  transform: translateY(-2px);
  border-color: rgba(17, 19, 22, .18);
  box-shadow: 0 22px 60px rgba(17, 19, 22, .10);
}

.signal-list span {
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.signal-list strong {
  display: block;
  margin-bottom: 0;
  font-size: 18px;
}

.signal-list p {
  grid-column: auto;
  margin-bottom: 0;
  font-size: 14px;
}

.logo-strip {
  padding: 6px 0 50px;
  border: 0;
  background: transparent;
}

.keyword-panel {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 26px;
  align-items: start;
  padding: 26px 0;
  border-top: 1px solid rgba(17, 19, 22, .14);
  border-bottom: 1px solid rgba(17, 19, 22, .14);
}

.keyword-panel__label {
  color: var(--green);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .12em;
  line-height: 40px;
  text-transform: uppercase;
}

.logo-strip__inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.logo-strip__inner span {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 11px 14px 11px 16px;
  border: 1px solid rgba(17, 19, 22, .12);
  border-radius: 0;
  background: rgba(255, 255, 255, .46);
  color: rgba(17, 19, 22, .66);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .01em;
  white-space: nowrap;
  transition: background .18s ease, border-color .18s ease, color .18s ease;
}

.logo-strip__inner span.is-strong {
  border-color: rgba(11, 111, 92, .30);
  background: rgba(11, 111, 92, .055);
  color: var(--ink);
}

.logo-strip__inner span::before {
  content: "";
  width: 2px;
  align-self: stretch;
  margin: -3px 11px -3px 0;
  background: rgba(17, 19, 22, .18);
}

.logo-strip__inner span.is-strong::before {
  background: var(--green);
}

.logo-strip__inner span:hover {
  border-color: rgba(17, 19, 22, .22);
  background: rgba(255, 255, 255, .72);
  color: var(--ink);
}

.section {
  padding: clamp(72px, 10vw, 128px) 0;
}

.split {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: clamp(24px, 5vw, 74px);
  align-items: start;
  margin-bottom: 34px;
}

.section-copy {
  max-width: 860px;
}

.section-copy p {
  max-width: 720px;
  font-size: 18px;
}

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

.service-card {
  min-height: 300px;
  padding: 24px;
  border-right: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, .58);
}

.service-card p {
  margin-bottom: 0;
}

.icon {
  width: 30px;
  height: 30px;
  margin-bottom: 42px;
  color: var(--green);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.system-section {
  background: #171a1f;
  color: var(--paper);
}

.system-section p,
.system-section li {
  color: rgba(251, 250, 247, .68);
}

.system-section .section-kicker {
  color: var(--lime);
}

.system-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.system-copy {
  position: sticky;
  top: 112px;
}

.system-cards {
  display: grid;
  gap: 14px;
}

.system-card {
  padding: 28px;
  border: 1px solid rgba(251, 250, 247, .18);
  background: rgba(251, 250, 247, .06);
}

.system-card--dark {
  background: var(--lime);
  color: var(--ink);
  border-color: var(--lime);
}

.system-card--dark p,
.system-card--dark li {
  color: rgba(17, 19, 22, .68);
}

.system-card span {
  display: block;
  margin-bottom: 24px;
  color: var(--clay);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.system-card--dark span {
  color: var(--green);
}

.system-card ul {
  margin: 20px 0 0;
  padding-left: 18px;
}

.system-card li {
  margin: 8px 0;
}

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

.process__item {
  position: relative;
  overflow: hidden;
  min-height: 245px;
  padding: 28px;
  border: 1px solid rgba(17, 19, 22, .16);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transition: background .18s ease, border-color .18s ease;
}

.process__item::before {
  content: none;
}

.process__item::after {
  content: none;
}

.process__item:hover {
  transform: none;
  background: rgba(255, 255, 255, .42);
  border-color: rgba(17, 19, 22, .28);
  box-shadow: none;
}

.process__item span {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 62px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--green);
  font-weight: 950;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.process__item h3,
.process__item p {
  position: relative;
  z-index: 1;
}

.process__item h3 {
  font-size: 23px;
  margin-bottom: 12px;
}

.reference-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.reference-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: var(--ink);
  color: var(--paper);
}

.reference-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .74;
  filter: grayscale(.2);
  transform: scale(1.02);
  transition: transform .5s ease, opacity .5s ease;
}

.reference-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 19, 22, .05), rgba(17, 19, 22, .76));
}

.reference-card div {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
}

.reference-card h3 {
  font-size: 24px;
  margin-bottom: 6px;
}

.reference-card p {
  color: rgba(251, 250, 247, .76);
  margin-bottom: 0;
}

.reference-card:hover img {
  transform: scale(1.08);
  opacity: .9;
}

.insight-section {
  padding: 52px 0;
  border-block: 1px solid var(--line-strong);
  background: var(--lime);
}

.cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 36px;
  padding: 22px;
  border: 1px solid var(--line-strong);
  background: var(--panel);
}

.cta-strip__title {
  color: var(--ink);
  font-weight: 900;
  margin-bottom: 4px;
}

.insight {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.insight h2 {
  max-width: 820px;
  margin-bottom: 0;
}

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

.contact-layout {
  display: grid;
  grid-template-columns: .85fr 1fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: 112px;
}

.contact-copy p {
  font-size: 18px;
}

.contact-links {
  display: grid;
  gap: 8px;
  margin-top: 32px;
  font-weight: 850;
}

.form,
.modal__dialog,
.cookie__inner,
.post-card,
.sidebar-box {
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, .76);
  box-shadow: var(--shadow);
}

.form {
  padding: clamp(22px, 4vw, 38px);
}

label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

label span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

input,
textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  background: transparent;
  color: var(--ink);
  padding: 11px 0 13px;
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--blue);
}

.privacy-toggle {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.privacy-toggle input {
  width: 18px;
  height: 18px;
  accent-color: var(--ink);
  margin-top: 2px;
}

.privacy-text {
  font-size: 14px;
  color: var(--muted);
}

.linklike {
  border: 0;
  background: transparent;
  padding: 0;
  color: inherit;
  cursor: pointer;
  font: inherit;
}

.privacy-text .linklike {
  text-decoration: underline;
  font-weight: 800;
}

.modal__form .privacy-toggle {
  margin: 4px 0 18px;
}

.toast {
  margin-top: 14px;
  padding: 12px;
  border: 1px solid var(--line);
  background: var(--soft);
}

.footer {
  padding: 28px 0;
  border-top: 1px solid var(--line-strong);
  background: var(--paper);
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 14px;
}

.footer__links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
}

.modal[aria-hidden="false"] {
  display: block;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 19, 22, .56);
  backdrop-filter: blur(10px);
}

.modal__dialog {
  position: relative;
  width: min(700px, calc(100% - 32px));
  margin: 7vh auto;
  background: var(--paper);
}

.modal__dialog--legal {
  width: min(860px, calc(100% - 32px));
}

.modal__head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 22px 8px;
}

.modal__title {
  font-weight: 900;
  font-size: 20px;
}

.modal__close {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line-strong);
  background: transparent;
  cursor: pointer;
  font-size: 24px;
}

.modal__form,
.legal {
  padding: 14px 22px 22px;
}

.legal p,
.legal li {
  color: var(--muted);
}

.cookie {
  position: fixed;
  z-index: 2500;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: flex;
  justify-content: center;
}

.cookie__inner {
  width: min(980px, 100%);
  padding: 16px;
  background: var(--paper);
}

.cookie__title {
  font-weight: 900;
  margin-bottom: 4px;
}

.cookie__text {
  font-size: 14px;
}

.cookie__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.cookie__panel {
  border-top: 1px solid var(--line);
  margin-top: 14px;
  padding-top: 14px;
}

.cookie__toggles {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 11px;
  border: 1px solid var(--line);
}

.page-hero {
  padding: clamp(62px, 9vw, 112px) 0 46px;
}

.page-hero__inner,
.article {
  max-width: 880px;
}

.page-hero h1,
.article h1 {
  max-width: 13ch;
  word-break: break-all;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
}

.badge__dot {
  width: 9px;
  height: 9px;
  background: var(--green);
}

.blog-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 18px;
  align-items: start;
}

.post-list {
  display: grid;
  gap: 16px;
}

.post-card {
  display: grid;
  gap: 12px;
  padding: 24px;
}

.post-card h2,
.post-card h3 {
  margin-bottom: 0;
}

.post-card__meta,
.post-meta {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.post-card__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.sidebar {
  display: grid;
  gap: 16px;
}

.sidebar-box {
  padding: 20px;
}

.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  display: inline-flex;
  padding: 7px 9px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.archive-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.archive-list a {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.article h2 {
  margin-top: 42px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.08;
  word-break: break-all;
}

.article p,
.article li {
  color: var(--muted);
}

.article-callout {
  margin: 30px 0;
  padding: 22px;
  border-left: 4px solid var(--green);
  background: rgba(11, 111, 92, .08);
}

.svg-sprite,
.cursor-dot,
.cursor-outline,
.bg,
.scroll-top {
  display: none;
}

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

html.js-ready .reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .55s ease, transform .55s ease;
}

html.js-ready .reveal.is-in {
  opacity: 1;
  transform: none;
}

@media (max-width: 1080px) {
  .service-grid,
  .reference-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .hero__grid,
  .system-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .system-copy,
  .contact-copy {
    position: static;
  }
}

@media (max-width: 820px) {
  body {
    background-size: 34px 34px, 34px 34px, auto, auto, auto;
  }

  .container {
    width: min(100% - 28px, var(--max));
  }

  .header-row,
  .header__inner {
    grid-template-columns: 1fr auto;
  }

  .nav,
  .site-header > .container > .btn,
  .header > .container > .btn {
    display: none;
  }

  .burger {
    display: block;
  }

  .brand__claim,
  .brand__mini {
    display: none;
  }

  .lang-switch:not(.lang-switch--mobile) {
    display: none;
  }

  h1 {
    font-size: clamp(40px, 11vw, 58px);
    max-width: 100%;
  }

  h2 {
    font-size: clamp(32px, 10vw, 48px);
  }

  .page-hero h1,
  .article h1 {
    max-width: 100%;
    font-size: clamp(38px, 10vw, 54px);
    word-break: break-all;
  }

  .article h2 {
    font-size: 30px;
    word-break: break-all;
  }

  .hero {
    padding-top: 48px;
  }

  .metric-row,
  .split,
  .keyword-panel,
  .process,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .keyword-panel {
    gap: 10px;
    padding: 18px 0;
  }

  .keyword-panel__label {
    line-height: 1.2;
  }

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

  .logo-strip__inner span {
    min-height: 42px;
    white-space: normal;
  }

  .profile {
    border-radius: 22px;
  }

  .profile img {
    border-radius: 16px;
    aspect-ratio: 1 / 1.08;
  }

  .metric-row div {
    min-height: 92px;
  }

  .process__item {
    min-height: auto;
  }

  .process__item span {
    margin-bottom: 34px;
  }

  .service-grid,
  .reference-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .icon {
    margin-bottom: 28px;
  }

  .reference-card {
    min-height: 330px;
  }

  .insight,
  .footer__inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}
