@font-face {
  font-family: 'Golos Text';
  src: url('/assets/fonts/golos-text-regular.woff2') format('woff2');
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  unicode-range: U+0000-024F, U+0300-052F, U+1C80-1C8F, U+1E00-1EFF, U+2000-206F, U+20A0-20CF, U+2113, U+2116, U+2122, U+2190-21FF, U+2212, U+2215, U+2DE0-2DFF, U+A640-A69F, U+A720-A7FF, U+FE2E-FE2F, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Golos Text';
  src: url('/assets/fonts/golos-text-medium.woff2') format('woff2');
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  unicode-range: U+0000-024F, U+0300-052F, U+1C80-1C8F, U+1E00-1EFF, U+2000-206F, U+20A0-20CF, U+2113, U+2116, U+2122, U+2190-21FF, U+2212, U+2215, U+2DE0-2DFF, U+A640-A69F, U+A720-A7FF, U+FE2E-FE2F, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'IBM Plex Mono';
  src: url('/assets/fonts/ibm-plex-mono-regular-cyrillic.woff2') format('woff2');
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  unicode-range: U+0400-045F, U+0460-052F, U+1C80-1C88, U+20B4, U+2116, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

@font-face {
  font-family: 'IBM Plex Mono';
  src: url('/assets/fonts/ibm-plex-mono-regular-latin.woff2') format('woff2');
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'IBM Plex Mono';
  src: url('/assets/fonts/ibm-plex-mono-medium-cyrillic.woff2') format('woff2');
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  unicode-range: U+0400-045F, U+0460-052F, U+1C80-1C88, U+20B4, U+2116, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

@font-face {
  font-family: 'IBM Plex Mono';
  src: url('/assets/fonts/ibm-plex-mono-medium-latin.woff2') format('woff2');
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --paper: #EFEBE3;
  --paper-2: #E7E1D6;
  --ink: #26231E;
  --ink-soft: #5C574E;
  --muted: #6E695E;
  --clay: #9C5B3E;
  --clay-soft: #8A4F35;
  --line: rgba(38, 35, 30, .16);
  --line-soft: rgba(38, 35, 30, .09);
  --field: rgba(38, 35, 30, .30);
  --resp-bg: #26231E;
  --resp-fg: #EAE5DB;
  --resp-soft: #ABA394;
  --resp-line: rgba(234, 229, 219, .18);
  --resp-accent: #D19873;
  --resp-border: transparent;
  --btn-bg: #26231E;
  --btn-fg: #EFEBE3;
  --axis: rgba(38, 35, 30, .16);
  --axis-fill: #9C5B3E;
  --node: #EFEBE3;
  --node-ring: rgba(38, 35, 30, .32);
  --axis-x: clamp(18px, 3vw, 38px);
  color-scheme: light;
  font-family: 'Golos Text', system-ui, sans-serif;
  font-synthesis: none;
  background: var(--paper);
  color: var(--ink);
}

:root[data-theme='dark'] {
  --paper: #211E1A;
  --paper-2: #2A251F;
  --ink: #E9E4DA;
  --ink-soft: #B6AFA1;
  --muted: #948C7E;
  --clay: #C68E6B;
  --clay-soft: #CE976F;
  --line: rgba(233, 228, 218, .16);
  --line-soft: rgba(233, 228, 218, .09);
  --field: rgba(233, 228, 218, .30);
  --resp-bg: #14110C;
  --resp-fg: #EDE8DE;
  --resp-soft: #B2AA9B;
  --resp-line: rgba(237, 232, 222, .20);
  --resp-accent: #D69C72;
  --resp-border: rgba(233, 228, 218, .14);
  --btn-bg: #E9E4DA;
  --btn-fg: #211E1A;
  --axis: rgba(233, 228, 218, .16);
  --axis-fill: #C68E6B;
  --node: #211E1A;
  --node-ring: rgba(233, 228, 218, .30);
  color-scheme: dark;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --paper: #211E1A;
    --paper-2: #2A251F;
    --ink: #E9E4DA;
    --ink-soft: #B6AFA1;
    --muted: #948C7E;
    --clay: #C68E6B;
    --clay-soft: #CE976F;
    --line: rgba(233, 228, 218, .16);
    --line-soft: rgba(233, 228, 218, .09);
    --field: rgba(233, 228, 218, .30);
    --resp-bg: #14110C;
    --resp-fg: #EDE8DE;
    --resp-soft: #B2AA9B;
    --resp-line: rgba(237, 232, 222, .20);
    --resp-accent: #D69C72;
    --resp-border: rgba(233, 228, 218, .14);
    --btn-bg: #E9E4DA;
    --btn-fg: #211E1A;
    --axis: rgba(233, 228, 218, .16);
    --axis-fill: #C68E6B;
    --node: #211E1A;
    --node-ring: rgba(233, 228, 218, .30);
    color-scheme: dark;
  }
}

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

html {
  min-width: 320px;
  scroll-behavior: smooth;
  background-color: var(--paper);
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background-color: var(--paper);
  color: var(--ink);
}

button,
a {
  font: inherit;
}

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

[hidden] {
  display: none !important;
}

:focus-visible {
  outline: 3px solid var(--clay);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  padding: 14px clamp(22px, 6vw, 72px);
  border-bottom: 1px solid var(--line-soft);
  background-color: var(--paper);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1324px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 14px;
}

.site-nav,
.brand,
.header-controls {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.brand img {
  display: block;
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.header-controls {
  flex-wrap: wrap;
  gap: clamp(12px, 2vw, 24px);
}

.site-nav {
  gap: clamp(12px, 1.6vw, 22px);
}

.site-nav__link {
  color: var(--muted);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: color .18s ease;
}

.site-nav__link:hover {
  color: var(--clay-soft);
}

.language-switch {
  display: flex;
  overflow: hidden;
  border: 1px solid var(--field);
  border-radius: 3px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 500;
}

.language-switch__item {
  padding: 5px 10px;
  border: 0;
  line-height: 18px;
}

.language-switch [aria-current='page'] {
  background: var(--btn-bg);
  color: var(--btn-fg);
}

.language-switch a {
  background: transparent;
  color: var(--ink-soft);
  cursor: pointer;
  transition: opacity .18s ease;
}

.language-switch a:hover {
  opacity: .68;
}

.language-switch a:focus-visible {
  outline-offset: -3px;
}

.theme-toggle,
.menu-toggle {
  width: 30px;
  height: 30px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--field);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.theme-toggle {
  display: grid;
  font-size: 13px;
  line-height: 1;
  transition: opacity .18s ease;
}

.theme-toggle:hover {
  opacity: .68;
}

.menu-toggle{display:none}

.page-shell {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
}

.page-shell::before {
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: 0;
  left: var(--axis-x);
  width: 1px;
  background: var(--axis);
  content: '';
}

.page-axis-fill {
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: 0;
  left: var(--axis-x);
  width: 1px;
  background: var(--axis-fill);
  opacity: .55;
  pointer-events: none;
  transform: scaleY(0);
  transform-origin: top;
  will-change: transform;
}

.hero {
  position: relative;
  z-index: 1;
  padding: clamp(64px, 10vw, 116px) clamp(22px, 6vw, 72px) clamp(52px, 8vw, 92px) clamp(44px, 7vw, 92px);
  scroll-margin-top: 70px;
}

.hero__axis-node {
  position: absolute;
  top: clamp(70px, 10vw, 120px);
  left: var(--axis-x);
  width: 9px;
  height: 9px;
  border: 1px solid var(--node-ring);
  border-radius: 50%;
  background: var(--node);
  transform: translateX(-50%);
}

.hero__layout {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: clamp(30px, 5vw, 60px);
}

.hero__copy {
  min-width: 0;
  max-width: 660px;
  flex: 1 1 440px;
}

h1 {
  max-width: 650px;
  margin: 0 0 clamp(20px, 3vw, 30px);
  font-size: clamp(31px, 5.3vw, 56px);
  font-weight: 500;
  letter-spacing: -.02em;
  line-height: 1.13;
  text-wrap: balance;
}

.hero__lead {
  max-width: 580px;
  margin: 0 0 clamp(26px, 4vw, 42px);
  background-color: var(--paper);
  color: var(--ink-soft);
  font-size: clamp(16px, 2vw, 17.5px);
  line-height: 1.65;
  text-wrap: pretty;
}

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

.button{display:inline-block;padding:15px 30px;border-radius:3px;font-size:15px;line-height:1.3;transition:background-color .18s,border-color .18s}
.button--primary{border:1px solid var(--btn-bg);background-color:var(--btn-bg);color:var(--btn-fg);font-weight:500}
.button--primary:hover{border-color:var(--clay-soft);background-color:var(--clay-soft)}
.button--secondary{border:1px solid var(--field);background-color:var(--paper);color:var(--ink)}
.button--secondary:hover{border-color:var(--clay);background-color:var(--paper-2)}

.hero__note {
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.hero__steps-wrap {
  min-width: 200px;
  padding-top: clamp(2px, 1vw, 10px);
  flex: 0 1 280px;
}

.hero__steps {
  position: relative;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  gap: clamp(16px, 2.2vw, 24px);
  list-style: none;
}

.hero__steps::before {
  position: absolute;
  top: 6px;
  bottom: 6px;
  left: 5px;
  width: 1px;
  background: var(--line);
  content: '';
}

.hero__step{position:relative;display:flex;align-items:flex-start;gap:16px;color:var(--muted);font-family:'IBM Plex Mono',monospace;font-size:12px;letter-spacing:.05em;line-height:1.4}
.hero__step-node{z-index:1;width:11px;height:11px;margin-top:2px;flex:0 0 auto;border:1px solid var(--node-ring);border-radius:50%;background:var(--paper);animation:km-node-pass .25s .05s both}
.hero__step:nth-child(2) .hero__step-node{animation-delay:.35s}
.hero__step:nth-child(3) .hero__step-node{animation-delay:.65s}
.hero__step--final .hero__step-node{border-color:var(--clay);animation-delay:.95s;animation-fill-mode:backwards}

.content-section {
  position: relative;
  padding: clamp(52px, 8vw, 84px) clamp(22px, 6vw, 72px) clamp(52px, 8vw, 84px) clamp(44px, 7vw, 92px);
  border-top: 1px solid var(--line-soft);
}

.formats {
  scroll-margin-top: 70px;
}

.products {
  scroll-margin-top: 70px;
}

.content-section__axis-node {
  position: absolute;
  top: clamp(56px, 8vw, 86px);
  left: var(--axis-x);
  width: 9px;
  height: 9px;
  border: 1px solid var(--node-ring);
  border-radius: 50%;
  background: var(--node);
  box-sizing: border-box;
  transform: translateX(-50%);
}

[data-node]{transition:background .5s ease}
.is-axis-filled{background:var(--axis-node-fill,var(--axis-fill))}

.content-section__axis-tick {
  position: absolute;
  top: clamp(60px, 8vw, 90px);
  left: var(--axis-x);
  width: clamp(14px, 2.2vw, 24px);
  height: 1px;
  background: var(--line);
}

.content-section__layout {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(16px, 4vw, 60px);
}

.content-section__caption {
  width: 210px;
  max-width: 100%;
  margin: 0;
  flex: 0 0 auto;
  color: var(--clay-soft);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .12em;
  line-height: 1.5;
  text-transform: uppercase;
}

.content-section__body {
  min-width: 0;
  flex: 1 1 440px;
}

.content-section h2 {
  margin: 0 0 clamp(28px, 4vw, 42px);
  font-size: clamp(23px, 3.2vw, 32px);
  font-weight: 500;
  letter-spacing: -.015em;
  line-height: 1.25;
  text-wrap: balance;
}

.formats .content-section__body {
  max-width: 720px;
}

.formats__list {
  margin: 0;
}

.formats__item {
  padding: clamp(19px, 2.8vw, 26px) 0;
  border-top: 1px solid var(--line);
}

.formats__item h3,
.formats__item p {
  margin: 0;
}

.formats__item h3 {
  margin-bottom: 8px;
  font-size: clamp(18px, 2.2vw, 20px);
  font-weight: 500;
  line-height: 1.35;
}

.formats__item p {
  max-width: 620px;
  color: var(--ink-soft);
  font-size: 14.5px;
  line-height: 1.65;
  text-wrap: pretty;
}

.formats__secondary {
  margin: 0;
  padding-top: clamp(22px, 3vw, 30px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
  text-wrap: pretty;
}

.work-method .content-section__body {
  max-width: 700px;
}

.work-method__lead {
  max-width: 650px;
  margin: 0 0 clamp(30px, 5vw, 48px);
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.7;
  text-wrap: pretty;
}

.principles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: clamp(24px, 4vw, 42px);
}

.principles__item h3,
.principles__item p {
  margin: 0;
}

.principles__item h3 {
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
}

.principles__item p {
  color: var(--ink-soft);
  font-size: 14.5px;
  line-height: 1.65;
  text-wrap: pretty;
}

.work-method__closing {
  margin: clamp(34px, 5vw, 52px) 0 0;
  padding-top: clamp(24px, 3vw, 32px);
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.65;
  text-wrap: pretty;
}

.responsibility {
  --axis-node-fill:var(--resp-accent);--node:var(--resp-bg);
  z-index: 1;
  padding-top: clamp(56px, 8vw, 88px);
  padding-bottom: clamp(56px, 8vw, 88px);
  border-top: 1px solid var(--resp-border);
  border-bottom: 1px solid var(--resp-border);
  background: var(--resp-bg);
  color: var(--resp-fg);
}

.responsibility__axis-segment {
  position: absolute;
  z-index: 0;
  top: -1px;
  bottom: -1px;
  left: var(--axis-x);
  width: 1px;
  background: var(--resp-line);
  pointer-events: none;
}

.responsibility__axis-segment-fill {
  position: absolute;
  inset: 0;
  background: var(--resp-accent);
  transform: scaleY(var(--axis-segment-progress, 0));
  transform-origin: top;
  will-change: transform;
}

.responsibility .content-section__axis-node {
  z-index: 1;
  top: clamp(60px, 8vw, 90px);
  border-color: var(--resp-line);
}

.responsibility .content-section__caption {
  color: var(--resp-accent);
}

.responsibility .content-section__body {
  max-width: 680px;
}

.responsibility__lead {
  margin: 0;
  padding-bottom: clamp(28px, 4vw, 40px);
  border-bottom: 1px solid var(--resp-line);
  color: var(--resp-fg);
  font-size: clamp(16px, 2vw, 17.5px);
  line-height: 1.7;
  text-wrap: pretty;
}

.responsibility__columns {
  display: flex;
  padding-top: clamp(28px, 4vw, 40px);
  flex-wrap: wrap;
  gap: clamp(24px, 4vw, 44px);
}

.responsibility__column {
  min-width: 0;
  margin: 0;
  flex: 1 1 260px;
  color: var(--resp-soft);
  font-size: 14.5px;
  line-height: 1.7;
  text-wrap: pretty;
}

.facts .content-section__body,
.experience .content-section__body {
  max-width: 720px;
}

.facts h2 {
  margin-bottom: clamp(6px, 1vw, 10px);
  line-height: 1.3;
}

.facts__item {
  padding: clamp(20px, 3vw, 26px) 0;
  border-bottom: 1px solid var(--line);
}

.facts__item:last-child{border-bottom:0}

.facts__value,
.facts__description {
  margin: 0;
}

.facts__value {
  font-size: clamp(22px, 3.3vw, 34px);
  font-weight: 500;
  letter-spacing: -.02em;
  line-height: 1.25;
  text-wrap: balance;
}

.facts__description {
  max-width: 620px;
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.6;
  text-wrap: pretty;
}

.products .content-section__body {
  max-width: 760px;
}

.products__intro {
  max-width: 620px;
  margin: 0 0 clamp(26px, 4vw, 38px);
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.7;
  text-wrap: pretty;
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(26px, 4vw, 44px);
}

.products__card {
  padding-top: 18px;
  border-top: 2px solid var(--ink);
  transition: border-color .5s;
}

.products__name,
.products__description {
  margin: 0;
}

.products__name {
  margin-bottom: 5px;
  font-size: 20px;
  font-weight: 500;
}

.products__meta {
  margin-bottom: 13px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10.5px;
  letter-spacing: .04em;
}

.products__link {
  display: inline-block;
  color: var(--clay-soft);
}

.products__status {
  display: block;
  color: var(--muted);
}

.products__description {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.65;
  text-wrap: pretty;
}

.experience h2 {
  margin-bottom: clamp(16px, 2.6vw, 24px);
  line-height: 1.3;
}

.experience__lead {
  max-width: 620px;
  margin: 0 0 clamp(26px, 4vw, 38px);
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.7;
  text-wrap: pretty;
}

.experience__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(22px, 3vw, 34px);
}

.experience__item {
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.experience__item h3,
.experience__item p {
  margin: 0;
}

.experience__item h3 {
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
}

.experience__item p {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.65;
  text-wrap: pretty;
}

.about__layout {
  align-items: flex-start;
  gap: clamp(24px, 4vw, 56px);
}

.about__photo-column {
  width: 200px;
  max-width: 100%;
  flex: 0 0 auto;
}

.about__caption {
  width: 100%;
  margin-bottom: 18px;
}

.about__picture,
.about__photo {
  display: block;
}

.about__photo {
  width: 100%;
  height: auto;
  max-width: 200px;
  aspect-ratio: 5 / 6;
  object-fit: cover;
  object-position: 50% 10%;
}

.about__copy {
  max-width: 660px;
  flex: 1 1 420px;
}

.about__copy h2 {
  margin-bottom: clamp(16px, 2.6vw, 22px);
  line-height: 1.3;
}

.about__copy p {
  margin: 0 0 14px;
  font-size: clamp(15.5px, 2vw, 16.5px);
  line-height: 1.7;
  text-wrap: pretty;
}

.about__copy p:last-child {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.testimonials__body {
  max-width: 680px;
}

.testimonials h2 {
  margin-bottom: clamp(6px, 1vw, 10px);
  line-height: 1.3;
}

.testimonial {
  margin: 0;
  padding: clamp(22px, 3.2vw, 30px) 0;
  border-bottom: 1px solid var(--line);
}

.testimonial__quote {
  margin: 0 0 12px;
  color: var(--ink-soft);
  font-size: 15px;
  font-style: italic;
  line-height: 1.7;
  text-wrap: pretty;
}

.testimonial__quote p {
  margin: 0;
}

.testimonial__attribution {
  color: var(--muted);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: .03em;
}

.contact {
  padding-top: clamp(56px, 8vw, 92px);
  padding-bottom: clamp(56px, 8vw, 88px);
  scroll-margin-top: 70px;
}

.contact .content-section__axis-node {
  top: clamp(60px, 8vw, 96px);
}

.contact__body {
  max-width: 760px;
  flex: 1 1 460px;
}

.contact h2 {
  margin: 0 0 16px;
  font-size: clamp(30px, 4.4vw, 44px);
  font-weight: 500;
  letter-spacing: -.02em;
  line-height: normal;
  text-wrap: balance;
}

.contact__lead {
  max-width: 560px;
  margin: 0 0 12px;
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.65;
  text-wrap: pretty;
}

.contact__lead + .contact__lead {
  margin-bottom: clamp(30px, 4vw, 44px);
}

.contact__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(30px, 4vw, 54px);
}

.contact__cta {
  margin-bottom: clamp(22px, 3vw, 30px);
}

.contact__channel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 16px;
  border-top: 1px solid var(--line);
}

.contact__channel-label {
  color: var(--muted);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11.5px;
  letter-spacing: .06em;
}

.contact__channel-value {
  color: var(--ink);
  font-size: 16px;
  font-weight: 500;
}

.contact__max {
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}

.contact-form-shell{min-width:0;content-visibility:auto;contain-intrinsic-size:auto 900px}
[data-js] .contact-form__no-js{display:none}

.site-footer{display:flex;justify-content:center;padding:clamp(28px,5vw,46px) clamp(22px,6vw,72px);border-top:1px solid var(--line);color:var(--muted);font-family:'IBM Plex Mono',monospace;font-size:11px;letter-spacing:.05em;line-height:1.55;text-align:center}

@keyframes km-node-pass{from,to{background-color:var(--paper);border-color:var(--node-ring)}50%{background-color:var(--clay);border-color:var(--clay)}}

@media (max-width: 620px) {
  .hero__steps-wrap {
    min-width: 0;
    flex-basis: 100%;
  }

  .content-section__caption {
    width: 100%;
  }

  .button {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .site-header__inner{flex-wrap:nowrap}
  .header-controls{flex:none;flex-wrap:nowrap;gap:8px}
  [data-js] .menu-toggle{display:grid}
  .site-nav{position:absolute;top:100%;right:0;width:220px;border:1px solid var(--field);background:var(--paper);flex-direction:column;gap:0}
  [data-js] .menu-toggle[aria-expanded=false]+.site-nav{display:none}
  .site-nav__link{padding:10px 12px}
}

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

  .page-axis-fill,
  .responsibility__axis-segment-fill {
    transform: scaleY(1) !important;
    will-change: auto;
  }

  [data-node]{background:var(--axis-node-fill,var(--axis-fill))}
}
