:root {
  color-scheme: dark;
  --bg: #080b0f;
  --chrome: rgb(18 22 28 / 96%);
  --surface-1: #0d1219;
  --surface-2: #111923;
  --surface-3: #151e29;
  --text: #f2f5f8;
  --muted: #a5afbb;
  --dim: #75808d;
  --line: rgb(205 220 238 / 16%);
  --line-strong: rgb(205 220 238 / 32%);
  --blue: #1769ff;
  --blue-hover: #3a7dff;
  --blue-pressed: #0e54d8;
  --metal: #687480;
  --metal-light: #bac7d4;
  --paper: #d8dde3;
  --paper-soft: #cbd2da;
  --ink: #0a0e14;
  --amber: #e7a51b;
  --danger: #ff7b7b;
  --shell: 1440px;
  --gutter: clamp(20px, 5.7vw, 88px);
  --header: 112px;
  --radius-sm: 4px;
  --radius-control: 8px;
  --radius-card: 12px;
  --radius-panel: 14px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  --mono: ui-monospace, "SFMono-Regular", Consolas, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header) + 20px); }
body { margin: 0; overflow-x: hidden; background: var(--bg); color: var(--text); font-family: var(--font); font-size: 16px; line-height: 1.55; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
a { color: inherit; }
[hidden] { display: none !important; }

.skip-link { position: fixed; z-index: 1000; top: -80px; left: 16px; padding: 12px 16px; border-radius: var(--radius-control); background: var(--blue); color: #fff; text-decoration: none; }
.skip-link:focus { top: 16px; }
:focus-visible { outline: 3px solid #69a0ff; outline-offset: 4px; }

.shell { width: min(100%, var(--shell)); margin-inline: auto; padding-inline: var(--gutter); }
.section-dark { background: var(--bg); color: var(--text); }
.eyebrow, .section-index, .micro-label { font: 600 11px/1.35 var(--mono); letter-spacing: .12em; text-transform: uppercase; }
.eyebrow { display: flex; gap: 12px; align-items: center; margin: 0 0 28px; color: var(--muted); }
.eyebrow span { width: 6px; height: 6px; background: var(--blue); }
.section-index { margin: 8px 0 0; color: var(--blue); white-space: nowrap; }

.site-header { position: fixed; z-index: 100; inset: 0 0 auto; height: var(--header); display: grid; grid-template-rows: 34px 1fr; background: var(--chrome); border-bottom: 1px solid var(--line); -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px); transition: background-color 220ms ease, box-shadow 220ms ease; }
.site-header.is-scrolled { background: var(--chrome); box-shadow: 0 14px 40px rgb(0 0 0 / 18%); }
.site-header__top { min-width: 0; display: flex; align-items: center; justify-content: space-between; gap: 28px; border-bottom: 1px solid var(--line); color: #8995a2; }
.site-header__top > p { margin: 0; overflow: hidden; font: 500 10px/1.3 var(--mono); letter-spacing: .06em; text-overflow: ellipsis; text-transform: uppercase; white-space: nowrap; }
.header-contacts { display: flex; align-items: center; gap: 30px; }
.header-contacts a { min-height: 32px; display: inline-flex; align-items: center; gap: 9px; color: #b9c2cc; font-size: 12px; text-decoration: none; white-space: nowrap; transition: color 180ms ease; }
.header-contacts a:hover { color: #fff; }
.header-contacts svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.site-header__main { min-width: 0; display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: clamp(24px, 2.8vw, 44px); }
.site-header__brand { width: 164px; min-height: 44px; display: flex; align-items: center; }
.site-header__brand img { width: 100%; height: auto; }
.site-nav { display: flex; gap: clamp(16px, 1.55vw, 28px); align-items: center; justify-content: center; }
.site-nav a, .header-action { min-height: 44px; display: inline-flex; align-items: center; text-decoration: none; font-size: 15px; color: #d8dee6; transition: color 180ms ease; }
.site-nav a:hover, .site-nav a:focus-visible { color: #fff; }
.header-action { min-height: 48px; justify-self: end; gap: 24px; padding: 0 18px; border: 1px solid var(--blue); border-radius: var(--radius-control); background: var(--blue); color: #fff; font-weight: 650; transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease; }
.header-action:hover { border-color: var(--blue-hover); background: var(--blue-hover); color: #fff; transform: translateY(-1px); }
.header-action:active { border-color: var(--blue-pressed); background: var(--blue-pressed); transform: translateY(0); }
.header-action span { color: #fff; }
.menu-toggle { display: none; width: 48px; height: 48px; padding: 0; place-items: center; border: 1px solid var(--line); border-radius: var(--radius-control); background: transparent; cursor: pointer; }
.menu-toggle span { grid-area: 1 / 1; width: 20px; height: 1px; background: #fff; transition: transform 180ms ease; }
.menu-toggle span:first-child { transform: translateY(-4px); }
.menu-toggle span:last-child { transform: translateY(4px); }
.menu-toggle[aria-expanded="true"] span:first-child { transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: rotate(-45deg); }

.hero { min-height: 100svh; position: relative; isolation: isolate; padding-top: var(--header); overflow: hidden; background: var(--bg); }
.hero__visual { position: absolute; z-index: -2; inset: -8px; overflow: hidden; transform: translate3d(var(--parallax-x, 0), var(--parallax-y, 0), 0); transition: transform 160ms ease-out; }
.hero__visual picture, .hero__visual img { width: 100%; height: 100%; }
.hero__visual img { object-fit: cover; object-position: center; }
.hero__motion { position: absolute; inset: 11% 0 0 37%; width: 66%; height: 74%; overflow: visible; pointer-events: none; }
.hero__motion path { fill: none; stroke: rgb(213 226 241 / 22%); stroke-width: 1; vector-effect: non-scaling-stroke; }
.hero__motion path:first-child { stroke: rgb(23 105 255 / 62%); stroke-dasharray: 5 12; }
.hero__motion circle { fill: var(--bg); stroke: rgb(213 226 241 / 65%); stroke-width: 1; vector-effect: non-scaling-stroke; }
.hero__motion .hero__moving-node { fill: var(--blue); stroke: #a9c7ff; filter: none; }
.hero__content { min-height: calc(100svh - var(--header)); position: relative; display: flex; align-items: center; }
.hero__copy { width: min(58%, 800px); padding-block: 64px 120px; }
.hero h1 { max-width: 800px; margin: 0; font-size: clamp(48px, 4.4vw, 72px); font-weight: 400; line-height: .96; letter-spacing: -.058em; text-wrap: balance; }
.hero__lead { max-width: 560px; margin: 28px 0 0; color: #c0c9d3; font-size: clamp(18px, 1.35vw, 21px); line-height: 1.5; }
.hero__actions { margin-top: 38px; display: flex; gap: 28px; align-items: center; }
.button { min-height: 54px; padding: 0 24px; display: inline-flex; gap: 40px; align-items: center; justify-content: space-between; border: 1px solid transparent; border-radius: var(--radius-control); text-decoration: none; font-weight: 600; cursor: pointer; transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease; }
.button:hover { transform: translateY(-1px); }
.button:active { transform: translateY(0); }
.button--primary { background: var(--blue); color: #fff; }
.button--primary:hover { background: var(--blue-hover); }
.button--primary:active { background: var(--blue-pressed); }
.button--light { background: #fff; color: var(--ink); }
.button--light:hover { background: #dce7ff; }
.text-link { min-height: 48px; display: inline-flex; gap: 24px; align-items: center; color: #cbd3dd; text-decoration: none; border-bottom: 1px solid var(--line-strong); }
.text-link:hover { color: #fff; border-color: var(--blue); }
.hero__system-index { position: absolute; right: var(--gutter); bottom: 42px; display: grid; grid-template-columns: repeat(2, max-content); gap: 8px 28px; color: var(--dim); font: 500 10px/1.4 var(--mono); letter-spacing: .09em; text-transform: uppercase; }
.fact-line { background: #0a0e14; border-block: 1px solid var(--line); }
.fact-line__inner { min-height: 82px; display: grid; grid-template-columns: repeat(4, 1fr); align-items: center; }
.fact-line p { height: 100%; margin: 0; padding: 22px 24px; display: flex; gap: 16px; align-items: center; border-right: 1px solid var(--line); color: #c3ccd7; font-size: 13px; }
.fact-line p:first-child { padding-left: 0; }
.fact-line p:last-child { border-right: 0; }
.fact-line span { color: var(--blue); font: 600 10px var(--mono); }

.directions, .audiences { padding-block: clamp(64px, 6vw, 96px); }
.section-heading { display: grid; grid-template-columns: minmax(0, 900px) minmax(170px, 1fr); gap: clamp(32px, 5vw, 80px); align-items: start; }
.section-heading > div { grid-column: 1; grid-row: 1; min-width: 0; max-width: 900px; }
.section-heading > .section-index { grid-column: 2; grid-row: 1; justify-self: end; text-align: right; }
.section-heading h2 { margin: 0; font-size: clamp(38px, 3.6vw, 58px); font-weight: 400; line-height: .98; letter-spacing: -.055em; }
.section-heading > div > p { max-width: 720px; margin: 18px 0 0; color: var(--muted); font-size: 17px; line-height: 1.45; }
.directions__workspace { margin-top: clamp(70px, 8vw, 120px); display: grid; grid-template-columns: minmax(420px, .9fr) minmax(480px, 1.1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.direction-list { border-right: 1px solid var(--line); }
.direction-row { width: 100%; min-height: 126px; padding: 20px 30px 20px 0; display: grid; grid-template-columns: 50px 1fr 44px; gap: 18px; align-items: center; border: 0; border-bottom: 1px solid var(--line); background: transparent; text-align: left; cursor: pointer; transition: background-color 220ms ease; }
.direction-row:last-child { border-bottom: 0; }
.direction-row:hover { background: #0c121a; }
.direction-row.is-active { background: #101824; }
.direction-row__index { color: var(--dim); font: 600 10px var(--mono); }
.direction-row.is-active .direction-row__index { color: var(--blue); }
.direction-row__body strong, .direction-row__body small { display: block; }
.direction-row__body strong { font-size: clamp(22px, 2vw, 32px); font-weight: 450; line-height: 1.15; letter-spacing: -.035em; }
.direction-row__body small { margin-top: 8px; color: var(--dim); font-size: 13px; }
.direction-row__arrow { width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid var(--line); color: var(--dim); transition: border-color 180ms ease, color 180ms ease, transform 180ms ease; }
.direction-row:hover .direction-row__arrow, .direction-row.is-active .direction-row__arrow { border-color: var(--blue); color: #fff; transform: rotate(45deg); }
.direction-stage { min-width: 0; padding: clamp(28px, 4vw, 58px); display: grid; grid-template-rows: minmax(290px, 1fr) auto; background: var(--surface-1); }
.direction-stage__graphic { min-height: 310px; position: relative; overflow: hidden; }
.stage-axis { position: absolute; background: var(--line); }
.stage-axis--x { left: 8%; right: 8%; top: 50%; height: 1px; }
.stage-axis--y { top: 8%; bottom: 8%; left: 50%; width: 1px; }
.stage-orbit { width: min(60%, 330px); aspect-ratio: 1; position: absolute; left: 50%; top: 50%; border: 1px solid var(--line); border-radius: 50%; transform: translate(-50%, -50%); }
.stage-orbit::before, .stage-orbit::after { content: ""; position: absolute; inset: 14%; border: 1px solid rgb(23 105 255 / 24%); border-radius: 50%; }
.stage-orbit::after { inset: 36%; border-color: var(--line-strong); }
.stage-core { width: 80px; height: 80px; position: absolute; z-index: 2; left: 50%; top: 50%; display: grid; place-items: center; border: 1px solid rgb(23 105 255 / 65%); background: #0a1019; transform: translate(-50%, -50%); }
.stage-core img { width: 42px; }
.stage-node { min-width: 46px; height: 28px; padding-inline: 8px; position: absolute; display: grid; place-items: center; border: 1px solid var(--line-strong); background: var(--surface-1); color: var(--dim); font: 600 9px var(--mono); transition: background-color 240ms ease, color 240ms ease, border-color 240ms ease; }
.stage-node.is-active { border-color: var(--blue); background: var(--blue); color: #fff; }
.node-one { left: 12%; top: 20%; }
.node-two { right: 10%; top: 24%; }
.node-three { left: 14%; bottom: 16%; }
.node-four { right: 12%; bottom: 17%; }
.direction-stage__copy { padding-top: 30px; border-top: 1px solid var(--line); }
.micro-label { margin: 0 0 18px; color: var(--blue); }
.direction-stage__copy h3 { max-width: 630px; margin: 0; font-size: clamp(30px, 3vw, 48px); font-weight: 400; line-height: 1.04; letter-spacing: -.045em; }
.direction-stage__copy > p:not(.micro-label) { max-width: 650px; color: var(--muted); }
.direction-stage__copy ul { margin: 24px 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.direction-stage__copy li { padding: 10px 0; display: flex; gap: 12px; border-bottom: 1px solid var(--line); color: #c3ccd7; font-size: 13px; }
.direction-stage__copy li::before { content: ""; width: 5px; height: 5px; margin-top: 8px; background: var(--blue); }
.stage-action { min-height: 48px; padding: 0; display: flex; gap: 50px; align-items: center; border: 0; border-bottom: 1px solid var(--line-strong); background: transparent; color: #fff; font-weight: 600; cursor: pointer; }
.stage-action:hover { border-color: var(--blue); }

.audience-columns { margin-top: clamp(70px, 8vw, 110px); border-top: 1px solid var(--line); }
.audience-columns article { min-height: 176px; padding: 30px 0; display: grid; grid-template-columns: 110px minmax(250px, .85fr) minmax(280px, 1fr) auto; gap: clamp(24px, 3.5vw, 60px); align-items: center; border-bottom: 1px solid var(--line); }
.audience-columns article > span { color: var(--blue); font: 600 10px var(--mono); letter-spacing: .1em; }
.audience-columns h3 { margin: 0; font-size: clamp(27px, 2.5vw, 39px); font-weight: 420; line-height: 1.05; letter-spacing: -.04em; }
.audience-columns p { margin: 0; color: var(--muted); }
.audience-columns button { min-height: 48px; padding: 0; justify-self: end; border: 0; border-bottom: 1px solid var(--line-strong); background: transparent; color: #fff; white-space: nowrap; cursor: pointer; }
.audience-columns button:hover { border-color: var(--blue); }
.role-line { min-height: 88px; display: grid; grid-template-columns: repeat(3, 1fr); align-items: center; border-bottom: 1px solid var(--line); color: var(--dim); font: 500 11px var(--mono); }
.role-line span { padding-right: 20px; }

.trust { padding-block: clamp(100px, 11vw, 170px); background: #0b0f14; }
.trust__layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(60px, 9vw, 150px); align-items: start; }
.trust__heading h2 { max-width: 650px; margin: 22px 0 30px; font-size: clamp(44px, 5vw, 78px); font-weight: 400; line-height: .96; letter-spacing: -.055em; }
.trust__heading > p:last-child { max-width: 560px; color: var(--muted); }
.trust__console { border: 1px solid var(--line-strong); background: var(--surface-1); }
.trust__console-head { min-height: 54px; padding: 0 22px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--line); color: var(--dim); font: 600 10px var(--mono); letter-spacing: .1em; }
.trust__console-head strong { color: var(--metal-light); font: inherit; }
.trust__console dl { margin: 0; }
.trust__console dl > div { padding: 25px 22px; display: grid; grid-template-columns: 160px 1fr; gap: 26px; border-bottom: 1px solid var(--line); }
.trust__console dt { color: var(--dim); font: 500 11px var(--mono); }
.trust__console dd { margin: 0; color: #d7dee7; }
.trust__console dd small { margin-top: 7px; display: block; color: var(--dim); }
.trust__console > a { min-height: 62px; padding: 0 22px; display: flex; justify-content: space-between; align-items: center; color: #fff; text-decoration: none; font-weight: 600; }
.trust__console > a:hover { background: var(--blue); }

.partnership { min-height: 720px; position: relative; display: flex; align-items: center; overflow: hidden; background-color: #080b0f; background-image: url("assets/hero-system-1536.webp"); background-position: center; background-size: cover; border-block: 1px solid var(--line); }
.partnership::before { content: ""; position: absolute; inset: 0 42% 0 0; background: rgb(8 11 15 / 90%); border-right: 1px solid rgb(23 105 255 / 35%); pointer-events: none; }
.partnership__field { position: absolute; inset: 0; pointer-events: none; }
.partnership__field span { position: absolute; border: 1px solid rgb(205 220 238 / 18%); }
.partnership__field span:nth-child(1) { width: 500px; height: 500px; right: -120px; top: -140px; transform: rotate(20deg); }
.partnership__field span:nth-child(2) { width: 360px; height: 360px; right: 20%; bottom: -200px; border-radius: 50%; }
.partnership__field span:nth-child(3) { width: 1px; height: 100%; left: 60%; top: 0; background: rgb(23 105 255 / 40%); border: 0; }
.partnership__field i { width: 10px; height: 10px; position: absolute; left: calc(60% - 5px); top: 34%; background: var(--blue); }
.partnership__content { position: relative; }
.partnership .section-index { color: var(--blue-hover); }
.partnership h2 { max-width: 940px; margin: 24px 0 30px; font-size: clamp(48px, 5.4vw, 80px); font-weight: 400; line-height: .93; letter-spacing: -.06em; }
.partnership__content > p:not(.section-index) { max-width: 650px; margin-bottom: 38px; color: #c5cfda; font-size: 18px; }
.partnership .button--light { background: var(--blue); color: #fff; }
.partnership .button--light:hover { background: var(--blue-hover); }

.contact { padding-block: clamp(100px, 11vw, 170px); background: #090d12; }
.contact__layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(60px, 9vw, 150px); align-items: start; }
.contact__heading h2 { margin: 22px 0; font-size: clamp(56px, 5.7vw, 86px); font-weight: 400; line-height: .92; letter-spacing: -.065em; }
.contact__heading > p:not(.section-index) { max-width: 520px; color: var(--muted); }
.lead-form { min-width: 0; border: 1px solid var(--line-strong); border-radius: var(--radius-panel); background: var(--surface-1); overflow: hidden; }
.lead-form__head { min-height: 54px; padding: 0 22px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--line); color: var(--dim); font: 600 10px var(--mono); letter-spacing: .1em; }
.lead-form fieldset { margin: 0; padding: 28px; border: 0; }
.lead-form legend { width: 100%; margin-bottom: 24px; font-size: clamp(27px, 3vw, 42px); font-weight: 420; letter-spacing: -.04em; }
.audience-chooser { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.audience-chooser button { min-height: 122px; padding: 18px; display: grid; grid-template-columns: 30px 1fr 15px; gap: 12px; align-items: start; border: 1px solid var(--line); border-radius: var(--radius-control); background: transparent; text-align: left; cursor: pointer; transition: background-color 180ms ease, border-color 180ms ease; }
.audience-chooser button:hover { border-color: var(--blue); background: #151f2c; }
.audience-chooser button > span { color: var(--blue); font: 600 10px var(--mono); }
.audience-chooser button strong { font-weight: 520; line-height: 1.35; }
.audience-chooser button i { width: 10px; height: 10px; margin-top: 3px; border: 1px solid var(--line-strong); border-radius: var(--radius-sm); }
.audience-chooser button:hover i { border-color: var(--blue); background: var(--blue); }
.person-result { padding: 42px 28px; }
.person-result > span { color: var(--blue); font: 600 10px var(--mono); text-transform: uppercase; }
.person-result h3 { max-width: 680px; margin: 20px 0; font-size: clamp(28px, 3.4vw, 48px); font-weight: 420; line-height: 1.08; }
.person-result p { color: var(--muted); }
.person-result button, .reset-button { min-height: 44px; padding: 0; border: 0; border-bottom: 1px solid var(--line-strong); background: transparent; color: #fff; cursor: pointer; }
.lead-fields { padding: 30px 28px 34px; }
.required-note { margin: 0 0 18px; color: var(--dim); font-size: 12px; }
.field { min-width: 0; display: grid; gap: 8px; }
.field > span { color: #c8d0da; font-size: 13px; }
.field em { color: var(--dim); font-style: normal; }
.field input, .field select, .field textarea { width: 100%; min-height: 50px; padding: 12px 14px; border: 1px solid var(--line-strong); border-radius: var(--radius-control); outline: none; background: #0b1118; color: #fff; transition: border-color 180ms ease, box-shadow 180ms ease; }
.field textarea { min-height: 110px; resize: vertical; }
.field select { appearance: none; background-image: none; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgb(23 105 255 / 18%); }
.field [aria-invalid="true"] { border-color: var(--danger); }
.field small { color: var(--dim); font-size: 12px; }
.field-error { margin: 0; color: var(--danger); font-size: 12px; }
.field-grid { margin-top: 22px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.field--wide { grid-column: 1 / -1; }
.consent { margin-top: 22px; display: grid; grid-template-columns: 20px 1fr; gap: 12px; align-items: start; color: var(--muted); font-size: 13px; cursor: pointer; }
.consent input { width: 18px; height: 18px; accent-color: var(--blue); }
.consent a, .privacy-note a { color: #dce7f7; text-underline-offset: 3px; }
.consent a:hover, .privacy-note a:hover { color: #fff; }
.privacy-note { margin: 10px 0 0 32px; color: var(--dim); font-size: 12px; line-height: 1.5; }
.lead-form__actions { margin-top: 28px; display: flex; gap: 22px; align-items: center; }
.reset-button { color: var(--muted); }
.form-status { min-height: 24px; margin: 18px 0 0; color: #c8d8f3; font-size: 13px; }
.form-status.is-error { color: var(--danger); }

.site-footer { background: var(--chrome); border-top: 1px solid var(--line); -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px); }
.site-footer__top { min-height: 154px; padding-block: 26px; display: grid; grid-template-columns: minmax(220px, .85fr) minmax(520px, 1.6fr) auto; gap: 34px; align-items: center; }
.site-footer__top img { width: 156px; }
.site-footer__top p { color: var(--dim); font: 500 10px var(--mono); text-transform: uppercase; }
.site-footer__top a { min-height: 44px; display: flex; align-items: center; justify-self: end; text-decoration: none; }
.site-footer__brand { display: grid; gap: 14px; }
.site-footer__nav { display: flex; flex-wrap: wrap; gap: 8px 24px; }
.site-footer__nav a { min-height: 36px; justify-self: auto; color: #c7d0da; font-size: 13px; }
.site-footer__nav a:hover { color: #fff; }
.site-footer__bottom { min-height: 74px; padding-block: 20px; display: grid; grid-template-columns: 1.4fr 1fr auto; gap: 20px; align-items: center; border-top: 1px solid var(--line); color: var(--dim); font-size: 11px; }
.site-footer p { margin: 0; }

.reveal-ready [data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity 480ms ease, transform 480ms ease; }
.reveal-ready [data-reveal].is-visible { opacity: 1; transform: none; }

@media (max-width: 1120px) {
  :root { --header: 104px; }
  .site-header__main { grid-template-columns: 1fr auto auto; }
  .site-nav { display: none; position: fixed; inset: var(--header) 0 auto; padding: 26px var(--gutter) 34px; background: #080b0f; border-bottom: 1px solid var(--line); }
  .site-nav.is-open { display: grid; gap: 8px; }
  .site-nav a { min-height: 54px; border-bottom: 1px solid var(--line); font-size: 18px; }
  .menu-toggle { display: grid; }
  .header-action { margin-left: auto; }
  .hero__copy { width: min(64%, 720px); }
  .hero h1 { font-size: clamp(46px, 5.1vw, 58px); }
  .hero__system-index { display: none; }
  .directions__workspace { grid-template-columns: minmax(340px, .82fr) 1.18fr; }
  .direction-row { grid-template-columns: 40px 1fr 40px; }
  .audience-columns article { grid-template-columns: 80px minmax(220px, .9fr) 1fr; }
  .audience-columns button { grid-column: 2 / -1; justify-self: start; }
  .trust__layout, .contact__layout { grid-template-columns: 1fr 1.25fr; gap: 60px; }
}

@media (max-width: 860px) {
  .hero { min-height: auto; padding-top: var(--header); display: flex; flex-direction: column; }
  .hero__content { order: 1; min-height: auto; padding-top: 76px; padding-bottom: 52px; }
  .hero__copy { width: 100%; max-width: 680px; padding: 0; }
  .hero h1 { font-size: clamp(48px, 8.2vw, 66px); }
  .hero__visual { order: 2; position: relative; inset: auto; height: min(64vw, 530px); transform: none; }
  .hero__visual picture, .hero__visual img { position: absolute; inset: 0; }
  .hero__visual img { width: 145%; max-width: none; object-fit: cover; object-position: 79% center; transform: translateX(-18%); }
  .hero__motion { inset: 4% -8% 0 20%; width: 94%; height: 90%; }
  .fact-line__inner { grid-template-columns: repeat(2, 1fr); padding-inline: 0; }
  .fact-line p { border-bottom: 1px solid var(--line); }
  .fact-line p:nth-child(2) { border-right: 0; }
  .fact-line p:nth-last-child(-n+2) { border-bottom: 0; }
  .fact-line p:first-child { padding-left: 24px; }
  .section-heading { grid-template-columns: 1fr; gap: 18px; }
  .section-heading > .section-index { grid-column: 1; grid-row: 1; justify-self: end; }
  .section-heading > div { grid-column: 1; grid-row: 2; }
  .section-heading h2 { font-size: clamp(38px, 7vw, 52px); }
  .directions__workspace { grid-template-columns: 1fr; }
  .direction-list { border-right: 0; }
  .direction-row { padding-left: 0; }
  .direction-stage { min-height: auto; border-top: 1px solid var(--line); }
  .audience-columns article { min-height: auto; grid-template-columns: 72px minmax(220px, .9fr) 1fr; }
  .audience-columns button { grid-column: 2 / -1; justify-self: start; }
  .role-line { grid-template-columns: 1fr; padding-block: 20px; gap: 10px; }
  .trust__layout, .contact__layout { grid-template-columns: 1fr; }
  .partnership { min-height: 680px; }
  .partnership__field span:nth-child(3), .partnership__field i { left: 76%; }
  .site-footer__top {
    grid-template-columns: 1fr auto;
    align-items: start;
  }
  .site-footer__brand { grid-column: 1; grid-row: 1; }
  .site-footer__top > a { grid-column: 2; grid-row: 1; }
  .site-footer__nav { grid-column: 1 / -1; grid-row: 2; }
  .site-footer__top p { display: none; }
}

@media (max-width: 620px) {
  :root { --header: 104px; --gutter: 20px; }
  .site-header { grid-template-rows: 34px 1fr; }
  .site-header__top > p { display: none; }
  .site-header__top { justify-content: flex-end; }
  .header-contacts { width: 100%; justify-content: space-between; gap: 12px; }
  .header-contacts a { gap: 6px; font-size: 11px; }
  .header-contacts svg { width: 14px; height: 14px; }
  .site-header__main { gap: 12px; }
  .site-header__brand { width: 144px; }
  .header-action { display: none; }
  .hero__content { padding-top: 58px; padding-bottom: 42px; }
  .hero h1 { font-size: clamp(40px, 12.3vw, 52px); line-height: .97; }
  .hero__lead { font-size: 17px; }
  .eyebrow, .section-index, .micro-label, .direction-row__index,
  .audience-columns article > span, .trust__console-head, .trust__console dt,
  .lead-form__head, .site-footer__top p,
  .site-footer__bottom { font-size: 12px; }
  .hero__actions { align-items: stretch; flex-direction: column; gap: 12px; }
  .button { width: min(100%, 340px); }
  .text-link { width: fit-content; }
  .hero__visual { height: 360px; }
  .hero__visual img { width: 195%; object-position: 80% center; transform: translateX(-36%); }
  .hero__motion { display: none; }
  .fact-line__inner { grid-template-columns: 1fr; }
  .fact-line p, .fact-line p:nth-child(2), .fact-line p:nth-last-child(-n+2) { min-height: 58px; padding: 12px 20px; border-right: 0; border-bottom: 1px solid var(--line); }
  .fact-line p:last-child { border-bottom: 0; }
  .directions, .audiences { padding-block: 58px; }
  .section-heading h2 { font-size: clamp(34px, 9.6vw, 44px); }
  .section-heading > div > p { margin-top: 16px; font-size: 16px; }
  .directions__workspace { margin-top: 52px; padding-inline: 0; }
  .direction-row { min-height: 108px; padding: 16px 20px; grid-template-columns: 30px 1fr 36px; gap: 10px; }
  .direction-row__body strong { font-size: 22px; }
  .direction-row__body small { font-size: 12px; }
  .direction-stage { padding: 24px 20px 32px; }
  .direction-stage__graphic { min-height: 255px; }
  .direction-stage__copy h3 { font-size: 34px; }
  .audience-columns { margin-top: 52px; }
  .audience-columns article { min-height: auto; padding: 28px 0; grid-template-columns: 1fr; gap: 14px; }
  .audience-columns h3 { font-size: 32px; }
  .audience-columns button { grid-column: auto; justify-self: start; margin-top: 8px; }
  .trust, .contact { padding-block: 86px; }
  .trust__heading h2, .contact__heading h2 { font-size: clamp(44px, 12vw, 58px); }
  .trust__console dl > div { grid-template-columns: 1fr; gap: 10px; }
  .partnership { min-height: 650px; }
  .partnership h2 { font-size: clamp(45px, 12.4vw, 61px); }
  .partnership__field span:nth-child(1) { width: 340px; height: 340px; }
  .partnership__field span:nth-child(2) { width: 260px; height: 260px; }
  .lead-form fieldset, .lead-fields { padding: 24px 18px 28px; }
  .audience-chooser, .field-grid { grid-template-columns: 1fr; }
  .audience-chooser button { min-height: 92px; }
  .field--wide { grid-column: auto; }
  .lead-form__actions { align-items: stretch; flex-direction: column; }
  .lead-form__actions .button { width: 100%; }
  .reset-button { align-self: flex-start; }
  .site-footer__top { min-height: 110px; grid-template-columns: 1fr; gap: 20px; }
  .site-footer__brand,
  .site-footer__nav,
  .site-footer__top > a { grid-column: 1; grid-row: auto; }
  .site-footer__top > a { justify-self: start; }
  .site-footer__nav { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); width: 100%; gap: 2px 20px; }
  .site-footer__nav a { justify-self: start; }
  .site-footer__bottom { grid-template-columns: 1fr; }
}

@media (max-width: 360px) {
  .site-header__brand { width: 132px; }
  .hero h1 { font-size: 39px; }
  .hero__visual { height: 310px; }
  .direction-row__arrow { display: none; }
  .direction-row { grid-template-columns: 28px 1fr; }
}

@media (hover: none) {
  .direction-row:hover .direction-row__arrow { transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .hero__visual { transform: none !important; }
  .reveal-ready [data-reveal] { opacity: 1; transform: none; }
}

@media (forced-colors: active) {
  .button, .direction-row__arrow, .stage-node, .trust__console, .lead-form, .field input, .field select, .field textarea { border: 1px solid CanvasText; }
  .eyebrow span, .trust__console-head i, .stage-node.is-active { forced-color-adjust: none; background: Highlight; }
}
