@font-face {
    font-family: "TT Norms Pro";
    src: url("fonts/TTNormsPro-Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "TT Norms Pro";
    src: url("fonts/TTNormsPro-Medium.woff2") format("woff2");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "TT Norms Pro";
    src: url("fonts/TTNormsPro-Bold.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "TT Norms Pro";
    src: url("fonts/TTNormsPro-ExtraBold.woff2") format("woff2");
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "TT Norms Pro";
    src: url("fonts/TTNormsPro-Black.woff2") format("woff2");
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

:root {
    --purple-7: #7f42e1;
    --purple-6: #915de6;
    --purple-5: #a57bec;
    --purple-4: #ba9af1;
    --purple-3: #d0baf7;
    --purple-2: #e7dbfd;
    --purple-1: #f5f0ff;
    --amaranth-light: #f6d1e9;
    --teal-light: #cdecf1;
    --orange-light: #f9ded6;
    --black: #191919;
    --white: #ffffff;
    --font-sans: "TT Norms Pro", "TT Norms", Inter, Arial, sans-serif;
    --font-script: "Tochka Script", "TT Norms Pro", "TT Norms", Inter, Arial, sans-serif;
    --violet: var(--purple-7);
    --violet-dark: var(--purple-7);
    --violet-deep: var(--black);
    --violet-soft: var(--purple-2);
    --pink: var(--amaranth-light);
    --orange: var(--orange-light);
    --mint: var(--teal-light);
    --canvas: var(--purple-1);
    --surface: var(--white);
    --ink: var(--black);
    --muted: rgb(25 25 25 / 68%);
    --line: var(--purple-3);
    --white-muted: var(--purple-2);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
    margin: 0;
    background: var(--canvas);
    color: var(--ink);
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.5;
}

button,
a {
    font: inherit;
}

button {
    cursor: pointer;
}

a {
    color: inherit;
}

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

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

.container {
    width: min(1380px, calc(100% - 96px));
    margin: 0 auto;
}

.section {
    padding: 142px 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: var(--violet);
    color: var(--white);
}

.header-content {
    display: grid;
    grid-template-columns: minmax(230px, 1fr) auto minmax(70px, 1fr);
    min-height: 76px;
    align-items: center;
    gap: 30px;
}

.wordmark {
    display: inline-flex;
    width: max-content;
    align-items: center;
    gap: 11px;
    color: inherit;
    text-decoration: none;
}

.wordmark-mark {
    display: block;
    width: 38px;
    height: 38px;
    flex: 0 0 auto;
    object-fit: contain;
    object-position: center;
}

.wordmark-text {
    font-size: 12px;
    font-weight: 780;
    line-height: 1.04;
}

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

.main-nav a,
.language-link,
.footer-links a,
.text-button {
    color: inherit;
    font-size: 14px;
    font-weight: 680;
    text-decoration: none;
}

.main-nav a {
    color: var(--purple-1);
}

.main-nav a:hover,
.language-link:hover,
.footer-links a:hover,
.text-button:hover {
    color: var(--white);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.language-link {
    justify-self: end;
    border: 1px solid var(--white);
    border-radius: 8px;
    padding: 8px 12px;
    color: var(--black);
    background: var(--white);
}

.language-link:hover {
    color: var(--black);
    background: var(--violet-soft);
    text-decoration: none;
}

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

h1,
h2,
h3 {
    letter-spacing: 0;
    text-wrap: balance;
}

h1 {
    max-width: 850px;
    margin-bottom: 28px;
    font-size: clamp(58px, 6.1vw, 102px);
    font-weight: 680;
    line-height: 0.94;
}

h2 {
    max-width: 860px;
    margin-bottom: 27px;
    font-size: clamp(45px, 4.4vw, 76px);
    font-weight: 680;
    line-height: 0.98;
}

h3 {
    margin-bottom: 14px;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.08;
}

.eyebrow {
    margin: 0 0 24px;
    color: var(--violet);
    font-size: 12px;
    font-weight: 820;
    letter-spacing: 0.06em;
    line-height: 1.2;
    text-transform: uppercase;
}

.eyebrow-light {
    color: var(--orange);
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 0;
    background: var(--violet);
    color: var(--white);
}

.hero::after {
    display: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(470px, 1.1fr);
    align-items: end;
    gap: 48px;
    min-height: 690px;
    position: relative;
    z-index: 1;
}

.hero-copy {
    position: relative;
    z-index: 1;
    padding: 94px 0 108px;
}

.hero .eyebrow {
    color: var(--white);
}

.hero-title-row {
    display: block;
}

.pilot-status {
    display: inline-block;
    margin: 0 0 26px;
    border: 1px solid var(--purple-3);
    border-radius: 8px;
    padding: 7px 12px;
    color: var(--white);
    font-family: var(--font-script);
    font-size: 18px;
    font-weight: 700;
    line-height: 0.9;
}

.hero-lead {
    max-width: 615px;
    margin-bottom: 30px;
    color: var(--purple-1);
    font-size: 21px;
    line-height: 1.45;
}

.hero-cta {
    display: inline-flex;
    min-height: 56px;
    align-items: center;
    justify-content: center;
    gap: 24px;
    border: 1px solid var(--white);
    border-radius: 8px;
    padding: 12px 22px;
    background: var(--white);
    color: var(--ink);
    font-size: 16px;
    font-weight: 760;
    text-decoration: none;
}

.hero-cta:hover {
    background: var(--orange);
    border-color: var(--orange);
}

.hero-cta span {
    font-size: 23px;
    line-height: 1;
}

.hero-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 9px 20px;
    max-width: 610px;
    margin: 30px 0 0;
    padding: 0;
    color: var(--purple-2);
    font-size: 14px;
    list-style: none;
}

.hero-facts li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero-facts li::before {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--orange);
    content: "";
}

.robot-concept {
    position: relative;
    display: flex;
    min-height: 620px;
    margin: 0;
    align-items: stretch;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
    padding: 34px 28px 36px;
    background: var(--purple-1);
}

.robot-concept > img {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: contain;
    object-position: center bottom;
}

.robot-stage {
    position: absolute;
    right: -46px;
    bottom: 0;
    left: -24px;
    min-height: 650px;
    overflow: hidden;
}

.robot-stage::before {
    position: absolute;
    top: 88px;
    right: 0;
    width: 220px;
    height: 220px;
    border: 2px solid var(--purple-3);
    border-radius: 50%;
    content: "";
}

.robot-stage::after {
    position: absolute;
    top: 145px;
    right: 72px;
    width: 75px;
    height: 75px;
    border: 2px solid var(--white);
    border-radius: 50%;
    box-shadow: 118px 94px 0 -18px var(--orange);
    content: "";
}

.stage-grid {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 64px;
    height: 206px;
    border-top: 2px solid var(--purple-3);
    transform: skewY(-7deg);
    transform-origin: bottom left;
}

.stage-grid::before,
.stage-grid::after {
    position: absolute;
    background: var(--purple-3);
    content: "";
}

.stage-grid::before {
    top: 0;
    bottom: -65px;
    left: 34%;
    width: 2px;
}

.stage-grid::after {
    right: 0;
    bottom: 74px;
    left: 0;
    height: 2px;
}

.robot-sensor {
    position: absolute;
    top: 127px;
    left: 52%;
    width: 116px;
    height: 62px;
    transform: translateX(-50%) rotate(-3deg);
    border: 5px solid var(--ink);
    border-radius: 23px 23px 11px 11px;
    background: var(--white);
}

.robot-sensor::after {
    position: absolute;
    top: 17px;
    right: 19px;
    width: 18px;
    height: 18px;
    border: 3px solid var(--ink);
    border-radius: 50%;
    background: var(--orange);
    content: "";
}

.robot-mast {
    position: absolute;
    top: 180px;
    left: calc(52% - 9px);
    width: 18px;
    height: 190px;
    transform: rotate(-3deg);
    border: 3px solid var(--ink);
    border-top: 0;
    background: var(--pink);
}

.robot-body {
    position: absolute;
    top: 357px;
    left: 52%;
    display: flex;
    width: 342px;
    height: 164px;
    align-items: center;
    justify-content: center;
    gap: 16px;
    transform: translateX(-50%) rotate(-3deg);
    border: 6px solid var(--ink);
    border-radius: 38px 38px 20px 20px;
    background: var(--white);
}

.robot-panel {
    width: 48px;
    height: 64px;
    border: 4px solid var(--ink);
    border-radius: 8px;
    background: var(--violet-dark);
}

.robot-panel:nth-child(2) {
    background: var(--orange);
}

.robot-bumper {
    position: absolute;
    top: 514px;
    left: 52%;
    width: 398px;
    height: 27px;
    transform: translateX(-50%) rotate(-3deg);
    border: 5px solid var(--ink);
    border-radius: 18px;
    background: var(--mint);
}

.robot-wheel {
    position: absolute;
    top: 541px;
    width: 82px;
    height: 82px;
    border: 7px solid var(--ink);
    border-radius: 50%;
    background: var(--white);
}

.robot-wheel::after {
    position: absolute;
    inset: 21px;
    border: 5px solid var(--ink);
    border-radius: 50%;
    background: var(--orange);
    content: "";
}

.robot-wheel-left {
    left: calc(52% - 170px);
}

.robot-wheel-right {
    right: calc(48% - 170px);
}

.stage-label {
    position: absolute;
    max-width: 160px;
    color: var(--purple-1);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.25;
}

.stage-label-top {
    top: 58px;
    left: 58px;
}

.stage-label-bottom {
    right: 8px;
    bottom: 70px;
    color: var(--orange);
    text-align: right;
}

.robot-concept figcaption {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    margin: 0;
    padding: 14px 18px;
    background: rgb(25 25 25 / 78%);
    color: var(--white);
    font-size: 11px;
    line-height: 1.32;
}

.problem-section {
    background: var(--surface);
}

.section-intro {
    max-width: 890px;
}

.section-intro > p:last-child {
    max-width: 730px;
    margin-bottom: 0;
    color: var(--muted);
    font-size: 20px;
    line-height: 1.48;
}

.problem-list,
.technology-grid,
.role-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 78px;
}

.problem-item,
.technology-card {
    min-height: 320px;
    border-radius: 8px;
    padding: 26px;
    background: var(--violet-soft);
}

.problem-item:nth-child(2) {
    background: var(--pink);
}

.problem-item:nth-child(3) {
    background: var(--mint);
}

.item-number {
    display: block;
    margin-bottom: 94px;
    color: var(--violet-dark);
    font-size: 13px;
    font-weight: 820;
}

.problem-item p,
.technology-card p,
.section-heading > p,
.news-item p {
    margin-bottom: 0;
    color: var(--muted);
}

.scenarios-section {
    background: var(--white);
}

.scenario-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 64px;
}

.section-graphic {
    margin: 0;
    overflow: hidden;
    border-radius: 8px;
}

.section-graphic img {
    display: block;
    width: 100%;
    height: auto;
}

.scenario-graphic {
    margin-top: 58px;
}

.scenario-graphic + .scenario-grid {
    margin-top: 28px;
}

.scenario-card {
    min-height: 300px;
    border-top: 2px solid var(--ink);
    padding: 24px 24px 0 0;
}

.scenario-card + .scenario-card {
    border-left: 1px solid var(--line);
    padding-left: 24px;
}

.scenario-card span {
    display: block;
    margin-bottom: 82px;
    color: var(--violet);
    font-size: 13px;
    font-weight: 820;
}

.scenario-card p {
    max-width: 340px;
    margin-bottom: 0;
    color: var(--muted);
}

.product-section,
.contacts-section {
    background: var(--violet-deep);
    color: var(--white);
}

.product-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 110px;
}

.product-layout h2,
.contacts-layout h2 {
    margin-bottom: 0;
}

.product-flow {
    border-top: 1px solid var(--purple-5);
}

.flow-step {
    display: grid;
    grid-template-columns: 62px 1fr;
    gap: 20px;
    align-items: start;
    border-bottom: 1px solid var(--purple-5);
    padding: 27px 0;
}

.flow-step span {
    color: var(--orange);
    font-size: 13px;
    font-weight: 800;
}

.flow-step p,
.product-note,
.contacts-layout > p {
    margin: 0;
    color: var(--purple-1);
    font-size: 20px;
    line-height: 1.44;
}

.product-note {
    grid-column: 2;
    max-width: 610px;
    border-top: 1px solid var(--purple-5);
    padding-top: 25px;
    color: var(--purple-3);
    font-size: 15px;
    line-height: 1.5;
}

.product-route-map {
    position: relative;
    display: block;
    min-height: 260px;
    overflow: hidden;
    border: 1px solid var(--purple-5);
    border-radius: 8px;
    background: var(--black);
}

.route-map-path {
    position: absolute;
    top: 52%;
    right: 14%;
    left: 14%;
    border-top: 3px dotted var(--orange);
}

.route-map-node {
    position: absolute;
    top: calc(52% - 14px);
    width: 28px;
    height: 28px;
    border: 3px solid var(--purple-3);
    border-radius: 50%;
    background: var(--black);
}

.route-map-node-start {
    left: 14%;
    border-color: var(--orange);
    background: var(--orange);
}

.route-map-node-check {
    left: calc(50% - 14px);
    background: var(--mint);
}

.route-map-node-result {
    right: 14%;
    background: var(--purple-4);
}

.route-map-robot {
    position: absolute;
    z-index: 1;
    top: calc(52% - 52px);
    left: calc(50% - 26px);
    width: 52px;
    height: 52px;
    object-fit: contain;
}

.route-map-scan {
    position: absolute;
    top: calc(52% - 64px);
    left: calc(50% - 64px);
    width: 128px;
    height: 128px;
    border: 1px solid var(--teal-light);
    border-radius: 50%;
    opacity: 0.58;
}
}

.technology-section {
    background: var(--orange);
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 48px;
}

.section-heading h2 {
    margin-bottom: 0;
}

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

.technology-grid {
    margin-top: 62px;
}

.technology-graphic {
    margin-top: 58px;
    border: 1px solid rgb(25 25 25 / 26%);
}

.technology-graphic + .technology-grid {
    margin-top: 28px;
}

.technology-card {
    min-height: 310px;
    background: var(--white);
}

.technology-card:nth-child(2) {
    background: var(--mint);
}

.technology-card:nth-child(3) {
    background: var(--pink);
}

.technology-card .item-number {
    color: var(--violet);
}

.development-section {
    background: var(--surface);
}

.development-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
    gap: 120px;
}

.development-graphic {
    grid-column: 1;
    width: min(100%, 480px);
    margin-top: -42px;
}

.development-list {
    grid-column: 2;
    grid-row: 1 / span 2;
    margin: 0;
    padding: 0;
    list-style: none;
}

.development-list li {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 26px;
    border-top: 2px solid var(--ink);
    padding: 30px 0;
}

.development-list li:last-child {
    border-bottom: 2px solid var(--ink);
}

.development-index {
    color: var(--violet);
    font-size: 13px;
    font-weight: 820;
}

.development-list h3 {
    margin-bottom: 8px;
}

.development-list p {
    max-width: 560px;
    margin-bottom: 0;
    color: var(--muted);
}

.development-current h3,
.development-current .development-index {
    color: var(--violet);
}

.evidence-section {
    padding-top: 112px;
    padding-bottom: 112px;
    background: var(--mint);
}

.evidence-layout,
.contacts-layout,
.news-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.88fr);
    gap: 100px;
    align-items: end;
}

.evidence-layout h2,
.contacts-layout h2 {
    margin-bottom: 0;
}

.evidence-layout > p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 20px;
    line-height: 1.48;
}

.evidence-section .eyebrow {
    color: var(--violet-dark);
}

.evidence-status {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    margin-top: 78px;
    border-top: 2px solid var(--ink);
}

.evidence-status-item {
    min-height: 160px;
    padding: 24px 28px 0 0;
}

.evidence-status-item + .evidence-status-item {
    border-left: 1px solid rgb(25 25 25 / 28%);
    padding-left: 28px;
}

.evidence-status-item span {
    display: block;
    margin-bottom: 13px;
    color: var(--violet-dark);
    font-size: 14px;
    font-weight: 800;
}

.evidence-status-item p {
    max-width: 330px;
    margin-bottom: 0;
    color: var(--muted);
}

.team-section {
    background: var(--canvas);
}

.role-grid {
    margin-top: 62px;
}

.role-item {
    display: grid;
    min-height: 155px;
    grid-template-columns: 34px 1fr;
    gap: 16px;
    border-radius: 8px;
    padding: 24px;
    background: var(--white);
}

.role-item:nth-child(2) {
    background: var(--violet-soft);
}

.role-item:nth-child(3) {
    background: var(--pink);
}

.role-item span {
    color: var(--violet);
    font-size: 12px;
    font-weight: 820;
}

.role-item p {
    margin-bottom: 0;
    font-size: 20px;
    font-weight: 680;
    line-height: 1.24;
}

.news-section {
    background: var(--pink);
}

.news-item {
    border-top: 2px solid var(--ink);
    padding-top: 24px;
}

.news-item time {
    display: block;
    margin-bottom: 48px;
    color: var(--violet-dark);
    font-size: 13px;
    font-weight: 820;
}

.news-item h3 {
    font-size: 34px;
}

.contacts-layout {
    align-items: start;
}

.contacts-layout > p {
    max-width: 520px;
    color: var(--purple-2);
}

.site-footer {
    background: var(--black);
    color: var(--white);
}

.footer-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    border-bottom: 1px solid var(--purple-6);
    padding: 35px 0;
}

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

.footer-brand p {
    margin: 0;
    color: var(--purple-1);
    font-size: 14px;
    font-weight: 700;
}

.footer-brand .wordmark-mark {
    width: 46px;
    height: 46px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: end;
    gap: 20px;
}

.text-button {
    border: 0;
    padding: 0;
    background: transparent;
}

.hero {
    position: relative;
}

.hero-funding {
    position: absolute;
    z-index: 4;
    top: 18px;
    right: 0;
    left: 0;
}

.funding-strip {
    display: grid;
    grid-template-columns: auto minmax(0, 680px);
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    border: 1px solid var(--purple-4);
    border-radius: 8px;
    padding: 9px 14px;
    background: rgb(255 255 255 / 94%);
}

.support-logos {
    display: flex;
    align-items: center;
    gap: 10px;
}

.fasie-logo {
    width: 86px;
    background: var(--white);
}

.platform-logo {
    width: 56px;
    height: 40px;
    object-fit: contain;
}

.funding-strip p {
    margin: 0;
    color: var(--muted);
    font-size: 11px;
    font-weight: 600;
    line-height: 1.35;
}

.cookie-notice {
    position: fixed;
    z-index: 20;
    right: 24px;
    bottom: 24px;
    width: min(420px, calc(100% - 48px));
    border: 2px solid var(--ink);
    border-radius: 8px;
    padding: 20px;
    background: var(--white);
    color: var(--ink);
    box-shadow: 8px 8px 0 var(--ink);
}

.cookie-notice[hidden] {
    display: none;
}

.cookie-notice p {
    margin-bottom: 16px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.45;
}

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

.cookie-actions a {
    color: var(--violet-dark);
    font-size: 14px;
    font-weight: 750;
}

.cookie-actions button {
    border: 1px solid var(--violet);
    border-radius: 8px;
    padding: 9px 14px;
    background: var(--violet);
    color: var(--white);
    font-size: 14px;
    font-weight: 800;
}

.policy-main {
    min-height: calc(100vh - 76px);
    padding: 108px 0 144px;
    background: var(--canvas);
}

.policy-layout {
    max-width: 880px;
}

.back-link {
    display: inline-block;
    margin-bottom: 72px;
    color: var(--violet-dark);
    font-size: 14px;
    font-weight: 750;
    text-decoration: none;
}

.policy-layout h1 {
    max-width: 780px;
    margin-bottom: 16px;
    hyphens: auto;
    overflow-wrap: anywhere;
}

.policy-date {
    margin-bottom: 60px;
    color: var(--muted);
}

.policy-layout section {
    border-top: 1px solid var(--line);
    padding: 30px 0;
}

.policy-layout section:last-child {
    border-bottom: 1px solid var(--line);
}

.policy-layout section h2 {
    margin-bottom: 12px;
    font-size: 28px;
}

.policy-layout section p {
    margin-bottom: 0;
    color: var(--muted);
}

.policy-layout code {
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 2px 4px;
    color: var(--ink);
    background: var(--violet-soft);
}

.site-footer-compact .footer-main {
    border-bottom: 0;
}

@media (max-width: 1100px) {
    .container {
        width: min(100% - 64px, 1380px);
    }

    .header-content {
        grid-template-columns: minmax(200px, 1fr) auto minmax(58px, 1fr);
        gap: 20px;
    }

    .main-nav {
        gap: 17px;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 0.98fr) minmax(400px, 0.82fr);
        gap: 0;
    }

    .product-layout,
    .development-layout,
    .evidence-layout,
    .contacts-layout,
    .news-layout {
        gap: 72px;
    }

    .robot-stage {
        right: -92px;
        left: -70px;
    }
}

@media (max-width: 960px) {
    .container {
        width: min(100% - 40px, 1380px);
    }

    .section {
        padding: 96px 0;
    }

    .header-content {
        grid-template-columns: 1fr auto;
        min-height: 72px;
        gap: 16px;
    }

    .main-nav {
        grid-column: 1 / -1;
        grid-row: 2;
        justify-content: flex-start;
        gap: 22px;
        min-height: 42px;
        overflow-x: auto;
        padding-bottom: 12px;
        white-space: nowrap;
    }

    .language-link {
        grid-column: 2;
        grid-row: 1;
    }

    .hero {
        padding-top: 0;
    }

    .hero::after {
        display: none;
    }

    .hero-grid,
    .development-layout,
    .product-layout,
    .evidence-layout,
    .contacts-layout,
    .news-layout {
        grid-template-columns: 1fr;
        gap: 56px;
    }

    .development-graphic,
    .development-list {
        grid-column: auto;
        grid-row: auto;
    }

    .development-graphic {
        width: min(100%, 560px);
        margin-top: -28px;
    }

    .hero-grid {
        min-height: 0;
        gap: 32px;
    }

    .hero-copy {
        padding: 76px 0 0;
    }

    .robot-concept {
        min-height: 505px;
        padding: 22px 18px 28px;
    }

    .robot-stage {
        right: -22px;
        bottom: 0;
        left: -22px;
        min-height: 505px;
        transform: scale(0.78);
        transform-origin: bottom center;
    }

    .robot-concept figcaption {
        right: 0;
        bottom: 0;
        left: 0;
    }

    .problem-list,
    .technology-grid,
    .role-grid,
    .scenario-grid,
    .evidence-status {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 48px;
    }

    .problem-item,
    .technology-card {
        min-height: 220px;
    }

    .item-number {
        margin-bottom: 48px;
    }

    .scenario-card {
        min-height: 0;
        padding: 24px 0;
    }

    .scenario-card + .scenario-card {
        border-top: 1px solid var(--line);
        border-left: 0;
        padding-left: 0;
    }

    .scenario-card span {
        margin-bottom: 32px;
    }

    .evidence-status {
        gap: 0;
    }

    .evidence-status-item {
        min-height: 0;
        padding: 22px 0;
    }

    .evidence-status-item + .evidence-status-item {
        border-top: 1px solid rgb(25 25 25 / 28%);
        border-left: 0;
        padding-left: 0;
    }

    .section-heading {
        display: block;
    }

    .section-heading > p {
        margin-top: 22px;
    }

    .product-note {
        grid-column: auto;
    }

    .funding-strip {
        grid-template-columns: auto minmax(0, 1fr);
        gap: 14px;
    }
}

@media (max-width: 560px) {
    .container {
        width: min(100% - 32px, 1380px);
    }

    h1 {
        font-size: 51px;
    }

    h2 {
        font-size: 42px;
    }

    h3 {
        font-size: 24px;
    }

    .funding-strip {
        grid-template-columns: 1fr;
        gap: 6px;
        padding: 8px 10px;
    }

    .funding-strip p {
        font-size: 10px;
    }

    .hero-lead,
    .section-intro > p:last-child,
    .flow-step p,
    .evidence-layout > p,
    .contacts-layout > p {
        font-size: 18px;
    }

    .hero-facts {
        display: grid;
        gap: 8px;
    }

    .robot-concept {
        min-height: 420px;
    }

    .robot-stage {
        right: -115px;
        left: -115px;
        transform: scale(0.62);
    }

    .stage-label {
        font-size: 12px;
    }

    .development-list li {
        grid-template-columns: 48px 1fr;
        gap: 16px;
    }

    .footer-main {
        display: block;
    }

    .footer-links {
        justify-content: flex-start;
        margin-top: 20px;
    }

    .support-logos {
        align-items: flex-start;
        flex-direction: column;
    }

    .cookie-notice {
        right: 16px;
        bottom: 16px;
        width: calc(100% - 32px);
    }

    .policy-main {
        padding: 72px 0 96px;
    }

    .back-link {
        margin-bottom: 52px;
    }
}

html:has(body.landing-page) {
    scroll-snap-type: y mandatory;
    scroll-padding-top: 0;
}

body.landing-page .section,
body.landing-page .site-footer {
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.route-navigation {
    --route-robot-x: 30px;
    --route-robot-y: 0px;
    position: fixed;
    z-index: 15;
    top: 50%;
    left: 0;
    width: 156px;
    height: min(480px, calc(100svh - 160px));
    transform: translateY(-50%);
    pointer-events: none;
}

.route-track {
    position: absolute;
    top: 8px;
    bottom: 8px;
    left: 0;
    width: 60px;
    height: calc(100% - 16px);
    overflow: visible;
}

.route-track path {
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.route-track-base {
    stroke: var(--purple-3);
    stroke-width: 5;
}

.route-track-progress {
    stroke: var(--mint);
    stroke-width: 5;
    stroke-dasharray: 0 100;
}

.route-track-active {
    stroke: var(--orange);
    stroke-width: 6;
    stroke-dasharray: 8 92;
    stroke-dashoffset: 100;
}

.route-stops {
    position: relative;
    z-index: 1;
    display: flex;
    width: 60px;
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.route-stop {
    position: relative;
    display: grid;
    width: 30px;
    height: 30px;
    color: var(--ink);
    text-decoration: none;
    transform: translateX(var(--route-stop-offset, 0px));
    transition: transform 180ms ease;
    place-items: center;
    pointer-events: auto;
}

.route-stop-symbol {
    display: grid;
    width: 24px;
    height: 24px;
    border: 2px solid var(--ink);
    border-radius: 50%;
    background: var(--white);
    color: var(--ink);
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    transition: transform 180ms ease, background 180ms ease, color 180ms ease;
    place-items: center;
}

.route-stop-tooltip {
    position: absolute;
    left: calc(100% + 10px);
    width: max-content;
    max-width: 94px;
    border: 1px solid var(--ink);
    border-radius: 6px;
    padding: 5px 8px;
    background: var(--white);
    color: var(--ink);
    font-size: 11px;
    font-weight: 720;
    line-height: 1.1;
    opacity: 0;
    pointer-events: none;
    transform: translateX(-4px) scale(0.96);
    transform-origin: left center;
    transition: opacity 160ms ease, transform 160ms ease;
}

.route-stop::after {
    position: absolute;
    inset: 0;
    border: 2px solid var(--orange);
    border-radius: 50%;
    content: "";
    opacity: 0;
    pointer-events: none;
}

.route-stop:hover .route-stop-symbol,
.route-stop:focus-visible .route-stop-symbol {
    background: var(--purple-2);
    transform: scale(1.08);
}

.route-stop:hover .route-stop-tooltip,
.route-stop:focus-visible .route-stop-tooltip {
    opacity: 1;
    transform: translateX(0) scale(1);
}

.route-stop:focus-visible {
    outline: 0;
}

.route-stop:focus-visible::before {
    position: absolute;
    inset: -3px;
    border: 2px solid var(--orange);
    border-radius: 50%;
    content: "";
}

.route-stop.is-passed .route-stop-symbol {
    background: var(--mint);
}

.route-stop.is-active .route-stop-symbol {
    background: var(--orange);
    transform: scale(1.12);
}

.route-stop.is-active .route-stop-tooltip {
    border-color: var(--orange);
}

.route-stop.is-active::after {
    animation: route-point-scan 1.45s ease-out infinite;
}

.route-robot {
    position: absolute;
    z-index: 3;
    top: var(--route-robot-y);
    left: var(--route-robot-x);
    width: 30px;
    height: 30px;
    transform: translate(-50%, -50%);
    transition: top 380ms cubic-bezier(0.22, 0.9, 0.25, 1), left 380ms cubic-bezier(0.22, 0.9, 0.25, 1);
    pointer-events: none;
}

.route-navigation.is-moving .route-robot {
    transition-duration: 100ms;
    transition-timing-function: linear;
}

.route-robot img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: route-robot-drive 620ms ease-in-out infinite alternate;
}

.route-scanner {
    position: absolute;
    top: calc(100% - 3px);
    left: 50%;
    width: 2px;
    height: 32px;
    transform: translateX(-50%) scaleY(0.16);
    transform-origin: top;
    background: rgb(249 222 214 / 82%);
    opacity: 0;
}

.route-navigation[data-route-direction="backward"] .route-scanner {
    top: auto;
    bottom: calc(100% - 3px);
    transform-origin: bottom;
}

.route-navigation.is-scanning .route-scanner {
    animation: route-scan-forward 620ms ease-out;
}

.route-navigation.is-scanning[data-route-direction="backward"] .route-scanner {
    animation-name: route-scan-backward;
}

.route-particle {
    position: absolute;
    z-index: 2;
    top: 12%;
    left: 28px;
    width: 4px;
    height: 4px;
    border: 1px solid var(--ink);
    border-radius: 50%;
    background: var(--white);
    opacity: 0;
    animation: route-data-flow 3.8s linear infinite;
}

.route-particle-two {
    left: 39px;
    animation-delay: 1.2s;
}

.route-particle-three {
    left: 20px;
    animation-delay: 2.4s;
}

@keyframes route-point-scan {
    0% {
        transform: scale(0.45);
        opacity: 0.9;
    }

    100% {
        transform: scale(1.25);
        opacity: 0;
    }
}

@keyframes route-robot-drive {
    from {
        transform: translateY(-1px) rotate(-3deg);
    }

    to {
        transform: translateY(1px) rotate(3deg);
    }
}

@keyframes route-scan-forward {
    0% {
        opacity: 0;
        transform: translateX(-50%) rotate(12deg) scaleY(0.16);
    }

    30% {
        opacity: 0.82;
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) rotate(12deg) scaleY(1);
    }
}

@keyframes route-scan-backward {
    0% {
        opacity: 0;
        transform: translateX(-50%) rotate(-12deg) scaleY(0.16);
    }

    30% {
        opacity: 0.82;
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) rotate(-12deg) scaleY(1);
    }
}

@keyframes route-data-flow {
    0% {
        opacity: 0;
        transform: translate(0, 0) scale(0.6);
    }

    18% {
        opacity: 0.78;
    }

    52% {
        transform: translate(10px, 144px) scale(1);
    }

    82% {
        opacity: 0.68;
    }

    100% {
        opacity: 0;
        transform: translate(0, 286px) scale(0.6);
    }
}

@media (min-width: 961px) {
    body.landing-page .container {
        width: min(1280px, calc(100% - 320px));
    }

    body.landing-page .section {
        display: flex;
        height: 100svh;
        min-height: 100svh;
        max-height: 100svh;
        align-items: center;
        padding: clamp(30px, 5.6svh, 64px) 0;
        overflow: clip;
    }

    body.landing-page h1 {
        margin-bottom: 20px;
        font-size: clamp(52px, 5.7vw, 92px);
    }

    body.landing-page h2 {
        margin-bottom: 20px;
        font-size: clamp(40px, 4vw, 68px);
    }

    body.landing-page h3 {
        margin-bottom: 9px;
        font-size: clamp(20px, 1.65vw, 25px);
    }

    body.landing-page .hero {
        display: block;
        padding: 0;
    }

    body.landing-page .hero-grid {
        grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
        min-height: 100svh;
        height: 100svh;
        gap: clamp(24px, 4vw, 56px);
        align-items: center;
        padding-top: 68px;
    }

    body.landing-page .hero-copy {
        padding: 0;
    }

    body.landing-page .hero-lead {
        margin-bottom: 24px;
        font-size: clamp(17px, 1.4vw, 20px);
    }

    body.landing-page .hero-facts {
        margin-top: 22px;
    }

    body.landing-page .robot-concept {
        min-height: 0;
        height: clamp(420px, 72svh, 640px);
        padding: 22px 22px 32px;
    }

    body.landing-page .section-intro > p:last-child,
    body.landing-page .flow-step p,
    body.landing-page .evidence-layout > p,
    body.landing-page .contacts-layout > p {
        font-size: clamp(16px, 1.35vw, 19px);
    }

    body.landing-page .problem-list,
    body.landing-page .technology-grid,
    body.landing-page .role-grid {
        gap: 14px;
        margin-top: clamp(28px, 5svh, 58px);
    }

    body.landing-page .problem-item,
    body.landing-page .technology-card {
        min-height: 0;
        padding: clamp(18px, 2.2vw, 26px);
    }

    body.landing-page .item-number {
        margin-bottom: clamp(30px, 5svh, 66px);
    }

    body.landing-page .scenario-graphic,
    body.landing-page .technology-graphic {
        width: min(540px, 44vw);
        height: auto;
        aspect-ratio: 1672 / 941;
        margin-top: clamp(24px, 4svh, 44px);
        margin-right: 0;
        margin-left: auto;
    }

    body.landing-page .section-graphic img {
        height: 100%;
        object-fit: cover;
    }

    body.landing-page .scenario-graphic + .scenario-grid,
    body.landing-page .technology-graphic + .technology-grid {
        margin-top: clamp(14px, 2.5svh, 24px);
    }

    body.landing-page .scenario-grid {
        gap: 14px;
        margin-top: clamp(30px, 5svh, 54px);
    }

    body.landing-page .scenario-card {
        min-height: 0;
        padding-top: 16px;
    }

    body.landing-page .scenario-card span {
        margin-bottom: clamp(22px, 4svh, 50px);
    }

    body.landing-page .product-layout {
        grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
        grid-template-rows: auto 1fr;
        gap: 28px clamp(46px, 7vw, 100px);
    }

    body.landing-page .product-flow {
        align-self: start;
    }

    body.landing-page .flow-step {
        grid-template-columns: 46px 1fr;
        gap: 16px;
        padding: clamp(12px, 2svh, 20px) 0;
    }

    body.landing-page .product-note {
        align-self: end;
        grid-column: 2;
        padding-top: 16px;
    }

    body.landing-page .product-route-map {
        align-self: end;
        grid-column: 1;
        grid-row: 2;
        height: clamp(174px, 28svh, 270px);
        min-height: 0;
        margin: 0;
    }

    body.landing-page .development-layout {
        gap: clamp(44px, 8vw, 96px);
    }

    body.landing-page .development-graphic {
        height: clamp(170px, 31svh, 278px);
        margin-top: -16px;
    }

    body.landing-page .development-list li {
        grid-template-columns: 52px 1fr;
        gap: 16px;
        padding: clamp(12px, 2.2svh, 22px) 0;
    }

    body.landing-page .evidence-section {
        padding-top: clamp(30px, 5.6svh, 64px);
        padding-bottom: clamp(30px, 5.6svh, 64px);
    }

    body.landing-page .evidence-layout,
    body.landing-page .contacts-layout,
    body.landing-page .news-layout {
        gap: clamp(44px, 7vw, 88px);
    }

    body.landing-page .evidence-status {
        margin-top: clamp(34px, 5svh, 58px);
    }

    body.landing-page .evidence-status-item {
        min-height: 0;
        padding-top: 18px;
    }

    body.landing-page .news-item time {
        margin-bottom: clamp(20px, 4svh, 42px);
    }

    body.landing-page .news-item h3 {
        font-size: clamp(26px, 2.4vw, 34px);
    }
}

@media (max-width: 960px) {
    .route-navigation {
        left: 4px;
        width: 34px;
        height: min(344px, 52svh);
    }

    .route-track {
        top: 6px;
        bottom: 6px;
        width: 34px;
        height: calc(100% - 12px);
    }

    .route-stops {
        width: 34px;
    }

    .route-stop {
        width: 28px;
        height: 28px;
    }

    .route-stop-symbol {
        width: 18px;
        height: 18px;
        border-width: 1px;
        font-size: 9px;
    }

    .route-stop-tooltip,
    .route-particle {
        display: none;
    }

    .route-robot {
        width: 22px;
        height: 22px;
    }

    .route-scanner {
        top: calc(100% - 2px);
        height: 22px;
    }

    .route-navigation[data-route-direction="backward"] .route-scanner {
        bottom: calc(100% - 2px);
    }

    body.landing-page .section {
        min-height: 100svh;
        padding: 72px 0;
    }

    body.landing-page .container {
        width: min(100% - 80px, 1380px);
    }

    body.landing-page .hero {
        padding: 0 0 48px;
    }

    body.landing-page .hero-grid {
        min-height: 100svh;
        padding-top: 174px;
    }

    body.landing-page .hero-copy {
        padding-top: 0;
    }

    body.landing-page .product-route-map {
        min-height: 220px;
    }
}

.scenario-card {
    display: block;
    min-height: 0;
    overflow: visible;
    border: 0;
    border-radius: 0;
    padding: 0;
    background: transparent;
}

body.landing-page .scenario-card {
    min-height: 0;
    border: 0;
    border-radius: 0;
    padding: 0;
    background: transparent;
}

.scenario-card + .scenario-card {
    border-left: 1px solid var(--line);
    padding-left: 16px;
}

.scenario-card-media {
    height: auto;
    margin: 0;
    overflow: hidden;
    border-radius: 8px;
    background: var(--purple-1);
    aspect-ratio: 520 / 340;
}

.scenario-card-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.scenario-card-copy {
    min-width: 0;
    border-top: 2px solid var(--ink);
    padding: 16px 0 0;
}

.scenario-card span {
    display: block;
    margin: 0 0 14px;
    color: var(--violet);
    font-size: 13px;
    font-weight: 820;
}

.scenario-card h3 {
    margin-bottom: 8px;
}

.scenario-card p {
    max-width: none;
}

.technology-card {
    display: block;
    min-height: 0;
    overflow: visible;
    padding: 0;
    background: transparent;
}

body.landing-page .technology-card {
    min-height: 0;
    border: 0;
    border-radius: 0;
    padding: 0;
    background: transparent;
}

.technology-card-media {
    width: 100%;
    height: clamp(150px, 20svh, 190px);
    margin: 0;
    overflow: hidden;
    border: 1px solid rgb(25 25 25 / 26%);
    border-radius: 8px;
    background: var(--orange);
}

.technology-card-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.technology-card-copy {
    min-width: 0;
    border-top: 2px solid var(--ink);
    padding: 16px 0 0;
}

.technology-card-copy .item-number {
    margin-bottom: 12px;
}

.technology-card-copy h3 {
    margin-bottom: 8px;
}

@media (min-width: 961px) {
    body.landing-page .scenario-grid,
    body.landing-page .technology-grid {
        margin-top: clamp(28px, 4svh, 42px);
    }
}

@media (max-width: 960px) {
    body.landing-page .scenario-card {
        padding: 0;
    }

    body.landing-page .scenario-card + .scenario-card {
        border-top: 1px solid var(--line);
        border-left: 1px solid var(--line);
        padding-left: 0;
    }

    body.landing-page .scenario-card-copy {
        padding: 16px 0 0;
    }

    body.landing-page .technology-card {
        padding: 0;
    }

    body.landing-page .technology-card-media {
        height: 184px;
    }

    body.landing-page .technology-card-copy {
        padding: 16px 0 0;
    }
}

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

    .route-stop.is-active::after,
    .route-robot img,
    .route-scanner {
        animation: none;
    }

    .route-robot {
        transition: none;
    }
}
