:root {
  --bg: #f7f7f5;
  --surface: #ffffff;
  --ink: #111214;
  --muted: #696c73;
  --line: #e2e3e0;
  --accent: #325bff;
  --green: #5ee0a0;
  --dark: #0c0f13;
  --navy: #0c1429;
  --peach: #fff0e7;
  --radius: 18px;
  --container: 1280px;
  --gutter: clamp(20px, 5.55vw, 80px);
  --sans: Geist, Inter, "Segoe UI", Arial, sans-serif;
  --mono: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
}

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

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  color: inherit;
  font: inherit;
}

:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--accent) 65%, white);
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  transform: translateY(-150%);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 8px 30px #0002;
}

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

.container {
  width: min(calc(100% - (var(--gutter) * 2)), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: 104px;
}

.eyebrow {
  margin: 0;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow--blue {
  color: var(--accent);
}

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

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

h1,
h2,
h3 {
  letter-spacing: -0.04em;
}

h1 {
  max-width: 740px;
  margin-bottom: 0;
  font-size: clamp(56px, 5.28vw, 76px);
  font-weight: 620;
  line-height: 0.98;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(42px, 4vw, 58px);
  font-weight: 620;
  line-height: 1;
}

h3 {
  margin-bottom: 0;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 650;
  line-height: 1;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

.button span,
.project a span {
  display: inline-block;
  transition: transform 180ms ease;
}

.button:hover,
.project a:hover {
  transform: translateY(-2px);
}

.button:hover span,
.project a:hover span {
  transform: translate(2px, -2px);
}

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

.button--accent:hover {
  background: #234bf0;
}

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

.button--outline {
  border-color: var(--line);
  background: transparent;
}

.button--outline:hover {
  background: #fff;
}

.button--light {
  min-width: 185px;
  background: #fff;
  color: var(--ink);
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  display: flex;
  width: 100%;
  height: 88px;
  align-items: center;
  justify-content: space-between;
  padding-inline: var(--gutter);
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg) 94%, transparent);
  backdrop-filter: blur(14px);
  transition: height 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  height: 72px;
  box-shadow: 0 8px 30px #1112140a;
}

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

.brand__mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 9px;
  background: var(--ink);
  color: #fff;
  font-family: var(--mono);
  font-size: 15px;
  font-weight: 700;
}

.brand__name {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.07em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav > a:not(.button) {
  color: var(--muted);
  font-size: 14px;
  font-weight: 550;
  transition: color 160ms ease;
}

.site-nav > a:not(.button):hover {
  color: var(--ink);
}

.header-cta {
  min-height: 42px;
  padding: 12px 18px;
  font-size: 14px;
}

.languages {
  display: flex;
  gap: 2px;
  padding: 4px;
  border-radius: 999px;
  background: #ecede9;
}

.languages button {
  min-width: 38px;
  padding: 7px 8px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
}

.languages button:disabled:not(.is-active) {
  cursor: not-allowed;
  opacity: 0.72;
}

.languages .is-active {
  background: var(--ink);
  color: #fff;
}

.languages--mobile {
  display: none;
}

.menu-button {
  display: none;
}

.hero {
  padding-top: 110px;
  padding-bottom: 78px;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.48fr) minmax(390px, 1fr);
  align-items: center;
  gap: clamp(42px, 5vw, 72px);
}

.hero__copy {
  display: grid;
  gap: 28px;
}

.hero__copy .eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px #325bff13;
}

.hero__lead {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.45;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.product-flow {
  min-width: 0;
  padding: 24px;
  border: 1px solid #ffffff14;
  border-radius: 26px;
  background:
    radial-gradient(circle at 90% 100%, #4ae4bc22, transparent 38%),
    linear-gradient(145deg, #11161e, #090c10);
  color: #fff;
  box-shadow: 0 28px 60px #11121420;
}

.product-flow__top,
.product-flow__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--mono);
}

.product-flow__top {
  padding-bottom: 28px;
  color: #b9bec7;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.product-flow__top span {
  display: flex;
  align-items: center;
  gap: 7px;
}

.product-flow__top i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px var(--green);
}

.product-flow__top small {
  color: #626977;
  font-size: 8px;
}

.product-flow ol {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-flow li {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  align-items: center;
  gap: 12px;
  min-height: 72px;
  padding: 14px 16px;
  border: 1px solid #ffffff0c;
  border-radius: 10px;
  background: #151a23;
}

.product-flow li span,
.product-flow li b,
.product-flow__footer span {
  color: #737b89;
  font-family: var(--mono);
  font-size: 9px;
}

.product-flow li strong {
  font-size: 13px;
  font-weight: 560;
}

.product-flow li:nth-child(2) {
  border-color: #325bff55;
  background: #152456;
}

.product-flow li.is-current {
  border-color: transparent;
  background: var(--accent);
}

.product-flow li.is-current span,
.product-flow li.is-current b {
  color: #fff;
}

.product-flow__footer {
  align-items: flex-end;
  padding-top: 28px;
}

.product-flow__footer p {
  max-width: 205px;
  margin-bottom: 0;
  color: #cfd2d8;
  font-family: var(--sans);
  font-size: 12px;
  line-height: 1.45;
}

.product-flow__footer span {
  max-width: 120px;
  text-align: right;
  line-height: 1.5;
}

.proof {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  align-items: center;
  gap: 20px;
  margin-top: 72px;
  padding-block: 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof > p {
  margin-bottom: 0;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.proof div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.proof strong {
  font-size: 24px;
  font-weight: 620;
}

.proof span {
  color: var(--muted);
  font-size: 12px;
}

.what,
.process,
.why {
  background: #fff;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  align-items: end;
  gap: 48px;
  margin-bottom: 70px;
}

.section-heading .eyebrow {
  margin-bottom: 18px;
}

.section-heading > p {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

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

.capability {
  display: grid;
  align-content: start;
  gap: 20px;
  min-width: 0;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.mini-flow {
  display: flex;
  min-height: 36px;
  align-items: center;
  gap: 7px;
  overflow: hidden;
}

.mini-flow span {
  flex: 0 0 auto;
  padding: 7px 9px;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: #8b8e94;
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 700;
}

.mini-flow span.on {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

.mini-flow b {
  color: #a4a7ac;
  font-size: 11px;
  font-weight: 500;
}

.capability h3 {
  font-size: 22px;
  font-weight: 620;
}

.capability p {
  max-width: 340px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.projects {
  padding-block: 118px;
}

.project-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.86fr) minmax(340px, 1fr);
  gap: 24px;
}

.project {
  overflow: hidden;
  border-radius: var(--radius);
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.project:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 70px #11121412;
}

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

.project__heading h3,
.qyzyq__copy h3 {
  margin-top: 9px;
  font-size: clamp(42px, 4vw, 58px);
  font-weight: 620;
  line-height: 1;
}

.project__heading p:not(.eyebrow),
.qyzyq__copy > p:not(.eyebrow) {
  max-width: 540px;
  margin: 10px 0 0;
  color: inherit;
  opacity: 0.72;
  font-size: 15px;
  line-height: 1.5;
}

.project__heading a,
.project-link {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  font-weight: 650;
  transition: transform 180ms ease;
}

.project--tendertap {
  display: grid;
  gap: 26px;
  padding: 34px;
  background: var(--dark);
  color: #fff;
}

.project--tendertap .eyebrow {
  color: #7da1ff;
}

.logic-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
}

.logic-strip span {
  padding: 8px 11px;
  border: 1px solid #ffffff1c;
  border-radius: 999px;
  color: #b6bbc3;
  font-family: var(--mono);
  font-size: 9px;
}

.logic-strip b {
  color: #5b626d;
  font-size: 10px;
}

.mockup {
  overflow: hidden;
}

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

.mockup--tendertap {
  aspect-ratio: 748 / 558;
  border-radius: 13px 13px 0 0;
  background: #fff;
}

.project--barma {
  display: grid;
  align-content: start;
  gap: 22px;
  padding: 30px;
  background: var(--peach);
}

.project__heading--stack {
  display: grid;
}

.project__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.project__meta a {
  font-size: 11px;
}

.project--barma .project__heading h3 {
  margin-top: 0;
}

.barma-flow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  padding-block: 10px;
  border-top: 1px solid #e6d9d1;
  border-bottom: 1px solid #e6d9d1;
}

.barma-flow span {
  display: grid;
  gap: 3px;
  font-family: var(--mono);
  font-size: 7px;
  font-weight: 700;
}

.barma-flow span b {
  color: #f16a3c;
  font-size: 8px;
}

.barma-flow i {
  height: 1px;
  flex: 1;
  background: #d6c8bf;
}

.mockup--barma {
  min-height: 0;
  border-radius: 12px;
  background: #fff;
}

.mockup--barma img {
  object-fit: contain;
}

.project--qyzyq {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 350px minmax(0, 1fr);
  align-items: center;
  gap: 64px;
  min-height: 620px;
  padding: 54px 48px;
  background: var(--peach);
}

.qyzyq__copy {
  align-self: center;
}

.qyzyq__copy > p:not(.eyebrow) {
  margin-top: 18px;
  color: var(--muted);
  opacity: 1;
}

.feature-list {
  display: grid;
  gap: 9px;
  margin: 24px 0 34px;
  padding: 0;
  color: #555a61;
  font-size: 13px;
  list-style: none;
}

.feature-list li {
  display: flex;
  gap: 9px;
}

.feature-list li::before {
  color: #f16a3c;
  content: "↗";
}

.mockup--qyzyq {
  border-radius: 16px;
  box-shadow: 0 22px 50px #4a251718;
}

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

.section-heading--dark > p {
  color: #8b929d;
}

.system-map {
  display: grid;
  grid-template-columns: 1fr minmax(380px, 1.55fr) 1fr;
  align-items: center;
  gap: clamp(24px, 4vw, 62px);
  min-height: 550px;
  padding: 56px;
  border: 1px solid #ffffff0d;
  border-radius: var(--radius);
  background: #10151d;
}

.system-map__nodes {
  display: grid;
  gap: 16px;
}

.system-map__nodes > span {
  position: relative;
  display: grid;
  gap: 4px;
  padding: 15px 17px;
  border: 1px solid #ffffff0c;
  border-radius: 9px;
  background: #151b24;
}

.system-map__nodes--left > span::after,
.system-map__nodes--right > span::before {
  position: absolute;
  top: 50%;
  width: clamp(24px, 4vw, 62px);
  height: 1px;
  background: linear-gradient(90deg, #325bff, transparent);
  content: "";
}

.system-map__nodes--left > span::after {
  left: calc(100% + 1px);
}

.system-map__nodes--right > span::before {
  right: calc(100% + 1px);
  transform: rotate(180deg);
}

.system-map__nodes > span.active {
  border-color: #325bff32;
  background: #16203c;
}

.system-map__nodes b {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.06em;
}

.system-map__nodes small {
  color: #737b87;
  font-size: 10px;
}

.business-core {
  padding: 28px;
  border: 1px solid #ffffff2b;
  border-radius: 15px;
  background: var(--accent);
  box-shadow: 0 0 80px #325bff52;
}

.business-core__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
}

.business-core__top small {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 7px;
}

.business-core__top i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
}

.business-core h3 {
  max-width: 330px;
  margin: 20px 0 24px;
  font-size: 25px;
  font-weight: 620;
  line-height: 1.05;
}

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

.core-stats span {
  display: grid;
  gap: 4px;
  padding: 14px 12px;
  border-radius: 8px;
  background: #ffffff12;
}

.core-stats b {
  font-size: 18px;
}

.core-stats small {
  color: #ffffffb3;
  font-family: var(--mono);
  font-size: 7px;
}

.business-core ol {
  display: grid;
  gap: 7px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.business-core li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 9px 11px;
  border-radius: 7px;
  background: #153ed2;
  font-size: 10px;
}

.business-core li small {
  color: #ffffffa6;
  font-family: var(--mono);
  font-size: 7px;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-top: 38px;
}

.service-list span {
  display: grid;
  gap: 7px;
}

.service-list b {
  font-size: 13px;
  font-weight: 600;
}

.service-list small {
  color: #737b87;
  font-size: 10px;
  line-height: 1.4;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  position: relative;
  padding: 52px 28px 0 0;
  border-top: 1px solid var(--line);
}

.timeline li::before {
  position: absolute;
  top: -6px;
  left: 0;
  width: 12px;
  height: 12px;
  border: 4px solid #fff;
  border-radius: 50%;
  background: #d8d9d6;
  box-shadow: 0 0 0 1px var(--line);
  content: "";
}

.timeline li:first-child::before {
  background: var(--accent);
  box-shadow: 0 0 0 1px var(--accent);
}

.timeline li > span,
.why__list article span {
  color: var(--accent);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
}

.timeline h3 {
  margin-top: 15px;
  font-size: 20px;
  font-weight: 620;
  letter-spacing: -0.02em;
}

.timeline p {
  max-width: 255px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.why {
  border-top: 1px solid var(--line);
}

.why__grid {
  display: grid;
  grid-template-columns: minmax(320px, 430px) minmax(0, 1fr);
  gap: clamp(80px, 9vw, 130px);
}

.why__intro .eyebrow {
  margin-bottom: 20px;
}

.why__intro h2 {
  font-size: clamp(42px, 4.2vw, 60px);
}

.why__intro > p:last-child {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

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

.why__list article {
  min-height: 190px;
  padding: 26px 28px;
  border-top: 1px solid var(--line);
}

.why__list article:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.why__list h3 {
  margin-top: 28px;
  font-size: 19px;
  font-weight: 620;
  letter-spacing: -0.02em;
}

.why__list p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.contact {
  min-height: 680px;
  background:
    radial-gradient(circle at 20% 110%, #325bff1d, transparent 45%),
    var(--navy);
  color: #fff;
}

.contact__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 480px);
  align-items: center;
  gap: clamp(70px, 9vw, 140px);
}

.contact h2 {
  margin-top: 20px;
  font-size: clamp(46px, 4.7vw, 68px);
}

.contact__copy > p:not(.eyebrow) {
  max-width: 580px;
  margin: 22px 0 0;
  color: #9ba2ae;
  font-size: 16px;
  line-height: 1.55;
}

.contact__links {
  display: grid;
  justify-items: start;
  gap: 10px;
  margin-top: 34px;
}

.contact__links a {
  color: #9ba2ae;
  font-family: var(--mono);
  font-size: 13px;
  transition: color 160ms ease;
}

.contact__links a:hover {
  color: #fff;
}

.contact-form {
  display: grid;
  gap: 20px;
  padding: 34px;
  border: 1px solid #ffffff14;
  border-radius: 20px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 30px 80px #0004;
}

.contact-form__heading {
  margin-bottom: 6px;
}

.contact-form__heading h3 {
  margin-top: 12px;
  font-size: 30px;
  font-weight: 620;
}

.contact-form__heading > p:last-child {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.contact-form label {
  display: grid;
  gap: 9px;
}

.contact-form label > span {
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.contact-form input {
  width: 100%;
  min-height: 54px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #f7f7f5;
  color: var(--ink);
  font: 500 16px/1.2 var(--sans);
  transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.contact-form input::placeholder {
  color: #9a9da3;
}

.contact-form input:focus {
  border-color: var(--accent);
  outline: 0;
  background: #fff;
  box-shadow: 0 0 0 4px #325bff14;
}

.contact-form input:user-invalid {
  border-color: #d95d63;
}

.contact-form .button {
  width: 100%;
  margin-top: 2px;
  border: 0;
  cursor: pointer;
}

.contact-form__status {
  min-height: 18px;
  margin: -8px 0 -8px;
  color: #356043;
  font-size: 12px;
  line-height: 1.45;
}

.contact-form > small {
  color: #8b8e94;
  font-size: 10px;
  line-height: 1.45;
}

.footer {
  padding: 46px 0 28px;
  border-top: 1px solid #ffffff10;
  background: var(--dark);
  color: #fff;
}

.footer__top,
.footer__bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
}

.footer__top strong {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
}

.footer__top p {
  margin: 8px 0 0;
  color: #6f7784;
  font-size: 11px;
}

.footer nav {
  display: flex;
  gap: 28px;
}

.footer nav a {
  color: #a2a8b1;
  font-size: 12px;
}

.footer__bottom {
  margin-top: 42px;
  padding-top: 20px;
  border-top: 1px solid #ffffff0d;
  color: #565e69;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.08em;
}

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

.js .reveal.is-visible {
  animation: reveal 600ms ease both;
}

@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1120px) {
  .brand__name {
    display: none;
  }

  .site-nav {
    gap: 20px;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(350px, 0.8fr);
  }

  .project-grid {
    grid-template-columns: minmax(0, 1.55fr) minmax(310px, 1fr);
  }

  .project--tendertap,
  .project--barma {
    padding: 26px;
  }

  .project--qyzyq {
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 38px;
    padding-inline: 38px;
  }

  .system-map {
    grid-template-columns: 1fr minmax(340px, 1.4fr) 1fr;
    gap: 30px;
    padding-inline: 36px;
  }

  .system-map__nodes--left > span::after,
  .system-map__nodes--right > span::before {
    width: 30px;
  }
}

@media (max-width: 900px) {
  :root {
    --gutter: 28px;
  }

  .site-header {
    height: 74px;
  }

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

  .menu-button {
    display: grid;
    width: 42px;
    height: 42px;
    place-content: center;
    gap: 6px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--surface);
  }

  .languages--mobile {
    display: flex;
    margin-left: auto;
    margin-right: 12px;
  }

  .languages--mobile button {
    min-width: 29px;
    padding: 6px 5px;
    font-size: 7px;
  }

  .menu-button span:not(.sr-only) {
    display: block;
    width: 17px;
    height: 1px;
    background: var(--ink);
    transition: transform 180ms ease;
  }

  .menu-button[aria-expanded="true"] span:nth-last-child(2) {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: 74px 0 auto;
    display: none;
    min-height: calc(100dvh - 74px);
    align-content: start;
    align-items: stretch;
    padding: 32px var(--gutter);
    background: var(--bg);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav > a:not(.button) {
    padding-block: 12px;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    font-size: 24px;
  }

  .site-nav .languages {
    display: none;
  }

  .header-cta {
    margin-top: 16px;
  }

  .hero {
    padding-top: 82px;
  }

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

  .product-flow {
    width: min(100%, 540px);
  }

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

  .proof > p {
    grid-column: 1 / -1;
  }

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

  .section-heading > p {
    max-width: 520px;
  }

  .capabilities {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .capability {
    grid-template-columns: minmax(260px, 0.8fr) 1fr;
    align-items: center;
  }

  .capability p {
    grid-column: 2;
  }

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

  .project--qyzyq {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .qyzyq__copy {
    max-width: 520px;
  }

  .system-map {
    grid-template-columns: 1fr 1.4fr 1fr;
    gap: 22px;
    padding: 36px 24px;
  }

  .system-map__nodes > span {
    padding: 12px;
  }

  .system-map__nodes--left > span::after,
  .system-map__nodes--right > span::before {
    display: none;
  }

  .business-core {
    padding: 20px;
  }

  .service-list {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 28px;
  }

  .timeline {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 54px;
  }

  .why__grid {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .contact__layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact__copy {
    max-width: 680px;
  }
}

@media (max-width: 620px) {
  :root {
    --gutter: 20px;
    --radius: 14px;
  }

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

  .section {
    padding-block: 76px;
  }

  h1 {
    font-size: clamp(46px, 13vw, 58px);
    line-height: 0.95;
  }

  h2 {
    font-size: 38px;
  }

  .hero {
    padding-top: 64px;
    padding-bottom: 56px;
  }

  .hero__grid {
    gap: 46px;
  }

  .hero__copy {
    gap: 22px;
  }

  .hero__lead {
    font-size: 16px;
  }

  .actions {
    display: grid;
  }

  .actions .button {
    width: 100%;
  }

  .product-flow {
    padding: 18px;
    border-radius: 18px;
  }

  .product-flow li {
    min-height: 60px;
    padding: 12px;
  }

  .product-flow__footer {
    display: grid;
    gap: 12px;
  }

  .product-flow__footer span {
    max-width: none;
    text-align: left;
  }

  .proof {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 46px;
  }

  .proof div {
    display: grid;
    gap: 4px;
  }

  .proof strong {
    font-size: 20px;
  }

  .proof span {
    font-size: 9px;
    line-height: 1.3;
  }

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

  .capability {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    padding-top: 22px;
  }

  .capability p {
    grid-column: auto;
  }

  .projects {
    padding-block: 76px;
  }

  .project-grid {
    gap: 14px;
  }

  .project--tendertap,
  .project--barma,
  .project--qyzyq {
    padding: 20px;
  }

  .project:hover {
    transform: none;
  }

  .project__heading {
    display: grid;
  }

  .project__heading h3,
  .qyzyq__copy h3 {
    font-size: 38px;
  }

  .project__heading > a {
    width: fit-content;
  }

  .logic-strip {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 4px;
  }

  .logic-strip span {
    padding: 7px 5px;
    text-align: center;
    font-size: 6px;
  }

  .mockup--tendertap {
    aspect-ratio: 4 / 3;
  }

  .project__meta {
    align-items: flex-start;
  }

  .barma-flow span {
    font-size: 6px;
  }

  .mockup--barma {
    max-height: 510px;
  }

  .mockup--barma img {
    object-position: top;
  }

  .project--qyzyq {
    gap: 32px;
    min-height: auto;
  }

  .feature-list {
    margin-bottom: 28px;
  }

  .mockup--qyzyq {
    border-radius: 10px;
  }

  .system-map {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 0;
    gap: 10px;
    padding: 14px;
  }

  .business-core {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .system-map__nodes {
    gap: 8px;
  }

  .system-map__nodes > span {
    padding: 10px;
  }

  .system-map__nodes b {
    font-size: 8px;
  }

  .system-map__nodes small {
    font-size: 8px;
  }

  .business-core h3 {
    font-size: 22px;
  }

  .core-stats b {
    font-size: 15px;
  }

  .service-list {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 28px;
  }

  .service-list span {
    grid-template-columns: 1fr auto;
    padding-block: 14px;
    border-bottom: 1px solid #ffffff0d;
  }

  .timeline {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .timeline li {
    min-height: 155px;
    padding: 24px 0 32px 42px;
    border-top: 0;
    border-left: 1px solid var(--line);
  }

  .timeline li::before {
    top: 24px;
    left: -6px;
  }

  .timeline h3 {
    margin-top: 8px;
  }

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

  .why__list article,
  .why__list article:nth-child(odd) {
    min-height: 0;
    padding: 24px 0;
    border-right: 0;
  }

  .why__list h3 {
    margin-top: 16px;
  }

  .contact {
    min-height: 0;
  }

  .contact h2 {
    font-size: 43px;
  }

  .contact-form {
    gap: 18px;
    padding: 22px;
    border-radius: 16px;
  }

  .contact-form__heading h3 {
    font-size: 27px;
  }

  .footer__top,
  .footer__bottom {
    display: grid;
  }

  .footer nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 40px;
  }

  .footer__bottom {
    gap: 10px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
