@font-face {
  font-family: Onest;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("./public/fonts/onest-400-full.woff2") format("woff2");
}
@font-face {
  font-family: Onest;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("./public/fonts/onest-500-full.woff2") format("woff2");
}
@font-face {
  font-family: Onest;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("./public/fonts/onest-600-full.woff2") format("woff2");
}
:root {
  --ink: #202321;
  --ink-deep: #1a1d1b;
  --paper: #f1f0e9;
  --white: #faf9f4;
  --accent: #e45a3b;
  --muted: #a4a69e;
  --muted-dark: #73756d;
  --line: rgba(241, 240, 233, 0.16);
  --line-dark: rgba(32, 35, 33, 0.2);
  --pad: clamp(24px, 4.45vw, 88px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  color: var(--paper);
  background: var(--ink);
  font-family: Onest, Arial, sans-serif;
  font-size: 15px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
body.is-locked {
  overflow: hidden;
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
}
button,
a,
input,
textarea,
select {
  -webkit-tap-highlight-color: transparent;
}
button,
a {
  touch-action: manipulation;
}
button,
input,
textarea,
select {
  font: inherit;
}
button {
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}
button,
a {
  color: inherit;
}
button {
  border: 0;
  border-radius: 0;
}
a {
  text-decoration: none;
}
button:disabled {
  cursor: default;
}
button {
  background: none;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  font-weight: 500;
}
button:focus-visible,
a:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 6px;
}
img,
svg {
  display: block;
  max-width: 100%;
}
::selection {
  color: var(--paper);
  background: #af3c25;
}
[hidden] {
  display: none !important;
}
.accent {
  color: var(--accent);
}
.muted {
  color: var(--muted-dark);
}
.eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.11em;
  line-height: 1.6;
  text-transform: uppercase;
}
.section-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.section-light {
  background: var(--paper);
  color: var(--ink);
}
.status-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  margin-right: 10px;
  vertical-align: 2px;
}
.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding: 17px 24px;
  font-size: 12px;
  font-weight: 600;
  transition:
    background 0.3s,
    color 0.3s;
  line-height: 1.5;
}
.button > span:last-child {
  font-size: 21px;
  line-height: 1;
}
.button-accent {
  background: var(--accent);
  color: var(--ink-deep);
}
.button-accent:hover {
  background: #ef7053;
}
.button-dark {
  background: var(--ink);
  color: var(--paper);
}
.button-dark:hover {
  background: #343831;
}
.button-outline {
  border: 1px solid rgba(32, 35, 33, 0.5);
  color: var(--ink-deep);
}
.button-outline:hover {
  background: var(--ink);
  color: var(--paper);
}
.text-link {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  gap: 26px;
  font-size: 12px;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid currentColor;
  text-align: left;
  transition: color 0.25s;
}
.text-link span:not(.i18n-label) {
  font-size: 20px;
}
.text-link:hover {
  color: var(--accent);
}
.round-link {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 23px;
  transition:
    color 0.3s,
    border-color 0.3s;
}
.round-link:hover {
  color: var(--accent);
  border-color: var(--accent);
}
.skip-link {
  position: fixed;
  top: 10px;
  left: var(--pad);
  z-index: 200;
  background: var(--paper);
  color: var(--ink);
  padding: 15px;
  transform: translateY(-160%);
}
.skip-link:focus {
  transform: translateY(0);
}
/* A quiet, fixed frame around the story. */
.header {
  height: 90px;
  padding: 0 var(--pad);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  position: absolute;
  inset: 0 0 auto;
  z-index: 50;
  background: var(--ink);
  border-bottom: 1px solid var(--line);
  transition:
    height 0.3s,
    box-shadow 0.3s;
}
.header.is-scrolled {
  position: fixed;
  height: 72px;
  box-shadow: 0 4px 18px #0000000a;
}
.brand {
  display: flex;
  align-items: center;
  gap: 19px;
  flex-shrink: 0;
}
.brand img {
  width: 92px;
  height: auto;
}
.brand > span {
  font-size: 9px;
  line-height: 1.6;
  letter-spacing: 0.02em;
  border-left: 1px solid var(--line);
  padding-left: 17px;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}
.desktop-nav a {
  font-size: 11px;
  color: #c1c3ba;
  transition: color 0.2s;
}
.desktop-nav a:hover,
.desktop-nav a[aria-current="location"] {
  color: var(--accent);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 31px;
}
.language-switch {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
}
.language-switch button {
  padding: 12px 4px;
  color: #989b91;
  font-size: 10px;
}
.language-switch button.is-active {
  color: var(--paper);
}
.language-switch > span {
  color: #5c6158;
}
.header-cta {
  height: 38px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 26px;
  border: 1px solid #7b7e72;
  font-size: 10px;
  transition:
    background 0.3s,
    color 0.3s;
}
.header-cta span:not(.i18n-label) {
  font-size: 17px;
  line-height: 1;
}
.header-cta:hover {
  background: var(--paper);
  color: var(--ink);
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 13px 7px;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
}
.menu-toggle span {
  height: 1px;
  width: 28px;
  background: var(--paper);
  transition: transform 0.25s;
}
.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}
.mobile-menu {
  position: fixed;
  inset: 72px 0 0;
  z-index: 45;
  background: var(--ink);
  padding: 30px var(--pad);
  overflow: auto;
}
.mobile-menu nav {
  display: flex;
  flex-direction: column;
  margin-bottom: 32px;
}
.mobile-menu nav a {
  font-size: 30px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
}
.mobile-menu nav a span:not(.i18n-label) {
  font-size: 11px;
  color: var(--accent);
}
.mobile-menu > .eyebrow {
  display: block;
  margin-top: 45px;
  color: var(--muted);
}
/* The hero's modular mark is built from the same open geometry as the wordmark. */
.hero {
  position: relative;
  padding: 133px var(--pad) 0;
  min-height: 810px;
  height: 100svh;
  max-height: 1100px;
  isolation: isolate;
  overflow: hidden;
}
.hero-grid {
  position: absolute;
  inset: 90px var(--pad) 0;
  z-index: -1;
  background-image: linear-gradient(
    90deg,
    transparent calc(100% - 1px),
    rgba(241, 240, 233, 0.045) 0
  );
  background-size: 25% 100%;
  border-left: 1px solid rgba(241, 240, 233, 0.045);
}
.hero-topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 37px;
}
.hero-topline .eyebrow {
  color: #b5b8ac;
}
.hero-index {
  font-size: 9px !important;
}
.hero h1 {
  font-size: clamp(62px, 7.72vw, 148px);
  line-height: 1.085;
  letter-spacing: -0.065em;
  font-weight: 500;
  position: relative;
  z-index: 2;
  max-width: 85%;
}
.hero-line {
  display: block;
  overflow: hidden;
}
.hero-line > span {
  display: block;
  animation: hero-reveal 1.25s var(--ease) both;
  animation-delay: 0.1s;
}
.hero-line:nth-child(2) > span {
  animation-delay: 0.21s;
}
.hero-answer {
  font-size: clamp(36px, 4.6vw, 83px);
  line-height: 1.09;
  letter-spacing: -0.055em;
  margin-top: 28px;
  color: #a8aa9e;
  animation: hero-reveal 1.2s 0.35s var(--ease) both;
}
.hero-answer > span {
  display: block;
}
.hero-bottom-content {
  margin-top: 31px;
}
.hero-description {
  font-size: 12px;
  line-height: 1.8;
  color: #bbbdb3;
  max-width: 440px;
}
.hero-buttons {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 27px;
}
.hero-buttons .button {
  min-width: 205px;
}
.whatsapp-link {
  border-bottom: none;
  color: #cbcdc3;
  font-size: 11px;
}
.whatsapp-link span:not(.i18n-label) {
  font-size: 19px;
}
.hero-symbol {
  position: absolute;
  width: clamp(240px, 25vw, 450px);
  right: calc(var(--pad) + 28px);
  top: 32%;
  color: var(--accent);
  z-index: 1;
  animation: fade-in 1.8s 0.35s both;
}
.hero-symbol svg {
  width: 100%;
  overflow: visible;
}
.symbol-outline {
  opacity: 0.22;
}
.symbol-piece {
  transform-box: fill-box;
  transform-origin: center;
  animation: assemble 1.8s var(--ease) both;
  animation-delay: 0.4s;
}
.piece-a {
  --dx: -22px;
  --dy: -18px;
}
.piece-b {
  --dx: 26px;
  --dy: -24px;
  animation-delay: 0.52s;
}
.piece-c {
  --dx: -28px;
  --dy: 25px;
  animation-delay: 0.64s;
}
.piece-d {
  --dx: 26px;
  --dy: 18px;
  animation-delay: 0.76s;
}
.symbol-center {
  animation: fade-in 1.7s 0.7s both;
}
.symbol-caption {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: #bebfb4;
  font-size: 10px;
  line-height: 1.6;
  padding-left: 16.66%;
  margin-top: 13px;
}
.symbol-coordinate {
  position: absolute;
  font-size: 8px;
  letter-spacing: 0.07em;
  transform: rotate(-90deg);
  right: -70px;
  top: 48%;
  color: #939888;
}
.hero-footer {
  position: absolute;
  bottom: 0;
  left: var(--pad);
  right: var(--pad);
  min-height: 69px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 9px;
  color: #a3a799;
  gap: 20px;
}
.hero-disciplines {
  font-size: 8px;
  letter-spacing: 0.11em;
}
.scroll-link {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--paper);
}
.scroll-link span:not(.i18n-label) {
  font-size: 19px;
}
@keyframes hero-reveal {
  from {
    opacity: 0;
    transform: translateY(105%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes assemble {
  from {
    transform: translate(var(--dx), var(--dy));
    opacity: 0;
  }
  to {
    transform: translate(0, 0);
    opacity: 1;
  }
}
/* Pinned, native-scroll scene. JavaScript updates only a few CSS variables. */
.story {
  height: 210svh;
  position: relative;
  background: var(--ink-deep);
  --story-progress: 1;
  --scatter: 0;
}
.story-stage {
  height: 100svh;
  min-height: 680px;
  max-height: 1200px;
  position: sticky;
  top: 0;
  overflow: hidden;
  padding: 112px var(--pad) 40px;
}
.story .section-meta {
  color: #a9ad9f;
}
.story-copy {
  position: relative;
  width: 58%;
  margin-top: 75px;
}
.story h2 {
  font-size: clamp(34px, 4.1vw, 72px);
  line-height: 1.16;
  letter-spacing: -0.046em;
  transition: color 0.5s;
}
.story-emphasis {
  font-size: clamp(30px, 3.5vw, 65px);
  line-height: 1.18;
  letter-spacing: -0.045em;
  margin-top: 33px;
  color: #a5a99b;
}
.story-emphasis span {
  color: var(--accent);
}
.story-resolution {
  font-size: 13px;
  line-height: 1.7;
  color: #b3b6aa;
  margin-top: 26px;
}
.task-system {
  position: absolute;
  right: calc(var(--pad) + 35px);
  top: 37%;
  width: 350px;
  height: 300px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  align-content: start;
}
.system-grid {
  position: absolute;
  inset: -25px;
  background-image:
    linear-gradient(rgba(241, 240, 233, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(241, 240, 233, 0.04) 1px, transparent 1px);
  background-size: 25px 25px;
  opacity: calc(0.3 + var(--story-progress) * 0.7);
}
.task {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 15px;
  font-size: 11px;
  line-height: 1.4;
  background: var(--ink-deep);
  border: 1px solid #555b4e;
  position: relative;
  transform: translate(
      calc(var(--x) * var(--scatter)),
      calc(var(--y) * var(--scatter))
    )
    rotate(calc(var(--r) * var(--scatter)));
  will-change: transform;
}
.task::after {
  content: "+";
  color: var(--accent);
  font-size: 14px;
}
.system-core {
  grid-column: 1/-1;
  background: var(--accent);
  color: var(--ink-deep);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 19px 16px;
  margin-top: 8px;
  opacity: clamp(0, calc(var(--story-progress) * 2.5 - 1.5), 1);
  transform: translateY(calc(25px * var(--scatter)));
}
.system-core img {
  filter: brightness(0.15);
  width: 82px;
  height: auto;
}
.system-core > span {
  font-size: 10px;
  font-weight: 600;
}
.story-bottom {
  position: absolute;
  bottom: 40px;
  left: var(--pad);
  right: var(--pad);
  display: flex;
  align-items: center;
  gap: 45px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
}
.story-bottom p {
  font-size: 11px;
  line-height: 1.65;
  color: #b5b8ac;
  min-width: 290px;
}
.story-progress {
  height: 1px;
  flex: 1;
  background: var(--line);
  margin-left: 10%;
  overflow: hidden;
}
.story-progress i {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(var(--story-progress));
  transform-origin: left;
}
.story.is-resolved h2 {
  color: #9a9f90;
}
/* Five chapters, one persistent index. */
.services {
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 42% 58%;
  gap: 0;
  position: relative;
  align-items: start;
}
.services-side {
  position: sticky;
  top: 72px;
  min-height: 680px;
  height: calc(100svh - 72px);
  max-height: 870px;
  padding: 65px 50px 50px 0;
  display: flex;
  flex-direction: column;
}
.services-side > .eyebrow {
  color: #606657;
}
.services-side h2 {
  font-size: clamp(39px, 4.5vw, 74px);
  line-height: 1.12;
  letter-spacing: -0.055em;
  margin-top: 39px;
}
.services-side > p {
  font-size: 11px;
  line-height: 1.9;
  color: #606657;
  margin-top: 25px;
}
.service-nav {
  display: flex;
  flex-direction: column;
  margin-top: 39px;
  max-width: 310px;
}
.service-nav a {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line-dark);
  font-size: 10px;
  transition: color 0.25s;
}
.service-nav a > span:not(.i18n-label) {
  font-size: 9px;
  color: #606657;
  min-width: 18px;
}
.service-nav i {
  margin-left: auto;
  font-style: normal;
  opacity: 0;
  font-size: 17px;
  line-height: 1;
  transition: opacity 0.3s;
}
.service-nav a:hover,
.service-nav a.is-active {
  color: #b63d22;
}
.service-nav a.is-active i {
  opacity: 1;
}
.services-note {
  font-size: 9px;
  color: #606657;
  margin-top: auto;
  padding-top: 25px;
}
.service-scenes {
  border-left: 1px solid var(--line-dark);
}
.service-scene {
  padding: 65px 0 45px 56px;
  min-height: 740px;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--line-dark);
  scroll-margin-top: 0;
}
.service-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.service-top .eyebrow {
  color: #696e61;
}
.service-mode {
  font-size: 9px;
  color: #606657;
}
.service-art {
  height: 170px;
  position: relative;
  margin: 30px 0 33px;
  align-self: center;
  width: 260px;
  flex-shrink: 0;
  color: #919788;
}
.service-art span,
.service-art i {
  display: block;
  position: absolute;
  border: 1px solid currentColor;
  transition: transform 0.8s var(--ease);
}
.art-legal span {
  height: 92px;
  width: 92px;
  top: 37px;
  left: 25px;
}
.art-legal span:nth-child(2) {
  left: 70px;
}
.art-legal span:nth-child(3) {
  left: 115px;
}
.art-legal span:nth-child(4) {
  left: 160px;
}
.art-legal i {
  height: 92px;
  width: 36px;
  left: 115px;
  top: 37px;
  border-color: var(--accent);
  background: var(--accent);
}
.service-scene.is-visible .art-legal span:first-child {
  transform: translateX(-8px);
}
.service-scene.is-visible .art-legal span:last-of-type {
  transform: translateX(8px);
}
.service-scene h3 {
  font-size: clamp(31px, 3.05vw, 53px);
  line-height: 1.16;
  letter-spacing: -0.047em;
  margin-bottom: 22px;
}
.service-description {
  font-size: 12px;
  line-height: 1.9;
  color: #606657;
  max-width: 475px;
}
.service-tags {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 17px;
  margin: 25px 0 35px;
  max-width: 485px;
}
.service-tags li {
  font-size: 9px;
  padding: 8px 0;
  border-bottom: 1px solid var(--line-dark);
  line-height: 1.5;
}
.service-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
  padding-top: 20px;
}
.service-price {
  font-size: 10px;
  line-height: 1.6;
  white-space: nowrap;
}
.service-price strong {
  font-weight: 500;
  font-size: 17px;
  letter-spacing: -0.03em;
}
.service-price > span {
  font-size: 10px;
  color: #606657;
}
.service-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  text-align: left;
  padding: 9px 0;
  border-bottom: 1px solid var(--ink);
  font-size: 9px;
  transition: color 0.25s;
}
.service-cta > span:not(.i18n-label) {
  font-size: 21px;
  line-height: 1;
}
.service-cta:hover {
  color: #b63d22;
}
.art-accounting {
  width: 280px;
}
.art-accounting span {
  left: 30px;
  right: 30px;
  height: 1px;
  top: 40px;
  border: 0;
  background: currentColor;
}
.art-accounting span:nth-child(2) {
  top: 65px;
}
.art-accounting span:nth-child(3) {
  top: 90px;
  background: var(--accent);
}
.art-accounting span:nth-child(4) {
  top: 115px;
}
.art-accounting span:nth-child(5) {
  top: 140px;
}
.art-accounting i {
  width: 55px;
  height: 140px;
  top: 10px;
  left: 140px;
  border-color: var(--accent);
  background: var(--paper);
}
.art-accounting i::before,
.art-accounting i::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  top: 56px;
  height: 1px;
  background: var(--accent);
}
.art-accounting i::after {
  top: 76px;
}
.art-hr {
  display: grid;
  grid-template-columns: repeat(3, 46px);
  grid-template-rows: repeat(2, 46px);
  gap: 15px;
  place-content: center;
}
.art-hr span {
  position: static;
}
.art-hr span:nth-child(2) {
  background: var(--accent);
  border-color: var(--accent);
}
.art-hr span:nth-child(5) {
  border-color: var(--accent);
}
.service-it {
  background: var(--ink);
  color: var(--paper);
  padding-left: 40px;
  padding-right: 35px;
  margin-left: -1px;
  margin-right: calc(var(--pad) * -1);
  padding-bottom: 47px;
  min-height: 760px;
}
.service-it .service-top {
  padding-right: var(--pad);
}
.service-it .service-top .eyebrow,
.service-it .service-mode {
  color: #b4b8ab;
}
.service-it .service-description {
  color: #b3b8aa;
}
.service-it .service-tags li {
  border-color: var(--line);
}
.service-it .service-price > span {
  color: #a7ad9b;
}
.service-it .service-cta {
  border-color: #babfb0;
}
.service-it .service-bottom {
  margin-right: var(--pad);
}
.service-it .service-cta:hover {
  color: var(--accent);
}
.it-visual {
  width: 100%;
  max-width: 520px;
  height: 170px;
  margin: 30px 0 33px;
  position: relative;
  display: flex;
  align-items: center;
}
.it-visual svg {
  width: 100%;
  stroke: #777e6b;
  stroke-width: 1;
  overflow: visible;
}
.it-visual .circuit-accent {
  stroke: var(--accent);
}
.it-visual circle {
  fill: var(--ink);
  stroke: var(--accent);
}
.it-node {
  position: absolute;
  background: var(--ink);
  border: 1px solid #737c65;
  padding: 12px 10px;
  font-size: 8px;
  letter-spacing: 0.08em;
  z-index: 1;
  top: calc(50% - 18px);
}
.node-input {
  left: 0;
}
.node-output {
  right: 0;
  border-color: var(--accent);
  color: #ef7053;
}
.art-supply span {
  width: 150px;
  height: 62px;
  left: 55px;
  top: 30px;
  transform: skewY(-15deg);
}
.art-supply span:nth-child(2) {
  top: 55px;
}
.art-supply span:nth-child(3) {
  top: 80px;
  border-color: var(--accent);
  background: var(--paper);
}
.art-supply i {
  width: 25px;
  height: 62px;
  top: 74px;
  left: 156px;
  background: var(--accent);
  border: 0;
  transform: skewY(-15deg);
}
.other-tasks {
  padding: 70px 0 75px 56px;
}
.other-tasks .eyebrow {
  color: #696f60;
}
.other-tasks h3 {
  font-size: clamp(38px, 4vw, 62px);
  line-height: 1.12;
  letter-spacing: -0.05em;
  margin: 27px 0 20px;
}
.other-tasks p {
  font-size: 12px;
  line-height: 1.85;
  color: #606657;
}
.other-tasks .text-link {
  margin-top: 17px;
  min-width: 200px;
}
/* Proof through origin, with no invented case studies. */
.about {
  padding: 80px var(--pad) 70px;
  background: #282c27;
}
.about .section-meta {
  color: #adb3a1;
}
.about-heading {
  font-size: clamp(40px, 6.5vw, 110px);
  line-height: 1.12;
  letter-spacing: -0.055em;
  margin-top: 73px;
}
.about-heading .muted {
  color: #818975;
}
.origin-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 85px;
  align-items: start;
}
.origin-year > span {
  font-size: clamp(100px, 14vw, 220px);
  font-weight: 400;
  letter-spacing: -0.08em;
  line-height: 1;
  display: flex;
  gap: 20px;
  align-items: center;
}
.origin-year > span > span {
  font-size: 70px;
  align-self: flex-start;
  margin-top: 6px;
  font-weight: 400;
  letter-spacing: 0;
}
.origin-year > p {
  font-size: 11px;
  margin-top: 20px;
  color: #a7af99;
}
.origin-text {
  max-width: 435px;
  padding-top: 8px;
}
.origin-text .large-copy {
  font-size: 27px;
  line-height: 1.35;
  letter-spacing: -0.035em;
  margin-bottom: 25px;
  color: var(--paper);
}
.origin-text > p {
  font-size: 12px;
  line-height: 1.9;
  color: #bbc0b1;
  margin-bottom: 17px;
}
.industries {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-top: 63px;
  padding: 28px 0;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 25px;
  align-items: center;
}
.industries > .eyebrow {
  font-size: 9px;
  color: #a7af99;
}
.industries > div {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 25px;
}
.industries > div > span {
  font-size: 10px;
  color: #c5cabc;
}
.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 49px;
}
.metrics > div {
  padding: 0 40px;
  border-left: 1px solid var(--line);
}
.metrics > div:first-child {
  padding-left: 0;
  border-left: 0;
}
.metrics strong {
  font-size: clamp(70px, 8.6vw, 140px);
  line-height: 1;
  font-weight: 400;
  letter-spacing: -0.06em;
}
.metrics strong > span {
  color: var(--accent);
  font-size: 0.66em;
  margin-left: 6px;
  vertical-align: 14%;
}
.metrics p {
  font-size: 11px;
  color: #b7beab;
  margin-top: 20px;
}
.approach {
  padding: 79px var(--pad) 0;
}
.approach .section-meta {
  color: #606657;
}
.approach-intro {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 70px;
  align-items: end;
  margin-top: 70px;
}
.approach-intro h2 {
  font-size: clamp(40px, 5.5vw, 88px);
  line-height: 1.12;
  letter-spacing: -0.052em;
}
.approach-intro > p {
  max-width: 310px;
  margin: 0 0 7px auto;
  font-size: 12px;
  line-height: 1.9;
  color: #606657;
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
  padding: 0;
  margin: 70px 0 0;
  counter-reset: steps;
}
.steps li {
  padding: 29px 29px 12px 0;
  border-top: 1px solid var(--line-dark);
  position: relative;
}
.steps li::before {
  content: "";
  width: 5px;
  height: 5px;
  background: var(--accent);
  position: absolute;
  top: -3px;
  left: 0;
}
.step-number {
  font-size: 10px;
  color: #606657;
}
.steps h3 {
  font-size: 22px;
  line-height: 1.35;
  letter-spacing: -0.035em;
  margin-top: 34px;
}
.steps p {
  font-size: 11px;
  line-height: 1.8;
  color: #606657;
  max-width: 205px;
  margin-top: 17px;
}
.approach-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  margin-top: 52px;
  padding: 25px 0;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}
.approach-footer > span {
  font-size: 12px;
  color: #606657;
}
.approach-footer .text-link {
  font-size: 11px;
  border-bottom: none;
}
.pricing {
  padding: 97px var(--pad) 106px;
  display: grid;
  grid-template-columns: 42% 58%;
  gap: 0;
}
.pricing-heading > .eyebrow {
  color: #606657;
}
.pricing-heading h2 {
  font-size: clamp(38px, 4.25vw, 70px);
  line-height: 1.14;
  letter-spacing: -0.055em;
  margin: 34px 0 25px;
}
.pricing-heading > p {
  font-size: 11px;
  line-height: 1.85;
  color: #606657;
}
.price-list {
  padding-left: 0;
}
.price-row {
  display: grid;
  grid-template-columns: 1fr 1fr 20px;
  gap: 22px;
  align-items: center;
  width: 100%;
  text-align: left;
  border-top: 1px solid var(--line-dark);
  padding: 29px 0 30px;
  transition: color 0.3s;
}
.price-row:nth-child(3) {
  border-bottom: 1px solid var(--line-dark);
}
.price-row:hover {
  color: #b63d22;
}
.price-name {
  font-size: 13px;
  line-height: 1.65;
}
.price-value {
  font-size: 25px;
  white-space: nowrap;
  letter-spacing: -0.04em;
}
.price-value small {
  font-size: 10px;
  letter-spacing: 0;
}
.price-value small:last-child {
  display: block;
  margin: 3px 0 0 18px;
  color: #606657;
}
.price-value.individual {
  font-size: 21px;
}
.price-row > span:last-child {
  font-size: 23px;
  color: #777e6c;
}
.pricing-note {
  font-size: 10px;
  line-height: 1.8;
  color: #606657;
  margin-top: 23px;
}
/* A clear, warm final invitation. */
.contact {
  background: var(--accent);
  color: var(--ink-deep);
  padding: 50px var(--pad) 61px;
}
.contact .section-meta {
  color: var(--ink-deep);
}
.contact-premise {
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: -0.02em;
  margin-top: 65px;
}
.contact h2 {
  font-size: clamp(64px, 10vw, 164px);
  line-height: 1.05;
  letter-spacing: -0.068em;
  margin: 30px 0 48px;
}
.contact h2 > span {
  color: var(--paper);
}
.contact-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: end;
  border-top: 1px solid #20232140;
  padding-top: 30px;
}
.contact-bottom > p {
  font-size: 13px;
  line-height: 1.8;
}
.contact-buttons {
  display: flex;
  gap: 15px;
}
.contact-buttons .button {
  min-width: 160px;
}
.contact-buttons .button-dark {
  min-width: 245px;
}
.footer {
  padding: 45px var(--pad) 0;
  background: var(--ink-deep);
  overflow: hidden;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 30px;
  font-size: 11px;
  line-height: 1.8;
}
.footer-top > p {
  color: #bcc2b0;
}
.footer-top > div {
  display: flex;
  flex-direction: column;
  font-size: 10px;
  color: #9da58f;
}
.footer-top > div > span:first-child {
  color: var(--paper);
}
.footer-top > div > a {
  margin-top: 7px;
}
.back-top {
  display: flex;
  gap: 25px;
  align-items: start;
  font-size: 10px;
}
.back-top > span:not(.i18n-label) {
  font-size: 20px;
  line-height: 1;
}
.footer-logo {
  width: 100%;
  max-width: none;
  height: auto;
  opacity: 0.91;
  margin: 62px 0 40px;
}
.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 23px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 8px;
  color: #a5ac97;
}
.floating-contact {
  position: fixed;
  right: 22px;
  bottom: 22px;
  height: 49px;
  padding: 0 16px;
  gap: 11px;
  display: none;
  align-items: center;
  color: var(--ink-deep);
  background: var(--accent);
  z-index: 40;
  box-shadow: 0 4px 20px #0002;
  transform: translateY(100px);
  opacity: 0;
  visibility: hidden;
  transition:
    transform 0.4s var(--ease),
    opacity 0.4s,
    visibility 0.4s;
}
.floating-contact.is-visible {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.floating-contact > span {
  font-size: 10px;
  font-weight: 600;
}
.floating-contact:hover {
  background: #ef7053;
}
/* Native dialogs preserve focus and provide keyboard dismissal. */
dialog {
  border: 0;
  max-width: calc(100% - 32px);
  max-height: calc(100svh - 40px);
  color: var(--ink);
  background: var(--paper);
  padding: 48px;
  width: 580px;
  overflow: auto;
}
dialog::backdrop {
  background: rgba(13, 17, 13, 0.76);
}
dialog[open] {
  animation: dialog-enter 0.3s var(--ease);
}
.dialog-close {
  position: absolute;
  right: 18px;
  top: 12px;
  font-size: 30px;
  width: 44px;
  height: 44px;
  line-height: 1;
  font-weight: 400;
}
.contact-dialog > .eyebrow,
.language-dialog > .eyebrow {
  font-size: 9px;
  color: #606657;
}
dialog h2 {
  font-size: 42px;
  line-height: 1.13;
  letter-spacing: -0.05em;
  margin: 29px 0 18px;
}
.dialog-intro,
.language-dialog > p {
  font-size: 12px;
  line-height: 1.8;
  color: #666e5c;
}
.contact-dialog form {
  margin-top: 29px;
}
.contact-dialog label {
  font-size: 10px;
  display: flex;
  justify-content: space-between;
  margin: 17px 0 9px;
  font-weight: 600;
}
.contact-dialog label > span:not(.i18n-label) {
  font-weight: 400;
  color: #606657;
}
.contact-dialog select,
.contact-dialog textarea {
  width: 100%;
  border: 1px solid #abb19f;
  background: transparent;
  color: var(--ink);
  font-size: 12px;
  padding: 13px;
  border-radius: 0;
  line-height: 1.65;
  resize: vertical;
}
.contact-dialog textarea::placeholder {
  color: #606657;
}
.contact-dialog select {
  appearance: auto;
  min-height: 46px;
}
.contact-availability {
  font-size: 11px;
  line-height: 1.7;
  margin: 18px 0;
  color: #646f56;
}
.dialog-submit {
  width: 100%;
  margin-top: 22px;
}
.save-task {
  font-size: 10px;
  margin-top: 9px;
  padding: 9px 0;
  border: 0;
}
.form-note {
  font-size: 9px;
  line-height: 1.65;
  color: #606657;
  margin-top: 14px;
}
.form-status {
  font-size: 11px;
  line-height: 1.7;
  color: #414c33;
  margin-top: 14px;
  min-height: 0;
}
.form-status:empty {
  display: none;
}
.language-dialog .button {
  margin-top: 30px;
  font-size: 11px;
}
.language-dialog h2 {
  font-size: 32px;
}
.noscript-note {
  padding: 15px var(--pad);
  font-size: 12px;
  background: var(--paper);
  color: var(--ink);
}
@keyframes dialog-enter {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (min-width: 1700px) {
  .hero {
    padding-top: 160px;
  }
  .hero-topline {
    margin-bottom: 47px;
  }
  .hero-bottom-content {
    margin-top: 40px;
  }
  .hero-description {
    font-size: 14px;
  }
  .hero-buttons {
    margin-top: 35px;
  }
  .service-scene {
    min-height: 850px;
  }
  .service-art,
  .it-visual {
    margin-top: 55px;
    margin-bottom: 50px;
  }
  .service-description {
    font-size: 14px;
  }
  .service-tags li {
    font-size: 11px;
  }
  .service-cta {
    font-size: 11px;
  }
  .services-side {
    padding-top: 80px;
  }
  .services-side > p {
    font-size: 13px;
  }
  .service-nav a {
    font-size: 12px;
    padding: 18px 0;
  }
}
@media (max-width: 1150px) {
  .desktop-nav {
    gap: 19px;
  }
  .header-actions {
    gap: 20px;
  }
  .brand > span {
    display: none;
  }
  .header-cta {
    gap: 17px;
  }
  .hero {
    min-height: 760px;
  }
  .hero h1 {
    font-size: 8.1vw;
    max-width: 92%;
  }
  .hero-symbol {
    width: 25vw;
    right: calc(var(--pad) + 20px);
    top: 36%;
  }
  .hero-answer {
    font-size: 5vw;
  }
  .services {
    grid-template-columns: 39% 61%;
  }
  .services-side {
    padding-right: 25px;
  }
  .services-side h2 {
    font-size: 4.5vw;
  }
  .service-nav a {
    font-size: 9px;
    gap: 10px;
  }
  .service-scene {
    padding-left: 36px;
    min-height: 710px;
  }
  .service-bottom {
    flex-wrap: wrap;
    gap: 16px;
  }
  .service-scene h3 {
    font-size: 3.4vw;
  }
  .service-it {
    padding-left: 30px;
    padding-right: 25px;
  }
  .other-tasks {
    padding-left: 36px;
  }
  .task-system {
    width: 290px;
    right: var(--pad);
  }
  .story-copy {
    width: 60%;
  }
  .story h2 {
    font-size: 4.4vw;
  }
  .story-emphasis {
    font-size: 3.8vw;
  }
  .story-copy {
    margin-top: 70px;
  }
  .story-counter {
    font-size: 8px;
  }
  .service-mode {
    font-size: 8px;
  }
  .origin-year > span > span {
    font-size: 50px;
  }
  .steps h3 {
    font-size: 20px;
  }
  .pricing {
    grid-template-columns: 40% 60%;
  }
  .price-row {
    gap: 15px;
  }
  .price-value {
    font-size: 22px;
  }
  .price-name {
    font-size: 12px;
  }
}
@media (max-width: 850px) {
  :root {
    --pad: 32px;
  }
  .header {
    height: 72px;
  }
  .desktop-nav {
    display: none;
  }
  .header-actions {
    margin-left: auto;
  }
  .hero {
    padding-top: 115px;
    min-height: 800px;
    max-height: 1000px;
  }
  .hero h1 {
    font-size: 8.2vw;
    max-width: 100%;
    letter-spacing: -0.06em;
  }
  .hero-answer {
    font-size: 6.5vw;
    margin-top: 35px;
  }
  .hero-topline {
    margin-bottom: 42px;
  }
  .hero-topline .eyebrow {
    font-size: 8px;
  }
  .hero-symbol {
    width: 31vw;
    top: 39%;
    right: var(--pad);
  }
  .symbol-coordinate {
    display: none;
  }
  .hero-bottom-content {
    margin-top: 38px;
  }
  .hero-description {
    max-width: 360px;
    font-size: 11px;
  }
  .hero-buttons {
    gap: 23px;
    margin-top: 30px;
  }
  .hero-buttons .button {
    min-width: 190px;
    font-size: 11px;
  }
  .hero-disciplines {
    display: none;
  }
  .brand > span {
    display: block;
  }
  .menu-toggle {
    display: flex;
  }
  .header-cta {
    display: none;
  }
  .story-stage {
    min-height: 670px;
  }
  .story-copy {
    width: 57%;
    margin-top: 85px;
  }
  .story h2 {
    font-size: 4.6vw;
  }
  .story-emphasis {
    font-size: 4.1vw;
    margin-top: 27px;
  }
  .task-system {
    width: 240px;
    right: var(--pad);
    top: 39%;
    gap: 8px;
  }
  .task {
    font-size: 9px;
    padding: 14px 12px;
    --x: 0px !important;
  }
  .system-core {
    padding: 16px 10px;
    gap: 10px;
  }
  .system-core img {
    width: 61px;
  }
  .system-core > span {
    font-size: 8px;
  }
  .story-resolution {
    font-size: 11px;
  }
  .story-bottom p {
    font-size: 10px;
    min-width: 240px;
  }
  .story-progress {
    margin-left: 0;
  }
  .services {
    grid-template-columns: 36% 64%;
  }
  .services-side {
    padding-top: 45px;
    padding-right: 25px;
    min-height: 650px;
  }
  .services-side h2 {
    font-size: 4.55vw;
    margin-top: 30px;
  }
  .services-side > p {
    font-size: 10px;
  }
  .service-nav {
    margin-top: 28px;
  }
  .service-nav a {
    font-size: 9px;
    gap: 8px;
  }
  .service-nav a > span:not(.i18n-label) {
    font-size: 8px;
    min-width: 13px;
  }
  .service-nav i {
    display: none;
  }
  .services-note {
    font-size: 8px;
  }
  .service-scene {
    min-height: 700px;
    padding-top: 45px;
    padding-left: 28px;
  }
  .service-scene h3 {
    font-size: 3.9vw;
  }
  .service-mode {
    display: none;
  }
  .service-description {
    font-size: 11px;
  }
  .service-tags li {
    font-size: 8px;
  }
  .service-price strong {
    font-size: 16px;
  }
  .service-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
  .service-cta {
    font-size: 10px;
    min-width: 180px;
  }
  .service-it {
    padding-left: 25px;
    padding-right: 24px;
    min-height: 730px;
  }
  .other-tasks {
    padding-left: 28px;
  }
  .other-tasks h3 {
    font-size: 5vw;
  }
  .about {
    padding-top: 55px;
  }
  .about-heading {
    margin-top: 55px;
    font-size: 7vw;
  }
  .origin-grid {
    gap: 35px;
    margin-top: 70px;
  }
  .origin-text .large-copy {
    font-size: 22px;
  }
  .origin-text > p {
    font-size: 11px;
  }
  .origin-year > span {
    font-size: 15vw;
  }
  .origin-year > span > span {
    font-size: 36px;
    gap: 10px;
  }
  .industries {
    grid-template-columns: 1fr 2.2fr;
  }
  .metrics > div {
    padding-left: 25px;
    padding-right: 20px;
  }
  .metrics p {
    font-size: 10px;
  }
  .approach {
    padding-top: 55px;
  }
  .approach-intro {
    margin-top: 50px;
    gap: 35px;
  }
  .approach-intro h2 {
    font-size: 5.8vw;
  }
  .approach-intro > p {
    font-size: 11px;
  }
  .steps {
    margin-top: 55px;
  }
  .steps li {
    padding-right: 20px;
  }
  .steps h3 {
    font-size: 18px;
  }
  .steps p {
    font-size: 10px;
  }
  .pricing {
    padding-top: 70px;
    padding-bottom: 80px;
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .pricing-heading {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .pricing-heading > .eyebrow {
    grid-column: 1/-1;
  }
  .pricing-heading h2 {
    font-size: 6vw;
    margin-bottom: 0;
  }
  .pricing-heading > p {
    align-self: end;
    justify-self: end;
  }
  .price-name {
    font-size: 13px;
  }
  .price-value {
    font-size: 28px;
  }
  .price-value.individual {
    font-size: 24px;
  }
  .contact h2 {
    font-size: 10.5vw;
  }
  .contact .section-meta > .eyebrow:last-child {
    display: none;
  }
  .contact-premise {
    margin-top: 50px;
    font-size: 16px;
  }
  .contact-bottom {
    align-items: start;
    flex-direction: column;
    gap: 26px;
  }
  .contact-bottom > p {
    font-size: 12px;
  }
  .contact-buttons {
    width: 100%;
  }
  .contact-buttons .button {
    flex: 1;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr auto;
  }
  .footer-top > p {
    font-size: 10px;
  }
  .footer-top > div {
    font-size: 9px;
  }
  .footer-bottom {
    font-size: 7px;
  }
  .footer-bottom > span:nth-child(2) {
    display: none;
  }
}
/* Mobile has its own short, vertical story, without pinning or scroll debt. */
@media (max-width: 600px) {
  :root {
    --pad: 23px;
  }
  html {
    scroll-padding-top: 86px;
  }
  .header,
  .header.is-scrolled {
    height: 70px;
    padding: 0 var(--pad);
    gap: 15px;
  }
  .brand {
    gap: 12px;
  }
  .brand img {
    width: 73px;
  }
  .brand > span {
    font-size: 7px;
    padding-left: 12px;
  }
  .header-actions {
    gap: 12px;
  }
  .language-switch {
    gap: 1px;
  }
  .language-switch button {
    font-size: 9px;
    padding: 12px 4px;
  }
  .menu-toggle {
    width: 36px;
    padding: 10px 3px;
  }
  .menu-toggle span {
    width: 26px;
  }
  .mobile-menu {
    top: 70px;
  }
  .hero {
    height: auto;
    min-height: 870px;
    max-height: none;
    padding-top: 109px;
    padding-bottom: 76px;
  }
  .hero-grid {
    top: 70px;
    background-size: 50% 100%;
  }
  .hero-topline {
    margin-bottom: 35px;
  }
  .hero-topline .eyebrow {
    font-size: 7px;
    letter-spacing: 0.08em;
  }
  .hero-topline .status-dot {
    width: 5px;
    height: 5px;
    margin-right: 7px;
    vertical-align: 1px;
  }
  .hero-index {
    display: none;
  }
  .hero h1 {
    font-size: 10.3vw;
    line-height: 1.2;
    letter-spacing: -0.065em;
  }
  .hero-answer {
    font-size: 11.6vw;
    line-height: 1.09;
    margin-top: 23px;
    color: #b6b9aa;
  }
  .hero-symbol {
    position: relative;
    top: auto;
    right: auto;
    width: 166px;
    margin: 22px 0 18px auto;
  }
  .symbol-caption {
    position: absolute;
    right: calc(100% + 14px);
    top: 57px;
    margin: 0;
    padding: 0;
    width: 145px;
    font-size: 9px;
    line-height: 1.6;
  }
  .hero-symbol svg {
    max-height: 155px;
  }
  .symbol-outline {
    opacity: 0.35;
  }
  .hero-bottom-content {
    margin-top: 8px;
  }
  .hero-description {
    font-size: 11px;
    line-height: 1.85;
    max-width: 300px;
  }
  .desktop-break {
    display: none;
  }
  .hero-buttons {
    margin-top: 24px;
    gap: 9px;
    align-items: stretch;
    flex-direction: column;
  }
  .hero-buttons .button {
    width: 100%;
    min-height: 54px;
    padding: 17px 20px;
    font-size: 11px;
  }
  .hero-buttons .text-link {
    width: 100%;
    padding: 10px 1px;
    justify-content: space-between;
    font-size: 10px;
  }
  .hero-footer {
    min-height: 59px;
    font-size: 8px;
    gap: 12px;
  }
  .scroll-link {
    gap: 12px;
    font-size: 8px;
  }
  .scroll-link span:not(.i18n-label) {
    font-size: 17px;
  }
  .story {
    height: auto;
    --scatter: 0 !important;
    --story-progress: 1 !important;
  }
  .story-stage {
    position: relative;
    top: auto;
    height: auto;
    min-height: 0;
    max-height: none;
    padding: 46px var(--pad) 34px;
    overflow: hidden;
  }
  .section-meta {
    align-items: flex-start;
  }
  .section-meta > .eyebrow {
    font-size: 8px;
    letter-spacing: 0.08em;
  }
  .story-counter {
    display: none;
  }
  .story-copy {
    width: 100%;
    margin-top: 42px;
  }
  .story h2 {
    font-size: 8.7vw;
    line-height: 1.18;
  }
  .story-emphasis {
    font-size: 8.6vw;
    line-height: 1.17;
    margin-top: 26px;
  }
  .story-resolution {
    font-size: 11px;
    margin-top: 25px;
  }
  .task-system {
    position: relative;
    top: auto;
    right: auto;
    margin: 50px 0 0;
    width: 100%;
    height: auto;
    gap: 8px;
  }
  .task {
    font-size: 10px;
    padding: 14px;
    transform: none;
    will-change: auto;
  }
  .system-grid {
    inset: -16px;
  }
  .system-core {
    margin-top: 4px;
    padding: 18px 15px;
    opacity: 1;
    transform: none;
  }
  .system-core img {
    width: 82px;
  }
  .system-core > span {
    font-size: 10px;
  }
  .story-bottom {
    position: relative;
    inset: auto;
    margin-top: 33px;
    padding-top: 25px;
    gap: 20px;
  }
  .story-bottom p {
    font-size: 10px;
    min-width: 0;
    flex: 1;
  }
  .story-progress {
    display: none;
  }
  .round-link {
    height: 42px;
    width: 42px;
    flex-shrink: 0;
  }
  .services {
    padding: 0 var(--pad);
    display: block;
  }
  .services-side {
    position: static;
    min-height: 0;
    height: auto;
    max-height: none;
    padding: 47px 0 32px;
    display: block;
  }
  .services-side > .eyebrow {
    font-size: 8px;
  }
  .services-side h2 {
    font-size: 12vw;
    margin-top: 28px;
    line-height: 1.07;
  }
  .services-side h2 br:nth-child(2) {
    display: none;
  }
  .services-side > p {
    font-size: 11px;
    line-height: 1.85;
    margin-top: 23px;
  }
  .service-nav {
    display: flex;
    flex-direction: row;
    overflow: auto;
    gap: 7px;
    margin: 25px calc(var(--pad) * -1) 0;
    padding: 0 var(--pad) 10px;
    max-width: none;
    scrollbar-width: thin;
    scrollbar-color: #a5ad97 transparent;
  }
  .service-nav a {
    padding: 10px 12px;
    white-space: nowrap;
    border: 1px solid var(--line-dark);
    font-size: 9px;
    gap: 7px;
    min-height: 37px;
  }
  .service-nav a.is-active {
    background: var(--ink);
    color: var(--paper);
    border-color: var(--ink);
  }
  .service-nav a.is-active > span {
    color: #ef7053;
  }
  .services-note {
    display: none;
  }
  .service-scenes {
    border-left: 0;
  }
  .service-scene {
    padding: 33px 0 35px;
    min-height: 0;
    scroll-margin-top: 85px;
    border-top: 1px solid var(--line-dark);
    border-bottom: 0;
  }
  .service-top > .eyebrow {
    font-size: 9px;
  }
  .service-mode {
    display: block;
    font-size: 8px;
  }
  .service-art {
    height: 138px;
    transform: scale(0.85);
    margin: 12px 0 29px;
  }
  .service-scene h3 {
    font-size: 8.8vw;
    line-height: 1.16;
    margin-bottom: 20px;
    letter-spacing: -0.05em;
  }
  .service-description {
    font-size: 11px;
    line-height: 1.85;
    max-width: 100%;
  }
  .service-tags {
    gap: 5px 15px;
    margin: 20px 0 27px;
  }
  .service-tags li {
    font-size: 8px;
    padding: 7px 0;
  }
  .service-bottom {
    flex-direction: row;
    align-items: center;
    gap: 12px;
    padding-top: 6px;
    flex-wrap: wrap;
  }
  .service-price {
    font-size: 9px;
  }
  .service-price strong {
    font-size: 15px;
  }
  .service-price > span {
    font-size: 9px;
  }
  .service-cta {
    font-size: 8px;
    min-width: 0;
    gap: 12px;
    flex: 0 1 auto;
    padding: 9px 0;
    line-height: 1.6;
  }
  .service-cta > span:not(.i18n-label) {
    font-size: 18px;
  }
  .service-it {
    margin-left: calc(var(--pad) * -1);
    margin-right: calc(var(--pad) * -1);
    padding: 34px var(--pad) 38px;
    min-height: 0;
  }
  .service-it .service-top {
    padding-right: 0;
  }
  .service-it .service-bottom {
    margin-right: 0;
  }
  .it-visual {
    height: 145px;
    margin: 18px 0 28px;
  }
  .it-node {
    font-size: 7px;
    padding: 10px 8px;
    top: calc(50% - 15px);
  }
  .service-it h3 {
    font-size: 8.6vw;
  }
  .other-tasks {
    padding: 35px 0 50px;
    border-top: 1px solid var(--line-dark);
  }
  .other-tasks > .eyebrow {
    font-size: 8px;
  }
  .other-tasks h3 {
    font-size: 11vw;
    margin: 26px 0 18px;
  }
  .other-tasks p {
    font-size: 11px;
  }
  .other-tasks .text-link {
    font-size: 11px;
    min-width: 190px;
  }
  .about {
    padding: 43px var(--pad) 43px;
  }
  .about .section-meta > .eyebrow:last-child {
    display: none;
  }
  .about-heading {
    font-size: 9.6vw;
    line-height: 1.17;
    margin-top: 38px;
  }
  .origin-grid {
    display: flex;
    flex-direction: column;
    gap: 36px;
    margin-top: 42px;
  }
  .origin-year > span {
    font-size: 33vw;
    gap: 22px;
  }
  .origin-year > span > span {
    font-size: 44px;
    margin-top: 0;
  }
  .origin-year > p {
    font-size: 9px;
    margin-top: 9px;
  }
  .origin-text {
    padding-top: 0;
    max-width: 100%;
  }
  .origin-text .large-copy {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .origin-text > p {
    font-size: 11px;
  }
  .industries {
    display: block;
    margin-top: 22px;
    padding: 23px 0;
  }
  .industries > .eyebrow {
    font-size: 8px;
  }
  .industries > div {
    margin-top: 18px;
    gap: 11px 18px;
  }
  .industries > div > span {
    font-size: 9px;
  }
  .metrics {
    margin-top: 31px;
    gap: 0;
  }
  .metrics > div {
    padding: 0 10px 0 14px;
  }
  .metrics strong {
    font-size: 15.5vw;
  }
  .metrics strong > span {
    margin-left: 2px;
  }
  .metrics p {
    font-size: 8px;
    line-height: 1.65;
    margin-top: 13px;
    max-width: 85px;
  }
  .approach {
    padding: 42px var(--pad) 0;
  }
  .approach .section-meta > .eyebrow:last-child {
    display: none;
  }
  .approach-intro {
    display: block;
    margin-top: 35px;
  }
  .approach-intro h2 {
    font-size: 10vw;
    line-height: 1.12;
  }
  .approach-intro > p {
    max-width: 100%;
    margin-top: 26px;
    font-size: 11px;
    line-height: 1.85;
  }
  .steps {
    grid-template-columns: 1fr 1fr;
    gap: 33px 20px;
    margin-top: 39px;
  }
  .steps li {
    padding: 18px 0 0;
  }
  .steps h3 {
    font-size: 19px;
    margin-top: 19px;
    line-height: 1.3;
  }
  .steps p {
    font-size: 10px;
    margin-top: 13px;
    max-width: 150px;
  }
  .step-number {
    font-size: 9px;
  }
  .approach-footer {
    margin-top: 36px;
    padding: 20px 0;
    flex-direction: column;
    align-items: start;
    gap: 9px;
  }
  .approach-footer > span {
    font-size: 10px;
  }
  .approach-footer .text-link {
    font-size: 10px;
    gap: 30px;
  }
  .pricing {
    padding: 45px var(--pad) 50px;
    gap: 30px;
  }
  .pricing-heading {
    display: block;
  }
  .pricing-heading > .eyebrow {
    font-size: 8px;
  }
  .pricing-heading h2 {
    font-size: 10.5vw;
    margin: 26px 0 20px;
  }
  .pricing-heading > p {
    font-size: 10px;
  }
  .price-row {
    padding: 23px 0;
    grid-template-columns: 1fr 1fr 15px;
    gap: 10px;
  }
  .price-name {
    font-size: 10px;
  }
  .price-value {
    font-size: 21px;
  }
  .price-value small {
    font-size: 8px;
  }
  .price-value small:last-child {
    font-size: 8px;
    margin-left: 14px;
  }
  .price-value.individual {
    font-size: 18px;
  }
  .price-row > span:last-child {
    font-size: 18px;
  }
  .pricing-note {
    font-size: 9px;
    line-height: 1.85;
    margin-top: 22px;
  }
  .contact {
    padding: 36px var(--pad) 38px;
  }
  .contact-premise {
    font-size: 13px;
    line-height: 1.7;
    margin-top: 40px;
  }
  .contact h2 {
    font-size: 11.6vw;
    line-height: 1.12;
    margin: 27px 0 32px;
    letter-spacing: -0.065em;
  }
  .contact-bottom {
    gap: 25px;
    padding-top: 25px;
  }
  .contact-bottom > p {
    font-size: 11px;
  }
  .contact-buttons {
    flex-direction: column;
    gap: 10px;
  }
  .contact-buttons .button {
    min-height: 53px;
    font-size: 11px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .footer {
    padding: 31px var(--pad) 0;
  }
  .footer-top {
    grid-template-columns: 1fr auto;
    gap: 25px;
  }
  .footer-top > p {
    font-size: 11px;
  }
  .footer-top > div {
    grid-row: 2;
    grid-column: 1/-1;
    font-size: 9px;
  }
  .back-top {
    font-size: 9px;
    gap: 16px;
  }
  .footer-logo {
    margin: 39px 0 26px;
  }
  .footer-bottom {
    font-size: 7px;
    line-height: 1.7;
    padding: 18px 0;
    gap: 20px;
    align-items: start;
  }
  .footer-bottom > span:first-child {
    max-width: 200px;
  }
  .floating-contact {
    display: flex;
    bottom: 15px;
    right: 15px;
    width: 47px;
    height: 47px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }
  .floating-contact > span {
    display: none;
  }
  .floating-contact svg {
    width: 23px;
  }
  .contact-dialog {
    padding: 35px 25px;
    width: calc(100% - 28px);
    max-width: none;
    max-height: calc(100svh - 28px);
  }
  dialog h2 {
    font-size: 36px;
    margin-top: 27px;
  }
  .dialog-close {
    right: 8px;
    top: 8px;
  }
  .dialog-intro {
    font-size: 11px;
  }
  .contact-dialog form {
    margin-top: 23px;
  }
  .contact-dialog select,
  .contact-dialog textarea {
    font-size: 16px;
    padding: 11px;
  }
  .contact-dialog label {
    font-size: 10px;
  }
  .dialog-submit {
    font-size: 11px;
  }
  .contact-availability {
    font-size: 10px;
  }
  .language-dialog {
    padding: 35px 25px;
  }
  .language-dialog h2 {
    font-size: 28px;
  }
  .language-dialog > p {
    font-size: 11px;
  }
  .language-dialog .button {
    width: 100%;
    font-size: 10px;
  }
}
@media (max-width: 360px) {
  :root {
    --pad: 18px;
  }
  .brand > span {
    display: none;
  }
  .hero {
    min-height: 820px;
  }
  .hero h1 {
    font-size: 10.3vw;
  }
  .hero-answer {
    font-size: 12vw;
  }
  .hero-symbol {
    width: 145px;
    margin-top: 19px;
    margin-bottom: 17px;
  }
  .symbol-caption {
    width: 125px;
    right: calc(100% + 8px);
    font-size: 8px;
    top: 50px;
  }
  .hero-description {
    font-size: 10px;
  }
  .hero-footer > span {
    max-width: 130px;
    line-height: 1.6;
  }
  .service-scene h3 {
    font-size: 8.8vw;
  }
  .service-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
  .price-value {
    font-size: 18px;
  }
  .price-value.individual {
    font-size: 16px;
  }
  .price-name {
    font-size: 9px;
  }
  .contact h2 {
    font-size: 11.7vw;
  }
  .steps h3 {
    font-size: 17px;
  }
  .metrics p {
    font-size: 7px;
  }
  .language-dialog h2 {
    font-size: 24px;
  }
}
@media (max-height: 760px) and (min-width: 601px) {
  .story-stage {
    padding-top: 100px;
  }
  .story-copy {
    margin-top: 37px;
  }
  .story h2 {
    font-size: 3.6vw;
  }
  .story-emphasis {
    font-size: 3.2vw;
    margin-top: 22px;
  }
  .story-resolution {
    font-size: 11px;
    margin-top: 20px;
  }
  .task-system {
    top: 35%;
  }
  .services-side {
    padding-top: 37px;
    min-height: 620px;
  }
  .services-side h2 {
    margin-top: 26px;
  }
  .service-nav {
    margin-top: 24px;
  }
  .service-nav a {
    padding: 12px 0;
  }
}

/* Reading text stays comfortable; small type is reserved for annotations. */
.hero {
  min-height: clamp(860px, 60vw, 1080px);
}
.hero-description,
.service-description,
.origin-text > p,
.approach-intro > p {
  font-size: 14px;
  line-height: 1.85;
}
.desktop-nav a {
  font-size: 12px;
}
.header-cta {
  font-size: 11px;
}
.services-side > p,
.other-tasks p,
.steps p,
.pricing-heading > p,
.contact-bottom > p {
  font-size: 13px;
  line-height: 1.85;
}
.service-nav a {
  font-size: 11px;
}
.service-cta,
.hero-buttons .text-link,
.approach-footer .text-link {
  font-size: 12px;
}
.service-tags li {
  font-size: 10px;
}
.pricing-note,
.industries > div > span,
.metrics p,
.footer-top > div {
  font-size: 11px;
}
.story-resolution {
  font-size: 14px;
}
.story-bottom p {
  font-size: 12px;
}
.step-number {
  color: #606657;
}
.contact .section-meta {
  color: var(--ink-deep);
}
.price-name {
  font-size: 14px;
}
.contact-availability,
.dialog-intro {
  font-size: 13px;
}
.form-note,
.contact-dialog label,
.save-task {
  font-size: 11px;
}
.dialog-phone {
  display: flex;
  margin-top: 14px;
  font-size: 13px;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.text-link:hover,
.desktop-nav a:hover,
.desktop-nav a[aria-current="location"] {
  color: #ef7053;
}
.section-light .text-link:hover,
dialog .text-link:hover {
  color: #ad3e25;
}
.contact button:focus-visible {
  outline-color: var(--ink-deep);
}
@media (max-width: 1150px) and (min-width: 601px) {
  .service-nav a {
    font-size: 10px;
  }
  .service-description {
    font-size: 13px;
  }
  .service-cta {
    font-size: 11px;
  }
  .services-side > p {
    font-size: 12px;
  }
  .story-bottom p {
    font-size: 11px;
  }
  .story-resolution {
    font-size: 12px;
  }
}
@media (max-width: 850px) and (min-width: 601px) {
  .story-resolution {
    font-size: 11px;
  }
  .story-bottom p {
    font-size: 10px;
  }
  .service-nav a {
    font-size: 9px;
  }
  .service-scene {
    min-height: 750px;
  }
  .service-it {
    min-height: 800px;
  }
  .service-description {
    font-size: 13px;
  }
  .service-tags li {
    font-size: 9px;
  }
  .hero-description {
    max-width: 370px;
  }
}
@media (max-width: 600px) {
  .hero {
    min-height: 890px;
  }
  .hero-description,
  .service-description,
  .origin-text > p,
  .approach-intro > p,
  .other-tasks p {
    font-size: 14px;
  }
  .hero-buttons .text-link,
  .hero-buttons .button,
  .service-cta,
  .contact-buttons .button {
    font-size: 12px;
  }
  .service-nav a {
    font-size: 11px;
    min-height: 42px;
  }
  .services-side > p {
    font-size: 13px;
  }
  .service-tags li {
    font-size: 10px;
  }
  .service-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
  .service-cta {
    min-height: 42px;
  }
  .service-price strong {
    font-size: 18px;
  }
  .service-mode {
    font-size: 9px;
  }
  .other-tasks .text-link {
    font-size: 12px;
  }
  .metrics p {
    font-size: 10px;
    max-width: 100px;
  }
  .industries > div > span {
    font-size: 11px;
  }
  .story-resolution {
    font-size: 12px;
  }
  .story-bottom p {
    font-size: 11px;
  }
  .steps p {
    font-size: 12px;
  }
  .price-name {
    font-size: 12px;
  }
  .pricing-note {
    font-size: 11px;
  }
  .contact-premise {
    font-size: 15px;
  }
  .footer-top > div {
    font-size: 11px;
  }
  .contact-availability,
  .dialog-intro {
    font-size: 12px;
  }
  .dialog-submit {
    font-size: 12px;
  }
  .hero-description {
    max-width: 100%;
  }
  .contact-bottom > p {
    font-size: 13px;
  }
}
@media (max-width: 360px) {
  .hero {
    min-height: 875px;
  }
  .hero-description {
    font-size: 13px;
  }
  .hero-symbol {
    margin-top: 22px;
  }
  .metrics p {
    font-size: 9px;
  }
  .price-name {
    font-size: 11px;
  }
  .service-tags li {
    font-size: 9px;
  }
  .service-mode {
    font-size: 8px;
  }
}

/* SVG arrows keep the same geometry and color in Safari and Chrome. */
.icon-arrow {
  display: inline-block;
  width: 1em;
  height: 1em;
  max-width: none;
  flex: 0 0 auto;
  vertical-align: -0.13em;
  color: inherit;
  stroke: currentColor;
}
.i18n-label {
  min-width: 0;
}
.service-nav .i18n-label {
  flex: 1;
}
.origin-year > span > .accent .icon-arrow {
  width: 1em;
  height: 1em;
}
.footer-bottom {
  flex-wrap: wrap;
}
.language-switch button {
  min-height: 38px;
  font-size: 10px;
  padding-inline: 5px;
}

/* The first visit begins with a deliberate, bilingual language choice. */
dialog.language-gate {
  inset: 0;
  width: 100%;
  max-width: none;
  height: 100vh;
  height: 100dvh;
  max-height: none;
  margin: 0;
  padding: 40px var(--pad) 34px;
  background: var(--ink);
  color: var(--paper);
  overscroll-behavior: contain;
}
.language-gate-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  min-height: 60px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 25px;
}
.language-gate-logo {
  width: 96px;
  height: auto;
}
.language-gate-brand {
  font-size: 10px;
  letter-spacing: 0.12em;
  color: #bbc1af;
}
.language-gate h2.language-gate-prompt {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin: clamp(35px, 8vh, 90px) 0 20px;
  color: #bbc1af;
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0;
}
.language-choices {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-block: 1px solid var(--line);
}
.language-choice {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-content: center;
  gap: 20px;
  padding: 35px 50px 38px 0;
  min-height: clamp(260px, 41vh, 440px);
  text-align: left;
  transition: color 0.25s ease;
}
.language-choice + .language-choice {
  padding-left: 60px;
  border-left: 1px solid var(--line);
}
.language-choice:first-child {
  color: #ef7053;
}
.language-choice:hover {
  color: #ef7053;
}
.language-choice:focus-visible {
  outline-offset: -9px;
}
.language-choice-code {
  display: block;
  grid-column: 1 / -1;
  font-size: clamp(85px, 13.5vw, 225px);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 1.05;
}
.language-choice-name {
  font-size: 15px;
  line-height: 1.6;
}
.language-option-arrow {
  font-size: 32px;
  align-self: center;
}
.language-gate p.language-gate-foot {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px 24px;
  font-size: 11px;
  line-height: 1.8;
  color: #aab29b;
  margin-top: 28px;
}
@media (max-width: 850px) {
  .language-choice + .language-choice {
    padding-left: 32px;
  }
  .language-choice {
    padding-right: 30px;
  }
}
@media (max-width: 600px) {
  dialog.language-gate {
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .language-gate-top {
    min-height: 50px;
    padding-bottom: 20px;
    gap: 18px;
  }
  .language-gate-logo {
    width: 77px;
  }
  .language-gate-brand {
    font-size: 7px;
    letter-spacing: 0.08em;
    max-width: 140px;
    text-align: right;
  }
  .language-gate h2.language-gate-prompt {
    margin-top: 34px;
    font-size: 12px;
    gap: 15px;
  }
  .language-choices {
    grid-template-columns: 1fr;
  }
  .language-choice,
  .language-choice + .language-choice {
    min-height: 0;
    padding: 27px 12px 25px;
    gap: 9px;
    border-left: 0;
  }
  .language-choice + .language-choice {
    border-top: 1px solid var(--line);
  }
  .language-choice-code {
    font-size: clamp(78px, 23vw, 128px);
  }
  .language-choice-name {
    font-size: 13px;
  }
  .language-option-arrow {
    font-size: 25px;
  }
  .language-gate p.language-gate-foot {
    flex-direction: column;
    gap: 2px;
    margin-top: 22px;
    font-size: 10px;
  }
  .language-switch button {
    font-size: 9px;
    padding-inline: 4px;
  }
  html[lang="kk"] .hero-footer > span {
    max-width: 185px;
    line-height: 1.7;
  }
  html[lang="kk"] .contact h2 {
    font-size: 10.8vw;
  }
  .footer-bottom #motion-toggle {
    order: 3;
    flex-basis: 100%;
    font-size: 10px;
  }
}
@media (max-height: 520px) and (min-width: 601px) {
  dialog.language-gate {
    padding-top: 18px;
    padding-bottom: 18px;
  }
  .language-gate-top {
    min-height: 40px;
    padding-bottom: 15px;
  }
  .language-gate h2.language-gate-prompt {
    margin-top: 20px;
  }
  .language-choice {
    min-height: 185px;
    padding-top: 15px;
    padding-bottom: 15px;
    gap: 8px;
  }
  .language-choice-code {
    font-size: 90px;
  }
  .language-gate p.language-gate-foot {
    margin-top: 16px;
  }
}
