@font-face {
    font-family: "Jost";
    src: url("../fonts/jost-cyrillic.d135949ebb72.woff2") format("woff2");
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
    font-family: "Jost";
    src: url("../fonts/jost-latin.928f4210aa48.woff2") format("woff2");
    font-style: normal;
    font-weight: 100 900;
    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 {
    --ink: #121212;
    --blue: #073b60;
    --blue-dark: #032438;
    --accent: #f06847;
    --paper: #f1f1f1;
    --peach: #fff4f1;
    --purple: #43006f;
    --white: #fff;
    --radius: 20px;
}

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

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

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: "Jost", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.42;
    -webkit-font-smoothing: antialiased;
}

body.menu-open,
body:has(dialog[open]) {
    overflow: hidden;
}

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

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

button,
input,
textarea {
    font: inherit;
}

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

.container {
    width: min(1160px, calc(100% - 40px));
    margin-inline: auto;
}

.section-pad {
    padding-inline: max(20px, env(safe-area-inset-left));
}

.section-title {
    margin: 0 0 34px;
    font-size: 35px;
    font-weight: 500;
    line-height: 1.1;
    text-transform: uppercase;
}

.section-title--center {
    text-align: center;
    text-transform: none;
}

.button {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    padding: 12px 29px;
    border: 0;
    border-radius: 16px;
    cursor: pointer;
    font-weight: 450;
    transition: transform 160ms ease, background-color 160ms ease, color 160ms ease;
}

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

.button:focus-visible,
a:focus-visible,
summary:focus-visible,
.menu-toggle:focus-visible {
    outline: 3px solid #78bdf0;
    outline-offset: 3px;
}

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

.button--small {
    min-height: 36px;
    padding: 8px 23px;
    border-radius: 12px;
    font-size: 13px;
}

.button--wide {
    width: min(220px, 100%);
}

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

.skip-link {
    position: fixed;
    z-index: 9999;
    top: 8px;
    left: 8px;
    padding: 9px 14px;
    background: var(--white);
    color: var(--ink);
    transform: translateY(-150%);
}

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

.site-header {
    position: sticky;
    z-index: 100;
    top: 0;
    height: 60px;
    background: var(--ink);
    color: var(--white);
    transition: transform 220ms ease;
}

.site-header.is-hidden {
    transform: translateY(-100%);
}

.site-header__inner {
    display: flex;
    width: min(1200px, 100%);
    height: 100%;
    align-items: center;
    justify-content: space-between;
    padding-right: 36px;
    padding-left: 60px;
}

.site-logo {
    flex: 0 0 auto;
    width: 112px;
}

.site-logo img {
    width: 112px;
    height: auto;
    object-fit: contain;
}

.site-nav {
    display: flex;
    align-items: center;
    font-size: 14px;
    text-transform: uppercase;
}

.site-nav a {
    display: inline-flex;
    height: 56px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    transition: background-color 200ms ease, color 200ms ease;
}

.site-nav a:nth-child(1) {
    width: 48px;
}

.site-nav a:nth-child(2) {
    width: 84px;
    margin-left: 1px;
}

.site-nav a:nth-child(3) {
    width: 84px;
    margin-left: 7px;
}

.site-nav a:nth-child(4) {
    width: 162px;
}

.site-nav a:nth-child(5) {
    width: 162px;
    margin-left: -8px;
}

.site-nav a:not(.site-nav__contact):hover,
.site-nav a:not(.site-nav__contact):focus-visible {
    background: #1e1f1f;
}

.site-nav__contact {
    width: 143px;
    height: 40px !important;
    margin-left: 18px;
    border-radius: 15px !important;
    background: var(--white);
    color: #1d1d1b;
    text-align: center;
}

.site-nav__contact:hover {
    background: #e8e8e8;
}

.menu-toggle {
    display: none;
    width: 36px;
    height: 36px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--white);
}

.menu-toggle > span:not(.sr-only) {
    position: absolute;
    left: 0;
    display: block;
    width: 100%;
    height: 4px;
    border-radius: 999px;
    background: currentColor;
    transition: top 180ms ease, transform 180ms ease, opacity 180ms ease;
}

.menu-toggle > span:nth-child(1) {
    top: 7px;
}

.menu-toggle > span:nth-child(2) {
    top: 16px;
}

.menu-toggle > span:nth-child(3) {
    top: 25px;
}

.hero {
    padding-top: 30px;
    padding-bottom: 60px;
}

.hero__inner {
    position: relative;
    display: flex;
    min-height: 424px;
    overflow: hidden;
    flex-direction: column;
    align-items: flex-start;
    padding: 39px 44px 20px;
    border-radius: 23px;
    background-color: #173e60;
    background-image: linear-gradient(90deg, rgba(16, 53, 84, 0.94), rgba(16, 53, 84, 0.34)),
        var(--hero-image);
    background-position: 71.688% 0;
    background-repeat: no-repeat;
    background-size: 241.5% auto;
    color: var(--white);
}

.hero__heading {
    position: relative;
    z-index: 1;
}

.hero h1 {
    max-width: 980px;
    margin-bottom: 8px;
    font-size: clamp(32px, 2.75vw, 38px);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.05;
    text-transform: uppercase;
}

.hero__heading p {
    margin: 0;
    font-size: 21px;
    font-weight: 350;
    text-transform: uppercase;
}

.hero__text {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: auto 0 36px;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.55;
}

.hero .button {
    position: relative;
    z-index: 1;
}

.hero__mark {
    position: absolute;
    z-index: 1;
    top: 35px;
    right: 41px;
    width: 57px;
    height: 76px;
    object-fit: contain;
}

.intro {
    padding-bottom: 76px;
}

.intro__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.37fr) minmax(340px, 1fr);
    gap: 23px;
}

.intro__copy,
.intro__image {
    height: 423px;
    overflow: hidden;
    border-radius: var(--radius);
}

.intro__copy {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 45px 40px 94px;
    border: 1px solid var(--blue);
    background: var(--white);
}

.intro__copy h2 {
    max-width: 620px;
    margin: 0;
    font-size: clamp(31px, 2.65vw, 37px);
    font-weight: 700;
    letter-spacing: -0.018em;
    line-height: 1.03;
    text-transform: uppercase;
}

.intro__copy p {
    max-width: 590px;
    margin: 45px 0 0;
    font-size: 19px;
    font-weight: 600;
    line-height: 1.45;
}

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

.needs {
    padding-top: 34px;
    padding-bottom: 80px;
}

.needs .section-title,
.development .section-title {
    margin-left: 52px;
}

.needs__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 39px;
}

.need-card {
    position: relative;
    min-height: 204px;
    overflow: hidden;
    padding: 31px 30px 24px;
    border: 1px solid var(--blue);
    border-radius: 16px;
    background: var(--white);
}

.need-card--accent {
    border-color: var(--accent);
    background: var(--accent);
    color: var(--white);
}

.need-card h3 {
    max-width: 250px;
    margin-bottom: 28px;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.03;
    text-transform: uppercase;
}

.need-card p {
    max-width: 280px;
    margin: 0;
    font-size: 14px;
    line-height: 1.25;
}

.development {
    padding-top: 72px;
    padding-bottom: 80px;
    background: var(--peach);
}

.stages__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.stage-card {
    position: relative;
    min-height: 198px;
    overflow: hidden;
    padding: 25px 56px 20px 22px;
    border: 1px solid var(--blue);
    border-radius: 10px;
    background: var(--white);
}

.stage-card h3 {
    margin-bottom: 24px;
    font-size: 24px;
    font-weight: 650;
    line-height: 1;
}

.stage-card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.12;
}

.stage-card__number {
    position: absolute;
    right: 15px;
    bottom: -8px;
    color: var(--accent);
    font-size: 58px;
    font-weight: 750;
    line-height: 1;
}

.services {
    margin-top: 94px;
}

.service-row {
    display: grid;
    align-items: center;
    grid-template-columns: minmax(0, 56%) minmax(0, 1fr);
    gap: 38px;
    margin-bottom: 52px;
}

.service-row:nth-child(even) .service-row__image {
    order: 2;
}

.service-row__image {
    height: 420px;
    overflow: hidden;
    border-radius: 19px;
    background: #d6d6d6;
}

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

.service-row__copy {
    padding: 18px 6px;
}

.service-row__copy h3 {
    margin-bottom: 24px;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.12;
}

.service-row__copy p {
    margin: 0;
    font-size: 16px;
}

.labs {
    padding-top: 55px;
    padding-bottom: 60px;
    background: var(--paper);
}

.labs .section-title {
    margin-left: 52px;
}

.labs__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 40px;
}

.lab-card {
    position: relative;
    display: flex;
    min-height: 416px;
    flex-direction: column;
    padding: 31px;
    border-radius: 16px;
    background: var(--white);
}

.lab-card--linked {
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.lab-card--linked:hover {
    box-shadow: 0 14px 35px rgba(18, 18, 18, 0.13);
    transform: translateY(-4px);
}

.lab-card__overlay {
    position: absolute;
    z-index: 1;
    inset: 0;
    border-radius: inherit;
}

.lab-card--linked h3,
.lab-card--linked .lab-card__bottom {
    z-index: 2;
}

.lab-card h3 {
    width: min(296px, 100%);
    min-height: 115px;
    margin: 0;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.1;
    text-transform: uppercase;
}

.lab-card > p {
    width: min(267px, 100%);
    min-height: 75px;
    margin: 34px 0 0;
    font-size: 14px;
    line-height: 1.1;
}

.lab-card > img {
    width: 112px;
    height: 94px;
    margin: 15px auto 0;
    object-fit: contain;
}

.lab-card__bottom {
    position: absolute;
    right: 20px;
    bottom: 19px;
    left: 31px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
}

.lab-card__bottom .button {
    width: 124px;
    min-height: 33px;
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 14px;
}

.lab-dialog {
    width: min(900px, calc(100% - 32px));
    max-height: calc(100vh - 32px);
    padding: 55px;
    border: 0;
    border-radius: 24px;
    background: var(--white);
    color: var(--ink);
}

.lab-dialog::backdrop {
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(3px);
}

.lab-dialog__close {
    position: absolute;
    top: 16px;
    right: 20px;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    font-size: 37px;
    font-weight: 300;
    line-height: 1;
}

.lab-dialog__eyebrow {
    color: var(--accent);
    font-size: 14px;
    font-weight: 650;
    text-transform: uppercase;
}

.lab-dialog h2 {
    max-width: 690px;
    margin: 10px 0 20px;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1;
    text-transform: uppercase;
}

.lab-dialog__lead {
    max-width: 720px;
    font-size: 18px;
}

.lab-dialog__columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin: 36px 0;
}

.lab-dialog__columns > div {
    padding: 24px;
    border-radius: 16px;
    background: var(--paper);
}

.lab-dialog__columns h3 {
    margin-bottom: 13px;
    font-size: 20px;
    text-transform: uppercase;
}

.lab-dialog__columns p {
    margin: 0;
}

.materials {
    padding-top: 61px;
    padding-bottom: 72px;
    background: var(--peach);
}

.materials__grid,
.news__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 39px;
}

.material-card {
    display: flex;
    flex-direction: column;
}

.material-card > img {
    width: 100%;
    aspect-ratio: 1 / 1;
    margin-bottom: 19px;
    border-radius: 16px;
    object-fit: cover;
}

.material-card h3 {
    margin-bottom: 13px;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.05;
}

.material-card p {
    min-height: 80px;
    margin-bottom: 22px;
    font-size: 14px;
}

.material-card .button {
    margin-top: auto;
}

.news {
    padding-top: 70px;
    padding-bottom: 80px;
}

.section-heading-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
}

.news .section-title {
    margin-left: 40px;
}

.section-heading-row > a {
    border-bottom: 1px solid currentColor;
    font-size: 15px;
}

.news-card {
    overflow: hidden;
    border-radius: 19px;
    background: var(--white);
}

.news-card__image {
    display: block;
    overflow: hidden;
    aspect-ratio: 1.45 / 1;
    background: #d8d8d8;
}

.news-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 300ms ease;
}

.news-card:hover .news-card__image img {
    transform: scale(1.035);
}

.news-card__copy {
    display: flex;
    min-height: 245px;
    flex-direction: column;
    padding: 26px 28px 23px;
}

.news-card h2,
.news-card h3 {
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.12;
}

.news-card p {
    display: -webkit-box;
    overflow: hidden;
    margin-bottom: 20px;
    font-size: 14px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.news-card time {
    margin-top: auto;
    color: #777;
    font-size: 11px;
    letter-spacing: 0.08em;
}

.faq {
    padding-top: 58px;
    padding-bottom: 76px;
}

.faq__inner {
    max-width: 1050px;
}

.faq__list details {
    border-bottom: 1px solid #d3d3d3;
}

.faq__list summary {
    position: relative;
    padding: 20px 48px 20px 0;
    cursor: pointer;
    font-size: 17px;
    font-weight: 600;
    list-style: none;
}

.faq__list summary::-webkit-details-marker {
    display: none;
}

.faq__list summary::after {
    position: absolute;
    top: 50%;
    right: 8px;
    color: #555;
    content: "+";
    font-size: 28px;
    font-weight: 300;
    transform: translateY(-50%);
}

.faq__list details[open] summary::after {
    content: "×";
}

.faq__list details p {
    max-width: 880px;
    margin: -4px 0 22px;
    color: #505050;
    font-size: 14px;
}

.contact-strip {
    padding-top: 60px;
    padding-bottom: 61px;
    background: var(--peach);
}

.contact-strip__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 90px;
}

.contact-strip h2 {
    margin: 0;
    font-size: 26px;
}

.contact-strip__inner > div {
    display: flex;
    flex-direction: column;
    font-size: 20px;
    font-weight: 600;
}

.site-footer {
    padding: 48px 20px 28px;
    background: var(--purple);
    color: var(--white);
    font-size: 13px;
    text-transform: uppercase;
}

.site-footer__grid {
    position: relative;
    display: grid;
    grid-template-columns: 150px 135px 180px 170px 1fr;
    gap: 29px;
}

.site-footer__brand img {
    width: 125px;
    height: auto;
}

.site-footer__links,
.site-footer__column {
    display: flex;
    flex-direction: column;
}

.site-footer strong {
    margin-bottom: 7px;
}

.site-footer a:hover {
    text-decoration: underline;
}

.socials {
    display: flex;
    gap: 7px;
    margin-top: 13px;
}

.socials a {
    display: grid;
    width: 29px;
    height: 29px;
    place-items: center;
    border-radius: 7px;
    background: var(--white);
    color: var(--purple);
    font-size: 9px;
    font-weight: 800;
}

.review-link {
    display: grid;
    width: 86px;
    height: 86px;
    place-items: center;
    justify-self: center;
    border: 1px solid var(--white);
    border-radius: 50%;
    text-align: center;
}

.site-footer__legal {
    grid-column: 4 / -1;
    display: flex;
    justify-content: flex-end;
    gap: 24px;
    margin-top: -12px;
    font-size: 11px;
}

.blog-listing,
.article {
    min-height: 70vh;
    padding-top: 72px;
    padding-bottom: 90px;
}

.blog-listing__header {
    max-width: 780px;
    margin-bottom: 50px;
}

.blog-listing__header > a,
.article__back {
    display: inline-block;
    margin-bottom: 25px;
    border-bottom: 1px solid currentColor;
}

.blog-listing__header h1,
.article h1 {
    margin-bottom: 20px;
    font-size: clamp(40px, 6vw, 72px);
    line-height: 0.98;
    text-transform: uppercase;
}

.news__grid--listing {
    row-gap: 45px;
}

.article__inner {
    width: min(860px, calc(100% - 40px));
    margin-inline: auto;
}

.article time {
    display: block;
    margin-bottom: 12px;
    color: #666;
    font-size: 13px;
    letter-spacing: 0.08em;
}

.article__intro {
    max-width: 760px;
    margin-bottom: 38px;
    font-size: 21px;
    font-weight: 500;
}

.article__cover {
    width: 100%;
    margin: 0 0 45px;
    border-radius: var(--radius);
}

.article__body {
    font-size: 18px;
    line-height: 1.6;
}

.article__body h2,
.article__body h3 {
    margin-top: 2em;
    line-height: 1.1;
}

.article__body a {
    color: var(--blue);
    text-decoration: underline;
}

.back-link {
    display: inline-flex;
    margin-bottom: 29px;
    border-bottom: 1px solid currentColor;
    font-size: 14px;
}

.back-link--light {
    color: var(--white);
}

.laboratory-eyebrow {
    margin: 0 0 13px;
    color: var(--accent);
    font-size: 13px;
    font-weight: 650;
    letter-spacing: 0.04em;
    line-height: 1.1;
    text-transform: uppercase;
}

.laboratory-index {
    padding-top: 54px;
    padding-bottom: 90px;
}

.laboratory-index__heading {
    max-width: 740px;
    margin-bottom: 46px;
}

.laboratory-index h1 {
    margin-bottom: 19px;
    font-size: clamp(40px, 5.2vw, 68px);
    line-height: 0.95;
    text-transform: uppercase;
}

.laboratory-index__heading > p:last-child {
    margin: 0;
    font-size: 20px;
}

.laboratory-index__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.laboratory-index-card {
    display: flex;
    min-width: 0;
    min-height: 330px;
    flex-direction: column;
    padding: 32px;
    border-radius: 22px;
    background: var(--white);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.laboratory-index-card:hover {
    box-shadow: 0 14px 35px rgba(18, 18, 18, 0.12);
    transform: translateY(-4px);
}

.laboratory-index-card--ai {
    background: #073b60;
    color: var(--white);
}

.laboratory-index-card--industrial {
    background: var(--peach);
}

.laboratory-index-card > span,
.laboratory-index-card strong {
    font-size: 13px;
    text-transform: uppercase;
}

.laboratory-index-card h2 {
    max-width: 470px;
    margin: 25px 0 17px;
    font-size: clamp(27px, 3vw, 40px);
    line-height: 0.98;
    text-transform: uppercase;
}

.laboratory-index-card p {
    max-width: 510px;
    margin: 0;
}

.laboratory-index-card strong {
    margin-top: auto;
    padding-top: 22px;
}

.laboratory-hero {
    padding-top: 30px;
    padding-bottom: 62px;
    color: var(--white);
}

.laboratory-hero--ai {
    background: #073b60;
}

.laboratory-hero--industrial {
    background: #43006f;
}

.laboratory-hero--robotics {
    background: #173e60;
}

.laboratory-hero .back-link {
    margin-top: 2px;
}

.laboratory-hero__grid {
    display: grid;
    min-height: 493px;
    overflow: hidden;
    grid-template-columns: minmax(0, 1.03fr) minmax(340px, 0.97fr);
    border-radius: 24px;
    background: rgba(0, 0, 0, 0.12);
}

.laboratory-hero__copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 48px 48px 42px;
}

.laboratory-hero .laboratory-eyebrow {
    color: #f0b9a8;
}

.laboratory-hero h1 {
    max-width: 670px;
    margin-bottom: 17px;
    font-size: clamp(40px, 3.3vw, 52px);
    line-height: 0.94;
    overflow-wrap: normal;
    hyphens: none;
    text-transform: uppercase;
}

.laboratory-hero__subtitle {
    max-width: 570px;
    margin-bottom: 32px;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.12;
}

.laboratory-hero__summary {
    max-width: 585px;
    margin: auto 0 25px;
    font-size: 17px;
}

.laboratory-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.laboratory-tags span {
    padding: 7px 12px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 999px;
    font-size: 13px;
}

.laboratory-hero__image {
    min-height: 100%;
    background: rgba(0, 0, 0, 0.16);
}

.laboratory-hero__image img {
    width: 100%;
    height: 100%;
    min-height: 493px;
    object-fit: cover;
}

.laboratory-about {
    padding-top: 75px;
    padding-bottom: 75px;
}

.laboratory-about__grid {
    display: grid;
    grid-template-columns: minmax(180px, 0.48fr) minmax(0, 1fr);
    gap: 30px;
}

.laboratory-about h2,
.laboratory-section h2,
.laboratory-cta h2 {
    margin-bottom: 22px;
    font-size: clamp(32px, 3.4vw, 48px);
    line-height: 0.98;
    text-transform: uppercase;
}

.laboratory-about__grid > div > p {
    max-width: 780px;
    margin: 0;
    font-size: 20px;
    line-height: 1.34;
}

.laboratory-section {
    padding-top: 72px;
    padding-bottom: 75px;
}

.laboratory-section__heading {
    margin-bottom: 35px;
}

.laboratory-section__heading h2 {
    margin-bottom: 0;
}

.laboratory-directions {
    background: var(--peach);
}

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

.direction-card {
    min-height: 230px;
    padding: 26px 25px;
    border-radius: 17px;
    background: var(--white);
}

.direction-card > span {
    display: block;
    margin-bottom: 35px;
    color: var(--accent);
    font-size: 13px;
    font-weight: 650;
}

.direction-card h3 {
    margin-bottom: 12px;
    font-size: 21px;
    line-height: 1.05;
}

.direction-card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.25;
}

.laboratory-projects {
    background: var(--paper);
}

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

.laboratory-project-card {
    display: flex;
    overflow: hidden;
    min-height: 100%;
    flex-direction: column;
    border-radius: 19px;
    background: var(--white);
}

.laboratory-project-card__image {
    position: relative;
    aspect-ratio: 1.42 / 1;
    overflow: hidden;
    background: #d6d6d6;
}

.laboratory-project-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.laboratory-project-card__gallery {
    display: grid;
    width: 100%;
    height: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 2px;
    background: var(--white);
}

.laboratory-project-card__gallery:has(img:only-child) {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
}

.laboratory-project-card__gallery img {
    min-width: 0;
    min-height: 0;
}

.laboratory-project-card__gallery-count {
    position: absolute;
    right: 12px;
    bottom: 12px;
    z-index: 1;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(9, 17, 23, 0.82);
    color: var(--white);
    font-size: 12px;
    font-weight: 650;
}

.laboratory-project-card__copy {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 24px;
}

.laboratory-project-card__copy > span {
    margin-bottom: 12px;
    color: #777;
    font-size: 11px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.laboratory-project-card h3 {
    margin-bottom: 13px;
    font-size: 23px;
    line-height: 1.04;
    overflow-wrap: anywhere;
}

.laboratory-project-card p {
    display: -webkit-box;
    overflow: hidden;
    margin-bottom: 22px;
    font-size: 14px;
    line-height: 1.27;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}

.laboratory-project-card a,
.laboratory-project-card__more {
    margin-top: auto;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
    font-size: 14px;
    font-weight: 650;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.project-dialog {
    width: min(720px, calc(100% - 32px));
    max-height: min(780px, calc(100% - 36px));
    overflow: auto;
    padding: 42px 44px 40px;
    border: 0;
    border-radius: 22px;
    background: var(--white);
    color: var(--ink);
}

.project-dialog::backdrop {
    background: rgba(0, 25, 42, 0.72);
    backdrop-filter: blur(4px);
}

.project-dialog__close {
    position: absolute;
    top: 14px;
    right: 17px;
    width: 36px;
    height: 36px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--ink);
    cursor: pointer;
    font-size: 34px;
    font-weight: 300;
    line-height: 1;
}

.project-dialog__close:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

.project-dialog h2 {
    max-width: 600px;
    margin: 0 38px 25px 0;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 0.98;
    overflow-wrap: normal;
    hyphens: none;
    text-transform: uppercase;
}

.project-dialog__body {
    max-width: 630px;
    margin-bottom: 26px;
    font-size: 17px;
    line-height: 1.44;
}

.project-dialog__body p {
    margin: 0 0 16px;
}

.project-dialog__body p:last-child {
    margin-bottom: 0;
}


.laboratory-capabilities {
    background: #073b60;
    color: var(--white);
}

.laboratory-capabilities .laboratory-eyebrow {
    color: #f0b9a8;
}

.laboratory-capabilities__layout {
    display: grid;
    grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
    gap: 70px;
}

.capability-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.capability-grid span {
    display: flex;
    min-height: 83px;
    align-items: center;
    padding: 17px 20px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 14px;
    font-size: 16px;
    line-height: 1.12;
}

.laboratory-team {
    background: var(--white);
}

.laboratory-team-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.member-card {
    overflow: hidden;
    border-radius: 17px;
    background: var(--paper);
}

.member-card--head {
    box-shadow: inset 0 0 0 2px var(--accent);
}

.member-card__image {
    display: grid;
    aspect-ratio: 0.82 / 1;
    overflow: hidden;
    place-items: center;
    background: #d5d5d5;
    color: #555;
    font-size: 13px;
    text-align: center;
}

.member-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.member-card__copy {
    min-height: 126px;
    padding: 19px 17px 20px;
}

.member-card__copy > span {
    display: block;
    margin-bottom: 9px;
    color: var(--accent);
    font-size: 11px;
    font-weight: 650;
    line-height: 1.1;
    text-transform: uppercase;
}

.member-card h3 {
    margin-bottom: 8px;
    font-size: 19px;
    line-height: 1.04;
}

.member-card p {
    margin: 0;
    color: #555;
    font-size: 13px;
}

.laboratory-news {
    background: var(--paper);
}

.laboratory-news .section-heading-row {
    align-items: flex-end;
}

.laboratory-cta {
    padding-top: 68px;
    padding-bottom: 68px;
    background: var(--peach);
}

.laboratory-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 45px;
}

.laboratory-cta h2 {
    margin-bottom: 15px;
}

.laboratory-cta p:last-child {
    max-width: 720px;
    margin: 0;
    font-size: 17px;
}

/* AI laboratory: a restrained digital-luxury visual language. */
.laboratory-page--ai {
    --ai-violet: #6f2cff;
    --ai-violet-bright: #aa7cff;
    --ai-ink: #180b34;
    --ai-surface: #f7f4ff;
    --accent: var(--ai-violet);
}

.laboratory-page--ai .laboratory-hero--ai {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 18%, rgba(202, 132, 255, 0.34), transparent 24%),
        radial-gradient(circle at 88% 86%, rgba(68, 24, 180, 0.65), transparent 32%),
        linear-gradient(118deg, #180529 0%, #2f0b67 48%, #100323 100%);
}

.laboratory-page--ai .laboratory-hero--ai::before {
    position: absolute;
    z-index: -1;
    inset: 0;
    opacity: 0.34;
    background-image:
        linear-gradient(rgba(226, 207, 255, 0.16) 1px, transparent 1px),
        linear-gradient(90deg, rgba(226, 207, 255, 0.16) 1px, transparent 1px);
    background-position: 0 0;
    background-size: 54px 54px;
    content: "";
    animation: ai-grid-drift 28s linear infinite;
    mask-image: linear-gradient(90deg, #000, transparent 82%);
}

.laboratory-page--ai .laboratory-hero__grid {
    border: 1px solid rgba(238, 224, 255, 0.18);
    background: rgba(19, 4, 47, 0.48);
    box-shadow: 0 25px 70px rgba(7, 0, 24, 0.3);
    backdrop-filter: blur(8px);
}

.laboratory-page--ai .laboratory-hero__copy {
    position: relative;
}

.laboratory-page--ai .laboratory-hero__copy::before {
    width: 46px;
    height: 3px;
    margin-bottom: 19px;
    border-radius: 999px;
    background: linear-gradient(90deg, #e0b3ff, #7434ff);
    box-shadow: 0 0 18px rgba(199, 127, 255, 0.85);
    content: "";
}

.laboratory-page--ai .laboratory-hero .laboratory-eyebrow,
.laboratory-page--ai .laboratory-eyebrow {
    color: #b77cff;
}

.laboratory-page--ai .laboratory-hero__image {
    position: relative;
}

.laboratory-page--ai .laboratory-hero__image::before {
    position: absolute;
    z-index: 1;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(135deg, rgba(129, 55, 255, 0.43), transparent 45%, rgba(12, 0, 37, 0.35));
    content: "";
    mix-blend-mode: color;
}

.laboratory-page--ai .laboratory-hero__image::after {
    position: absolute;
    z-index: 2;
    top: 8%;
    right: -10%;
    width: min(20vw, 300px);
    aspect-ratio: 1;
    border: 1px solid rgba(230, 211, 255, 0.66);
    border-radius: 50%;
    box-shadow: 0 0 0 28px rgba(192, 134, 255, 0.08), 0 0 80px rgba(137, 73, 255, 0.6);
    content: "";
    animation: ai-orbit 20s linear infinite;
}

.laboratory-page--ai .laboratory-tags span {
    border-color: rgba(219, 194, 255, 0.58);
    background: rgba(150, 82, 255, 0.1);
}

.laboratory-page--ai .laboratory-about {
    background: linear-gradient(120deg, #fbf9ff, #f1eaff);
}

.laboratory-page--ai .laboratory-directions {
    background: #eee5fb;
}

.laboratory-page--ai .direction-card {
    border: 1px solid rgba(101, 47, 184, 0.1);
    box-shadow: 0 12px 30px rgba(59, 19, 111, 0.06);
}

.laboratory-page--ai .direction-card > span {
    color: var(--ai-violet);
}

.laboratory-page--ai .laboratory-projects {
    background: #150b27;
    color: var(--white);
}

.laboratory-page--ai .laboratory-project-card {
    border: 1px solid rgba(216, 185, 255, 0.16);
    background: #251141;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
}

.laboratory-page--ai .laboratory-project-card__copy > span {
    color: #d2b6ff;
}

.laboratory-page--ai .laboratory-capabilities {
    background:
        radial-gradient(circle at 83% 22%, rgba(173, 104, 255, 0.37), transparent 26%),
        linear-gradient(115deg, #2a0758, #12032e);
}

.laboratory-page--ai .capability-grid span {
    border-color: rgba(224, 205, 255, 0.35);
    background: rgba(255, 255, 255, 0.04);
}

.laboratory-page--ai .laboratory-team {
    background: #fbf9ff;
}

.laboratory-page--ai .member-card--head {
    box-shadow: inset 0 0 0 2px var(--ai-violet);
}

.laboratory-page--ai .laboratory-news {
    background: #f2ecfa;
}

.laboratory-page--ai .laboratory-cta {
    background: linear-gradient(100deg, #eaddfb, #f4edff);
}

@keyframes ai-grid-drift {
    to { background-position: 54px 54px; }
}

@keyframes ai-orbit {
    to { transform: rotate(360deg); }
}

/* Shared polish: material depth and deliberate interaction across the site. */
.site-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(16, 16, 17, 0.96);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.13);
    backdrop-filter: blur(14px);
}

.button {
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(14, 14, 18, 0.12);
}

.button::before {
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, transparent 25%, rgba(255, 255, 255, 0.25) 50%, transparent 74%);
    content: "";
    opacity: 0;
    transform: translateX(-120%);
    transition: transform 360ms ease, opacity 180ms ease;
}

.button:hover::before {
    opacity: 1;
    transform: translateX(120%);
}

.button--accent {
    background: linear-gradient(135deg, #ff7957, #e94e37);
}

.hero__inner,
.intro__copy,
.need-card,
.stage-card,
.service-row__image,
.material-card > img,
.news-card,
.lab-card {
    box-shadow: 0 18px 42px rgba(16, 19, 27, 0.08);
}

.hero__inner::after {
    position: absolute;
    right: -9%;
    bottom: -38%;
    width: 310px;
    aspect-ratio: 1;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    box-shadow: 0 0 0 28px rgba(255, 255, 255, 0.04), 0 0 0 57px rgba(255, 255, 255, 0.025);
    content: "";
    pointer-events: none;
}

.need-card,
.stage-card,
.news-card,
.laboratory-index-card,
.direction-card,
.laboratory-project-card,
.member-card {
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.need-card:hover,
.stage-card:hover,
.news-card:hover,
.laboratory-index-card:hover,
.direction-card:hover,
.laboratory-project-card:hover,
.member-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 42px rgba(21, 20, 31, 0.13);
}

.site-footer {
    position: relative;
    overflow: hidden;
    background: linear-gradient(120deg, #210033, #42006b 54%, #1d1236);
}

.site-footer::before {
    position: absolute;
    inset: 0;
    opacity: 0.22;
    background-image: linear-gradient(rgba(255, 255, 255, 0.17) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.17) 1px, transparent 1px);
    background-size: 44px 44px;
    content: "";
    mask-image: linear-gradient(90deg, #000, transparent 70%);
}

.site-footer__grid {
    position: relative;
    z-index: 1;
}

/* Industrial design: a warm technical atelier, distinct from the AI laboratory. */
.laboratory-page--industrial {
    --industrial-orange: #ff7453;
    --industrial-violet: #782cff;
    --industrial-ink: #1a1024;
}

.laboratory-page--industrial .laboratory-hero--industrial {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 24%, rgba(255, 156, 108, 0.27), transparent 24%),
        radial-gradient(circle at 89% 86%, rgba(102, 43, 224, 0.48), transparent 34%),
        linear-gradient(120deg, #160620, #371052 52%, #180322);
}

.laboratory-page--industrial .laboratory-hero--industrial::before {
    position: absolute;
    z-index: -1;
    inset: 0;
    opacity: 0.35;
    background-image:
        linear-gradient(rgba(255, 215, 194, 0.16) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 215, 194, 0.16) 1px, transparent 1px);
    background-position: 0 0;
    background-size: 48px 48px;
    content: "";
    animation: industrial-grid-drift 32s linear infinite;
    mask-image: linear-gradient(90deg, #000, transparent 86%);
}

.laboratory-page--industrial .laboratory-hero__grid {
    border: 1px solid rgba(255, 226, 214, 0.17);
    background: rgba(26, 7, 44, 0.5);
    box-shadow: 0 28px 72px rgba(8, 0, 17, 0.34);
    backdrop-filter: blur(9px);
}

.laboratory-page--industrial .laboratory-hero__copy::before {
    width: 44px;
    height: 3px;
    margin-bottom: 19px;
    border-radius: 999px;
    background: linear-gradient(90deg, #ffbea8, var(--industrial-orange));
    box-shadow: 0 0 18px rgba(255, 115, 82, 0.85);
    content: "";
}

.laboratory-page--industrial .laboratory-hero .laboratory-eyebrow,
.laboratory-page--industrial .laboratory-eyebrow {
    color: #ffad91;
}

.laboratory-page--industrial .laboratory-hero__image {
    position: relative;
}

.laboratory-page--industrial .laboratory-hero__image::before {
    position: absolute;
    z-index: 1;
    inset: 0;
    background: linear-gradient(130deg, rgba(255, 116, 83, 0.25), transparent 43%, rgba(82, 21, 161, 0.38));
    content: "";
    mix-blend-mode: color;
    pointer-events: none;
}

.laboratory-page--industrial .laboratory-hero__image::after {
    position: absolute;
    z-index: 2;
    top: 14%;
    right: -4%;
    width: min(19vw, 270px);
    aspect-ratio: 1;
    border: 1px solid rgba(255, 225, 207, 0.72);
    border-radius: 18%;
    box-shadow: 0 0 0 20px rgba(255, 116, 83, 0.08), 0 0 72px rgba(121, 53, 255, 0.5);
    content: "";
    transform: rotate(18deg);
    animation: industrial-reticle 14s ease-in-out infinite alternate;
}

.laboratory-page--industrial .laboratory-tags span {
    border-color: rgba(255, 209, 193, 0.62);
    background: rgba(255, 134, 103, 0.09);
}

.laboratory-page--industrial .laboratory-about {
    background: linear-gradient(115deg, #fff9f6, #f4ebff);
}

.laboratory-page--industrial .laboratory-directions {
    background: #f7e9e4;
}

.laboratory-page--industrial .direction-card {
    border: 1px solid rgba(124, 49, 77, 0.11);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 12px 30px rgba(61, 21, 38, 0.06);
}

.laboratory-page--industrial .direction-card > span {
    color: var(--industrial-orange);
}

.laboratory-page--industrial .laboratory-projects {
    background:
        radial-gradient(circle at 77% 13%, rgba(125, 47, 230, 0.35), transparent 25%),
        #160d22;
    color: var(--white);
}

.laboratory-page--industrial .laboratory-project-card {
    border: 1px solid rgba(255, 192, 166, 0.15);
    background: #281637;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2);
}

.laboratory-page--industrial .laboratory-project-card__copy > span {
    color: #ffc0ad;
}

.laboratory-page--industrial .laboratory-capabilities {
    background:
        radial-gradient(circle at 15% 92%, rgba(255, 111, 77, 0.31), transparent 29%),
        linear-gradient(115deg, #36105b, #12052b);
}

.laboratory-page--industrial .capability-grid span {
    border-color: rgba(255, 215, 205, 0.34);
    background: rgba(255, 255, 255, 0.035);
}

.laboratory-page--industrial .laboratory-team {
    background: #fff9f7;
}

.laboratory-page--industrial .member-card--head {
    box-shadow: inset 0 0 0 2px var(--industrial-orange);
}

.laboratory-page--industrial .laboratory-news {
    background: #f3eafa;
}

.laboratory-page--industrial .laboratory-cta {
    background: linear-gradient(110deg, #ffe7de, #f1e5ff);
}

@keyframes industrial-grid-drift {
    to { background-position: 48px 48px; }
}

@keyframes industrial-reticle {
    to { transform: rotate(34deg) scale(1.08); }
}

@media (max-width: 1199px) {
    .hero__inner {
        background-position: 100% 100%;
        background-size: 110.45% auto;
    }
}

@media (min-width: 980px) and (max-width: 1199px) {
    .site-header {
        height: 64px;
    }

    .site-header__inner {
        width: min(960px, 100%);
        padding-right: 39px;
        padding-left: 40px;
    }

    .site-logo,
    .site-logo img {
        width: 122px;
    }

    .site-nav {
        font-size: 14px;
    }

    .site-nav a:nth-child(1) {
        width: 30px;
    }

    .site-nav a:nth-child(2) {
        width: 51px;
        margin-left: 10px;
    }

    .site-nav a:nth-child(3) {
        width: 81px;
        margin-left: 10px;
    }

    .site-nav a:nth-child(4) {
        width: 127px;
        margin-left: 10px;
    }

    .site-nav a:nth-child(5) {
        width: 133px;
        margin-left: 10px;
    }

    .site-nav__contact {
        width: 144px;
        height: 45px !important;
        margin-left: 27px;
    }
}

@media (min-width: 980px) and (max-width: 1399px) {
    .laboratory-hero h1 {
        font-size: clamp(42px, 3.55vw, 50px);
    }
}

@media (max-width: 1020px) {
    .hero__text {
        max-width: 860px;
    }

    .needs__grid,
    .labs__grid,
    .materials__grid,
    .news__grid {
        gap: 22px;
    }

    .stage-card h3 {
        font-size: 20px;
    }

    .site-footer__grid {
        grid-template-columns: 130px 1fr 1.2fr 1fr 100px;
    }
}

@media (max-width: 979px) {
    body::before {
        position: fixed;
        z-index: 101;
        inset: 0;
        background: rgba(255, 255, 255, 0.01);
        content: "";
        opacity: 0;
        pointer-events: none;
        transition: opacity 180ms ease;
        -webkit-backdrop-filter: blur(30px);
        backdrop-filter: blur(30px);
    }

    body.menu-open::before {
        opacity: 1;
    }

    body.menu-open::after {
        position: fixed;
        z-index: 100;
        top: 0;
        right: 0;
        left: 0;
        height: 64px;
        background: var(--ink);
        content: "";
        pointer-events: none;
    }

    body.menu-open .site-header {
        z-index: 102;
        background: transparent;
    }

    body.menu-open .site-logo {
        opacity: 0;
    }

    .site-header {
        --mobile-menu-height: 321px;
        --mobile-menu-left: calc(50% + 133px);
        --mobile-menu-link-top: 45px;
        --mobile-menu-top: 69px;
        --mobile-menu-width: 284px;
        height: 64px;
    }

    .site-header__inner {
        width: min(640px, 100%);
        padding-right: 38px;
        padding-left: 40px;
    }

    .site-logo,
    .site-logo img {
        width: 122px;
    }

    .menu-toggle {
        position: relative;
        display: block;
        flex: 0 0 auto;
        cursor: pointer;
    }

    .menu-toggle[aria-expanded="true"] {
        position: fixed;
        z-index: 103;
        top: calc(var(--mobile-menu-top) + 24px);
        left: calc(var(--mobile-menu-left) - var(--mobile-menu-width) / 2 + 27px);
        width: 30px;
        height: 30px;
    }

    .menu-toggle[aria-expanded="true"] > span:nth-child(1),
    .menu-toggle[aria-expanded="true"] > span:nth-child(3) {
        top: 13px;
        left: -5px;
        width: 40px;
    }

    .menu-toggle[aria-expanded="true"] > span:nth-child(1) {
        transform: rotate(45deg);
    }

    .menu-toggle[aria-expanded="true"] > span:nth-child(2) {
        top: 13px;
        opacity: 0;
    }

    .menu-toggle[aria-expanded="true"] > span:nth-child(3) {
        transform: rotate(-45deg);
    }

    .site-nav {
        position: fixed;
        z-index: 102;
        top: var(--mobile-menu-top);
        left: var(--mobile-menu-left);
        display: flex;
        width: var(--mobile-menu-width);
        height: var(--mobile-menu-height);
        visibility: hidden;
        flex-direction: column;
        align-items: flex-end;
        padding: var(--mobile-menu-link-top) 21px 5px 27px;
        border-radius: 26px;
        background: var(--ink);
        font-size: 14px;
        font-weight: 300;
        opacity: 0;
        transform: translate(-50%, -10px);
        transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
    }

    .site-nav.is-open {
        visibility: visible;
        opacity: 1;
        transform: translate(-50%, 0);
    }

    .site-nav a,
    .site-nav a:nth-child(n) {
        width: auto;
        height: 56px;
        min-height: 56px;
        justify-content: flex-end;
        margin-left: 0;
        margin-bottom: -16px;
        padding: 0;
        border-radius: 0;
        background: transparent;
        white-space: nowrap;
    }

    .site-nav a:not(.site-nav__contact):hover,
    .site-nav a:not(.site-nav__contact):focus-visible {
        background: transparent;
    }

    .site-nav__contact {
        width: 144px !important;
        height: 45px !important;
        min-height: 45px !important;
        justify-content: center !important;
        margin-top: 25px !important;
        margin-bottom: 0;
        border-radius: 15px !important;
        background: var(--white) !important;
        color: #1d1d1b;
    }

    .needs .section-title,
    .development .section-title,
    .labs .section-title,
    .news .section-title {
        margin-left: 31px;
    }

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

    .intro__copy,
    .intro__image {
        height: 380px;
    }

    .needs__grid,
    .materials__grid,
    .news__grid {
        grid-template-columns: 1fr;
    }

    .need-card {
        min-height: 190px;
    }

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

    .service-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-row:nth-child(even) .service-row__image {
        order: initial;
    }

    .service-row__copy {
        padding: 0 0 24px;
    }

    .labs__grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin-inline: auto;
    }

    .lab-card {
        min-height: 416px;
    }

    .lab-card > p {
        min-height: 75px;
    }

    .lab-card > img {
        margin-top: 15px;
    }

    .material-card {
        max-width: 540px;
        margin-inline: auto;
    }

    .material-card p {
        min-height: 0;
    }

    .news-card__copy {
        min-height: 210px;
    }

    .contact-strip__inner {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
    }

    .site-footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 35px 25px;
    }

    .review-link {
        justify-self: start;
    }

    .site-footer__legal {
        grid-column: 1 / -1;
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
        margin-top: 0;
    }
}

@media (max-width: 979px) {
    .laboratory-index {
        padding-top: 42px;
        padding-bottom: 65px;
    }

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

    .laboratory-hero__copy {
        min-height: 420px;
    }

    .laboratory-hero__image img {
        min-height: 330px;
    }

    .laboratory-about__grid,
    .laboratory-capabilities__layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .direction-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .laboratory-project-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .laboratory-team-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .laboratory-cta__inner {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 520px) {
    .site-header {
        --mobile-menu-height: 308px;
        --mobile-menu-left: 50%;
        --mobile-menu-link-top: 30px;
        --mobile-menu-top: 96px;
        --mobile-menu-width: 405px;
    }

    .site-header__inner.container {
        width: min(480px, 100%);
        padding-right: 29px;
        padding-left: 24px;
    }

    .menu-toggle {
        width: 34px;
        height: 34px;
    }

    .menu-toggle[aria-expanded="true"] {
        top: calc(var(--mobile-menu-top) + 21px);
        left: calc(50% - var(--mobile-menu-width) / 2 + 20px);
        width: 30px;
        height: 30px;
    }

    .site-nav {
        padding-right: 31px;
    }

    .container {
        width: min(100%, calc(100% - 40px));
    }

    .section-pad {
        padding-right: 0;
        padding-left: 0;
    }

    .section-title {
        margin-bottom: 28px;
        font-size: 20px;
    }

    .section-title--center {
        font-size: 29px;
    }

    .needs .section-title,
    .development .section-title,
    .labs .section-title,
    .news .section-title,
    .faq .section-title {
        margin-left: 14px;
    }

    .site-logo,
    .site-logo img {
        width: 111px;
    }

    .hero {
        padding-top: 30px;
        padding-bottom: 31px;
    }

    .hero__inner {
        min-height: 440px;
        padding: 24px 22px 23px;
        border-radius: 21px;
        background-image: linear-gradient(90deg, rgba(16, 53, 84, 0.82), rgba(16, 53, 84, 0.25)),
            var(--hero-image);
        background-position: 100% 0;
        background-size: 287.5% auto;
    }

    .hero h1 {
        max-width: 300px;
        margin-bottom: 21px;
        font-size: 22px;
        line-height: 1.05;
    }

    .hero__heading p {
        font-size: 15px;
        line-height: 1.2;
    }

    .hero__text {
        margin: 23px 0 21px;
        padding-left: 29px;
        font-size: 14px;
        line-height: 1.14;
    }

    .hero__mark {
        display: none;
    }

    .hero .button {
        min-height: 48px;
        padding-inline: 24px;
        border-radius: 15px;
    }

    .intro {
        padding-bottom: 41px;
    }

    .intro__grid {
        gap: 20px;
    }

    .intro__copy,
    .intro__image {
        height: auto;
        min-height: 0;
        border-radius: 20px;
    }

    .intro__copy {
        order: 2;
        padding: 28px 25px;
    }

    .intro__copy h2 {
        font-size: 28px;
    }

    .intro__copy p {
        margin-top: 28px;
        font-size: 16px;
    }

    .intro__image {
        order: 1;
        height: 269px;
    }

    .needs {
        padding-top: 0;
        padding-bottom: 56px;
    }

    .needs__grid {
        gap: 16px;
    }

    .need-card {
        min-height: 175px;
    }

    .development {
        padding-top: 45px;
        padding-bottom: 56px;
    }

    .stages__grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .stage-card {
        min-height: 143px;
        padding: 20px 70px 18px 18px;
        border-radius: 8px;
    }

    .stage-card h3 {
        margin-bottom: 16px;
        font-size: 21px;
    }

    .stage-card__number {
        right: 16px;
        bottom: -7px;
        font-size: 70px;
    }

    .services {
        margin-top: 70px;
    }

    .service-row {
        margin-bottom: 54px;
    }

    .service-row__image {
        height: 280px;
        border-radius: 14px;
    }

    .service-row__copy h3 {
        margin-bottom: 16px;
        font-size: 24px;
    }

    .labs {
        padding-top: 48px;
        padding-bottom: 30px;
    }

    .labs__grid {
        gap: 16px;
    }

    .lab-dialog {
        padding: 48px 22px 26px;
        border-radius: 18px;
    }

    .lab-dialog__columns {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-block: 26px;
    }

    .materials,
    .news,
    .faq {
        padding-top: 48px;
        padding-bottom: 58px;
    }

    .materials__grid,
    .news__grid {
        gap: 32px;
    }

    .material-card h3 {
        font-size: 22px;
    }

    .section-heading-row {
        align-items: flex-start;
        flex-direction: column;
        margin-bottom: 30px;
    }

    .section-heading-row .section-title {
        margin-bottom: 12px;
    }

    .faq__list summary {
        font-size: 16px;
    }

    .contact-strip {
        padding-top: 48px;
        padding-bottom: 49px;
    }

    .contact-strip h2 {
        font-size: 25px;
    }

    .contact-strip__inner > div {
        font-size: 18px;
    }

    .site-footer {
        padding-top: 40px;
    }

    .site-footer__grid {
        grid-template-columns: 1fr;
    }

    .review-link {
        position: absolute;
        top: 0;
        right: 0;
    }

    .blog-listing,
    .article {
        padding-top: 50px;
        padding-bottom: 65px;
    }

    .blog-listing__header h1,
    .article h1 {
        font-size: 39px;
    }

    .article__intro,
    .article__body {
        font-size: 17px;
    }
}

@media (max-width: 520px) {
    .back-link {
        margin-bottom: 23px;
        font-size: 13px;
    }

    .laboratory-index__heading {
        margin-bottom: 31px;
    }

    .laboratory-index__heading h1 {
        font-size: clamp(32px, 10vw, 40px);
    }

    .laboratory-index__heading > p:last-child,
    .laboratory-about__grid > div > p {
        font-size: 17px;
    }

    .laboratory-index__grid,
    .direction-grid,
    .laboratory-project-grid,
    .laboratory-team-grid,
    .capability-grid {
        grid-template-columns: 1fr;
    }

    .laboratory-index-card {
        min-height: 280px;
        padding: 25px;
    }

    .laboratory-index-card h2 {
        font-size: clamp(22px, 6.8vw, 27px);
    }

    .laboratory-hero {
        padding-top: 22px;
        padding-bottom: 38px;
    }

    .laboratory-hero__grid {
        min-height: 0;
        border-radius: 20px;
    }

    .laboratory-hero__copy {
        min-height: 410px;
        padding: 30px 23px 26px;
    }

    .laboratory-hero h1 {
        overflow-wrap: normal;
        font-size: 30px;
        hyphens: none;
    }

    .laboratory-hero__subtitle {
        margin-bottom: 22px;
        font-size: 17px;
    }

    .laboratory-hero__summary {
        font-size: 15px;
        line-height: 1.28;
    }

    .laboratory-hero__image img {
        min-height: 250px;
    }

    .laboratory-about,
    .laboratory-section {
        padding-top: 49px;
        padding-bottom: 52px;
    }

    .laboratory-about h2,
    .laboratory-section h2,
    .laboratory-cta h2 {
        font-size: 29px;
    }

    .direction-card {
        min-height: 0;
        padding: 22px 20px;
    }

    .direction-card > span {
        margin-bottom: 25px;
    }

    .member-card__copy {
        min-height: 0;
    }

    .project-dialog {
        width: min(100% - 24px, 520px);
        max-height: calc(100% - 24px);
        padding: 35px 24px 29px;
        border-radius: 18px;
    }

    .project-dialog h2 {
        margin-right: 0;
        font-size: clamp(20px, 6.1vw, 26px);
        overflow-wrap: normal;
        hyphens: none;
    }

    .project-dialog__body {
        font-size: 16px;
        line-height: 1.4;
    }

    .laboratory-cta {
        padding-top: 48px;
        padding-bottom: 50px;
    }

    .laboratory-cta__inner {
        gap: 28px;
    }
}

@media (max-width: 479px) {
    .site-header {
        --mobile-menu-height: 316px;
        --mobile-menu-link-top: 24px;
        --mobile-menu-top: 88px;
        --mobile-menu-width: min(300px, calc(100% - 20px));
    }

    .site-header__inner.container {
        width: min(320px, 100%);
        padding-right: 21px;
        padding-left: 25px;
    }

    .site-logo,
    .site-logo img {
        width: 100px;
    }

    .menu-toggle {
        width: 30px;
        height: 30px;
    }

    .menu-toggle > span:nth-child(1) {
        top: 3px;
    }

    .menu-toggle > span:nth-child(2) {
        top: 12px;
    }

    .menu-toggle > span:nth-child(3) {
        top: 21px;
    }

    .menu-toggle[aria-expanded="true"] {
        top: calc(var(--mobile-menu-top) + 15px);
        left: calc(50% - var(--mobile-menu-width) / 2 + 17px);
    }

    .menu-toggle[aria-expanded="true"] > span:nth-child(1),
    .menu-toggle[aria-expanded="true"] > span:nth-child(2),
    .menu-toggle[aria-expanded="true"] > span:nth-child(3) {
        top: 13px;
    }

    .site-nav {
        padding-right: 26px;
        padding-left: 17px;
    }

    .site-nav__contact {
        margin-top: 28px !important;
    }
}

/* SKB landing: a distinct, operational interface rather than a decorative banner. */
.hero {
    padding-top: 34px;
    padding-bottom: 82px;
    background: #eef1f6;
}

.hero__inner {
    min-height: 580px;
    padding: 30px 46px 42px;
    border: 1px solid rgba(154, 203, 255, 0.25);
    border-radius: 26px;
    background-color: #07182e;
    background-image:
        radial-gradient(circle at 71% 20%, rgba(96, 61, 212, 0.63), transparent 26%),
        linear-gradient(102deg, rgba(5, 21, 42, 0.98) 0%, rgba(7, 28, 54, 0.92) 43%, rgba(7, 26, 50, 0.25) 76%),
        var(--hero-image);
    background-position: center, center, 72% 50%;
    background-size: auto, auto, cover;
    box-shadow: 0 26px 64px rgba(4, 20, 42, 0.22);
}

.hero__inner::before {
    position: absolute;
    z-index: 0;
    inset: 0;
    background-image:
        linear-gradient(rgba(172, 207, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(172, 207, 255, 0.1) 1px, transparent 1px);
    background-position: -1px -1px;
    background-size: 47px 47px;
    content: "";
    mask-image: linear-gradient(90deg, black, transparent 80%);
    pointer-events: none;
}

.hero__inner::after {
    right: -4%;
    bottom: -30%;
    width: 385px;
    border-color: rgba(171, 140, 255, 0.47);
    box-shadow: 0 0 0 28px rgba(146, 102, 255, 0.08), 0 0 0 57px rgba(255, 255, 255, 0.035);
}

.hero__system-bar,
.hero__heading,
.hero__text,
.hero__actions,
.hero__telemetry,
.hero__mark {
    position: relative;
    z-index: 1;
}

.hero__system-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(740px, calc(100% - 96px));
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    color: #c5d4ec;
    font-size: 10px;
    font-weight: 650;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.hero__availability {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    color: #f0ebff;
}

.hero__availability i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #9bf2bc;
    box-shadow: 0 0 0 5px rgba(155, 242, 188, 0.13), 0 0 18px #9bf2bc;
    animation: hero-status-pulse 2.4s infinite;
}

.hero__heading {
    max-width: 780px;
    margin-top: 53px;
}

.hero h1 {
    max-width: 760px;
    margin-bottom: 16px;
    font-size: clamp(46px, 5.15vw, 76px);
    font-weight: 720;
    letter-spacing: -0.048em;
    line-height: 0.91;
}

.hero__heading p {
    max-width: 590px;
    color: #dfe9fa;
    font-size: clamp(17px, 1.65vw, 23px);
    font-weight: 450;
    letter-spacing: 0.015em;
    line-height: 1.15;
}

.hero__text {
    max-width: 610px;
    margin: 39px 0 0;
    color: #d4e0f3;
    font-size: 17px;
    font-weight: 380;
    line-height: 1.42;
}

.hero__actions {
    display: flex;
    gap: 22px;
    align-items: center;
    margin-top: auto;
}

.hero .button {
    min-height: 50px;
    padding-inline: 27px;
}

.hero__link {
    display: inline-flex;
    gap: 9px;
    align-items: center;
    color: #fff;
    font-size: 14px;
    text-decoration: none;
}

.hero__link span {
    display: inline-grid;
    width: 26px;
    height: 26px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 50%;
    transition: transform 180ms ease, background 180ms ease;
}

.hero__link:hover span {
    background: rgba(255, 255, 255, 0.14);
    transform: translateY(3px);
}

.hero__telemetry {
    position: absolute;
    right: 48px;
    bottom: 48px;
    display: grid;
    min-width: 195px;
    padding: 14px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.35);
    color: rgba(244, 247, 255, 0.88);
    font-size: 11px;
    letter-spacing: 0.1em;
    line-height: 2;
    text-transform: uppercase;
}

.hero__telemetry b {
    display: inline-block;
    width: 30px;
    color: #bba7ff;
    font-weight: 500;
}

.hero__mark {
    position: absolute;
    top: 28px;
    right: 46px;
    width: 64px;
    height: 82px;
    opacity: 0.96;
}

.labs {
    position: relative;
    overflow: hidden;
    padding-top: 86px;
    padding-bottom: 92px;
    background:
        radial-gradient(circle at 90% 0%, rgba(112, 79, 214, 0.37), transparent 31%),
        #07182e;
    color: #fff;
}

.labs::before {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(184, 207, 255, 0.07) 1px, transparent 1px), linear-gradient(90deg, rgba(184, 207, 255, 0.07) 1px, transparent 1px);
    background-size: 56px 56px;
    content: "";
    pointer-events: none;
}

.labs .container {
    position: relative;
}

.labs .section-title {
    max-width: 670px;
    margin: 0 0 40px 52px;
    color: #fff;
}

.labs__grid {
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 18px;
}

.lab-card {
    min-height: 450px;
    padding: 31px;
    border: 1px solid rgba(210, 224, 255, 0.2);
    border-radius: 20px;
    background: linear-gradient(150deg, rgba(29, 57, 89, 0.98), rgba(10, 31, 55, 0.95));
    box-shadow: none;
}

.lab-card:nth-child(2) {
    background: linear-gradient(150deg, rgba(65, 32, 115, 0.98), rgba(22, 13, 59, 0.98));
}

.lab-card:nth-child(3) {
    background: linear-gradient(150deg, rgba(11, 71, 90, 0.98), rgba(5, 31, 54, 0.98));
}

.lab-card--linked:hover {
    border-color: rgba(217, 207, 255, 0.75);
    box-shadow: 0 22px 42px rgba(0, 0, 0, 0.23);
    transform: translateY(-6px);
}

.lab-card h3,
.lab-card > p,
.lab-card__bottom {
    color: #fff;
}

.lab-card h3 {
    min-height: 126px;
    font-size: clamp(25px, 2vw, 31px);
    letter-spacing: -0.035em;
}

.lab-card > p {
    max-width: 290px;
    min-height: 0;
    font-size: 15px;
    line-height: 1.3;
    opacity: 0.83;
}

.lab-card > img {
    width: 130px;
    height: 108px;
    margin: auto 0 24px auto;
    padding-top: 20px;
    box-sizing: content-box;
    flex-shrink: 0;
    filter: brightness(0) invert(1);
    opacity: 0.85;
}

.lab-card__bottom {
    position: relative;
    inset: auto;
    gap: 12px;
    flex-wrap: wrap;
    min-height: 66px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
}

/* The rest of the landing follows the same engineering-system language. */
.intro {
    position: relative;
    padding-top: 82px;
    background: linear-gradient(135deg, #f4f7fb, #eef2f7);
}

.intro__copy {
    position: relative;
    border-color: #9ab7d6;
    border-radius: 20px;
    background:
        linear-gradient(rgba(21, 66, 107, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(21, 66, 107, 0.055) 1px, transparent 1px),
        #fff;
    background-size: 34px 34px, 34px 34px, auto;
    box-shadow: 0 24px 50px rgba(10, 36, 66, 0.09);
}

.intro__copy::before {
    display: block;
    margin-bottom: 20px;
    color: #5c6f88;
    content: "01 / СТАРТОВАЯ ТОЧКА";
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.intro__copy p {
    padding-top: 19px;
    border-top: 1px solid rgba(23, 62, 96, 0.24);
}

.intro__image {
    border: 1px solid rgba(36, 85, 127, 0.2);
    box-shadow: 0 24px 50px rgba(10, 36, 66, 0.12);
}

.needs {
    position: relative;
    padding-top: 86px;
    background: #f4f7fb;
}

.needs::before,
.development::before,
.materials::before,
.news::before {
    position: absolute;
    width: min(1240px, calc(100% - 40px));
    height: 1px;
    margin: auto;
    right: 0;
    left: 0;
    background: linear-gradient(90deg, transparent, rgba(29, 74, 116, 0.4), transparent);
    content: "";
}

.needs::before { top: 28px; }

.needs .section-title::before,
.development .section-title::before,
.materials .section-title::before,
.news .section-title::before,
.faq .section-title::before {
    display: inline-block;
    margin-right: 13px;
    color: #7858cf;
    content: "//";
    font-size: 0.7em;
    letter-spacing: -0.12em;
    vertical-align: 0.14em;
}

.need-card {
    min-height: 238px;
    padding: 28px 29px;
    border-color: rgba(37, 84, 126, 0.4);
    border-radius: 18px;
    background:
        linear-gradient(rgba(16, 63, 107, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16, 63, 107, 0.05) 1px, transparent 1px),
        #fff;
    background-size: 27px 27px, 27px 27px, auto;
}

.need-card::before {
    display: block;
    margin-bottom: 20px;
    color: #6b7f97;
    content: "СЦЕНАРИЙ / " counter(need, decimal-leading-zero);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.needs__grid { counter-reset: need; }
.need-card { counter-increment: need; }

.need-card h3 {
    margin-bottom: 17px;
    font-size: 22px;
}

.need-card--accent {
    border-color: #ff7458;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.11) 1px, transparent 1px),
        linear-gradient(45deg, #f95940, #e94636);
    background-size: 27px 27px, auto;
}

.need-card--accent::before { color: #ffe4dd; }

.development {
    position: relative;
    padding-top: 90px;
    background:
        radial-gradient(circle at 85% 8%, rgba(155, 127, 255, 0.2), transparent 24%),
        #e9edf4;
}

.development::before { top: 30px; }

.stages__grid {
    gap: 12px;
    padding: 12px;
    border: 1px solid rgba(28, 64, 100, 0.25);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.48);
}

.stage-card {
    min-height: 230px;
    padding: 54px 22px 27px;
    border-color: rgba(39, 77, 116, 0.31);
    border-radius: 13px;
    background: linear-gradient(145deg, #fff, #eff5fb);
}

.stage-card::before {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #9e7cff;
    box-shadow: 0 0 0 4px rgba(158, 124, 255, 0.15);
    content: "";
}

.stage-card__number {
    right: 16px;
    bottom: 10px;
    color: rgba(77, 73, 140, 0.19);
    font-size: 68px;
}

.services {
    position: relative;
    padding: 35px 0;
}

.service-row {
    padding: 14px;
    border: 1px solid rgba(35, 75, 115, 0.19);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.54);
}

.service-row__image { border-radius: 14px; }

.service-row__copy {
    position: relative;
    padding: 30px 27px;
}

.service-row__copy::before {
    display: block;
    margin-bottom: 18px;
    color: #7157c1;
    content: "ПРОЕКТНЫЙ МОДУЛЬ";
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.materials {
    position: relative;
    padding-top: 88px;
    background:
        linear-gradient(rgba(61, 75, 125, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(61, 75, 125, 0.035) 1px, transparent 1px),
        #f5efee;
    background-size: 52px 52px, 52px 52px, auto;
}

.materials::before { top: 30px; }

.material-card {
    padding: 11px 11px 23px;
    border: 1px solid rgba(37, 70, 111, 0.24);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 18px 40px rgba(33, 35, 55, 0.07);
}

.material-card > img { border-radius: 12px; }
.material-card h3, .material-card p { padding-inline: 12px; }
.material-card .button { margin-inline: 12px; }

.news {
    position: relative;
    padding-top: 92px;
    background: #f5f7fa;
}

.news::before { top: 31px; }

.news-card {
    border: 1px solid rgba(39, 74, 111, 0.2);
    border-radius: 20px;
    background: #fff;
}

.news-card__copy::before {
    display: block;
    margin-bottom: 16px;
    color: #7860c9;
    content: "ОБНОВЛЕНИЕ / СКБ";
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.13em;
}

.faq {
    padding-top: 90px;
    padding-bottom: 90px;
    background: #f5f7fa;
}

.faq__inner {
    padding: 38px 42px;
    border: 1px solid rgba(35, 74, 112, 0.23);
    border-radius: 24px;
    background: #fff;
}

.faq__list details { border-color: rgba(35, 74, 112, 0.22); }

.contact-strip {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 80% 0%, rgba(158, 120, 255, 0.72), transparent 35%),
        linear-gradient(120deg, #0c2544, #182c62);
    color: #fff;
}

.contact-strip::before {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(231, 237, 255, 0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(231, 237, 255, 0.08) 1px, transparent 1px);
    background-size: 45px 45px;
    content: "";
    pointer-events: none;
}

.contact-strip__inner { position: relative; }
.contact-strip__inner > div { color: #fff; }
.contact-strip h2::before { display: block; margin-bottom: 11px; color: #bdaeff; content: "ГОТОВЫ К СТАРТУ / 01"; font-size: 10px; letter-spacing: 0.13em; }

@keyframes hero-status-pulse {
    50% { box-shadow: 0 0 0 8px rgba(155, 242, 188, 0.03), 0 0 20px #9bf2bc; }
}

@media (max-width: 979px) {
    .hero {
        padding-top: 24px;
        padding-bottom: 50px;
    }

    .hero__inner {
        min-height: 600px;
        padding: 24px 24px 27px;
        background-image: linear-gradient(180deg, rgba(5, 21, 42, 0.94) 0%, rgba(7, 26, 50, 0.63) 65%, rgba(7, 26, 50, 0.34)), var(--hero-image);
        background-position: center, 67% center;
        background-size: auto, cover;
    }

    .hero__system-bar {
        width: 100%;
        font-size: 9px;
    }

    .hero__heading {
        margin-top: 46px;
    }

    .hero h1 {
        max-width: 560px;
        margin-bottom: 15px;
        font-size: clamp(40px, 7.3vw, 58px);
    }

    .hero__heading p {
        max-width: 480px;
        font-size: 18px;
    }

    .hero__text {
        max-width: 530px;
        margin-top: 30px;
        padding: 0;
        font-size: 16px;
        line-height: 1.35;
    }

    .hero__telemetry {
        right: 26px;
        bottom: 111px;
    }

    .hero__mark {
        display: block;
        top: 23px;
        right: 23px;
        width: 48px;
        height: 60px;
    }

    .labs {
        padding-top: 60px;
        padding-bottom: 64px;
    }

    .labs .section-title {
        margin-left: 14px;
    }

    .labs__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lab-card {
        min-height: 440px;
    }
}

@media (max-width: 620px) {
    .intro__copy h2 {
        font-size: clamp(22px, 6.5vw, 28px);
    }

    .hero__inner {
        min-height: 650px;
        border-radius: 20px;
    }

    .hero__system-bar > span:first-child {
        max-width: 155px;
        line-height: 1.35;
    }

    .hero__availability {
        max-width: 128px;
        text-align: right;
        line-height: 1.3;
    }

    .hero__heading {
        margin-top: 43px;
    }

    .hero h1 {
        max-width: 100%;
        font-size: clamp(25px, 8vw, 30px);
        line-height: 0.98;
        overflow-wrap: normal;
        word-break: normal;
        hyphens: none;
    }

    .hero__heading p {
        max-width: 100%;
        font-size: 16px;
        line-height: 1.18;
    }

    .hero__text {
        max-width: 100%;
        font-size: 15px;
    }

    .hero__actions {
        gap: 14px;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .hero .button {
        justify-content: center;
        width: 100%;
    }

    .hero__link {
        justify-content: center;
        padding: 2px 0;
    }

    .hero__telemetry {
        display: none;
    }

    .hero__telemetry b {
        width: 24px;
    }

    .hero__mark {
        display: none;
    }

    .hero__inner::after {
        right: -34%;
        bottom: -16%;
        width: 260px;
    }

    .labs__grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .lab-card {
        display: flex;
        min-height: 410px;
        padding: 25px 24px;
    }

    .lab-card h3 {
        position: static;
        min-height: 0;
        max-width: 280px;
        width: 100%;
        font-size: 27px;
        line-height: 1.02;
    }

    .lab-card > p {
        position: static;
        width: 100%;
        max-width: 282px;
        min-height: 0;
        margin: 20px 0 0;
        font-size: 15px;
        line-height: 1.32;
    }

    .lab-card > img {
        position: static;
        width: 94px;
        height: 76px;
        margin: auto 0 27px auto;
    }

    .lab-card__bottom {
        position: static;
        display: flex;
        width: 100%;
        min-height: 49px;
        align-items: center;
        justify-content: flex-start;
        margin-top: auto;
        padding-top: 14px;
        border-top: 1px solid rgba(255, 255, 255, 0.25);
    }

    .lab-card__bottom span {
        position: static;
        display: none;
    }

    .lab-card__bottom .button {
        position: static;
        width: auto;
        min-height: 43px;
        padding: 8px 21px;
    }
}

/* The wide navigation needs its own tablet breakpoint: translated labels are
   longer than the original Tilda labels and must never be squeezed. */
@media (min-width: 980px) and (max-width: 1119px) {
    .site-header {
        --mobile-menu-height: 321px;
        --mobile-menu-left: 50%;
        --mobile-menu-link-top: 28px;
        --mobile-menu-top: 72px;
        --mobile-menu-width: min(360px, calc(100% - 48px));
        height: 64px;
    }

    .site-header__inner {
        width: min(960px, 100%);
        padding-right: 40px;
        padding-left: 40px;
    }

    .site-logo,
    .site-logo img {
        width: 122px;
    }

    .menu-toggle {
        position: relative;
        display: block;
        flex: 0 0 auto;
        cursor: pointer;
    }

    .menu-toggle[aria-expanded="true"] {
        position: fixed;
        z-index: 103;
        top: calc(var(--mobile-menu-top) + 20px);
        left: calc(50% - var(--mobile-menu-width) / 2 + 22px);
        width: 30px;
        height: 30px;
    }

    .menu-toggle[aria-expanded="true"] > span:nth-child(1),
    .menu-toggle[aria-expanded="true"] > span:nth-child(3) {
        top: 13px;
        left: -5px;
        width: 40px;
    }

    .menu-toggle[aria-expanded="true"] > span:nth-child(1) { transform: rotate(45deg); }
    .menu-toggle[aria-expanded="true"] > span:nth-child(2) { top: 13px; opacity: 0; }
    .menu-toggle[aria-expanded="true"] > span:nth-child(3) { transform: rotate(-45deg); }

    .site-nav {
        position: fixed;
        z-index: 102;
        top: var(--mobile-menu-top);
        left: var(--mobile-menu-left);
        display: flex;
        width: var(--mobile-menu-width);
        height: var(--mobile-menu-height);
        visibility: hidden;
        flex-direction: column;
        align-items: flex-end;
        padding: var(--mobile-menu-link-top) 28px 12px;
        border-radius: 26px;
        background: var(--ink);
        font-size: 14px;
        font-weight: 300;
        opacity: 0;
        transform: translate(-50%, -10px);
        transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
    }

    .site-nav.is-open { visibility: visible; opacity: 1; transform: translate(-50%, 0); }
    .site-nav a,
    .site-nav a:nth-child(n) {
        width: auto;
        height: 48px;
        min-height: 48px;
        justify-content: flex-end;
        margin: 0;
        padding: 0;
        border-radius: 0;
        background: transparent;
        white-space: nowrap;
    }

    .site-nav__contact {
        width: 144px !important;
        height: 45px !important;
        min-height: 45px !important;
        justify-content: center !important;
        margin-top: 12px !important;
        border-radius: 15px !important;
        background: var(--white) !important;
        color: #1d1d1b;
    }
}

/* Native SKB and laboratory header: do not inherit Tilda-era fixed widths. */
@media (min-width: 1120px) {
    .site-header__inner {
        width: min(1200px, 100%);
        gap: 30px;
        padding-right: 36px;
        padding-left: 60px;
    }

    .site-nav {
        gap: clamp(16px, 2.1vw, 38px);
        justify-content: flex-end;
        white-space: nowrap;
    }

    .site-nav a,
    .site-nav a:nth-child(n) {
        width: auto;
        margin-left: 0;
        padding: 0;
    }

    .site-nav__contact {
        width: 143px !important;
        margin-left: 0;
    }
}

@media (max-width: 1119px) {
    body.menu-open .site-header {
        z-index: 105;
        background: var(--ink);
    }

    body.menu-open .site-logo {
        opacity: 1;
    }

    .site-header {
        height: 64px;
    }

    .site-header__inner,
    .site-header__inner.container {
        width: min(960px, 100%);
        padding-right: 32px;
        padding-left: 40px;
    }

    .site-logo,
    .site-logo img {
        width: 122px;
    }

    .menu-toggle {
        position: relative;
        display: block;
        width: 36px;
        height: 30px;
        flex: 0 0 36px;
    }

    .menu-toggle > span:nth-child(1) { top: 3px; }
    .menu-toggle > span:nth-child(2) { top: 13px; }
    .menu-toggle > span:nth-child(3) { top: 23px; }

    .menu-toggle[aria-expanded="true"] {
        position: relative;
        z-index: auto;
        top: auto;
        left: auto;
        width: 36px;
        height: 30px;
    }

    .menu-toggle[aria-expanded="true"] > span:nth-child(1),
    .menu-toggle[aria-expanded="true"] > span:nth-child(3) {
        top: 13px;
        left: 0;
        width: 100%;
    }

    .menu-toggle[aria-expanded="true"] > span:nth-child(1) { transform: rotate(45deg); }
    .menu-toggle[aria-expanded="true"] > span:nth-child(2) { top: 13px; opacity: 0; }
    .menu-toggle[aria-expanded="true"] > span:nth-child(3) { transform: rotate(-45deg); }

    .site-nav {
        position: fixed;
        z-index: 104;
        top: 64px;
        right: 0;
        left: 0;
        display: grid;
        width: auto;
        height: auto;
        min-height: 0;
        visibility: hidden;
        grid-template-columns: 1fr 1fr;
        align-items: stretch;
        padding: 18px 40px 24px;
        border-radius: 0;
        background: var(--ink);
        box-shadow: 0 18px 32px rgba(0, 0, 0, 0.25);
        font-size: 15px;
        font-weight: 400;
        opacity: 0;
        transform: translateY(-8px);
        transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
    }

    .site-nav.is-open {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }

    .site-nav a,
    .site-nav a:nth-child(n) {
        width: auto;
        height: 48px;
        min-height: 48px;
        justify-content: flex-start;
        margin: 0;
        padding: 0;
        border-radius: 0;
        background: transparent;
        white-space: nowrap;
    }

    .site-nav__contact {
        grid-column: 1 / -1;
        width: min(220px, 100%) !important;
        height: 44px !important;
        min-height: 44px !important;
        justify-content: center !important;
        margin-top: 10px !important;
        border-radius: 15px !important;
        background: var(--white) !important;
        color: #1d1d1b;
    }
}

@media (max-width: 479px) {
    .site-header__inner,
    .site-header__inner.container {
        padding-right: 24px;
        padding-left: 24px;
    }

    .site-logo,
    .site-logo img {
        width: 100px;
    }

    .site-nav {
        grid-template-columns: 1fr;
        padding: 14px 24px 22px;
    }

    .site-nav a,
    .site-nav a:nth-child(n) {
        height: 42px;
        min-height: 42px;
    }

    .site-nav__contact {
        grid-column: auto;
        margin-top: 8px !important;
    }
}

/* Keep the SKB hero's content rhythm compact and intentional. */
.hero__heading { margin-top: 44px; }
.hero__text { margin-top: 28px; }

/* Native replacements for the remaining Tilda pages. They share the same
   visual grammar as laboratory pages: grid-backed heroes, editorial type,
   alternating surfaces and content-first cards. */
.native-page {
    --native-accent: #a95cff;
    --native-hero: #26004b;
    background: #f8f6fb;
}

.native-page--additive,
.native-page--reverse { --native-accent: #ff684f; --native-hero: #102d48; }
.native-page--digitaldesign,
.native-page--edu { --native-accent: #5c8ff0; --native-hero: #092d51; }
.native-page--reality { --native-accent: #9b55ff; --native-hero: #21074b; }
.native-page--camp { --native-accent: #d9ff61; --native-hero: #39205f; }
.native-page--partnership { --native-accent: #77a0ff; --native-hero: #112c52; }
.native-page--contacts { --native-accent: #b966ff; --native-hero: #2d0753; }

.native-hero {
    padding-top: 30px;
    padding-bottom: 62px;
    color: #fff;
    background:
        linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px),
        var(--native-hero);
    background-size: 56px 56px, 56px 56px, auto;
}

.native-hero__grid {
    display: grid;
    min-height: 535px;
    overflow: hidden;
    grid-template-columns: minmax(0, 1.04fr) minmax(360px, .96fr);
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 24px;
    background: rgba(7, 10, 29, .34);
    box-shadow: 0 28px 70px rgba(4, 7, 25, .22);
}

.native-hero__copy {
    display: flex;
    min-width: 0;
    flex-direction: column;
    align-items: flex-start;
    padding: 48px 48px 42px;
}

.native-hero__signal {
    width: 48px;
    height: 4px;
    margin-bottom: 20px;
    border-radius: 99px;
    background: var(--native-accent);
    box-shadow: 0 0 20px color-mix(in srgb, var(--native-accent) 75%, transparent);
}

.native-hero .laboratory-eyebrow { color: var(--native-accent); }

.native-hero h1 {
    max-width: 680px;
    margin: 0 0 19px;
    font-size: clamp(43px, 4.2vw, 67px);
    font-weight: 650;
    letter-spacing: -.045em;
    line-height: .91;
    text-transform: uppercase;
    text-wrap: balance;
}

.native-hero__subtitle {
    max-width: 610px;
    margin: 0 0 30px;
    color: #e5edf7;
    font-size: 22px;
    font-weight: 550;
    line-height: 1.12;
    text-transform: uppercase;
}

.native-hero__summary {
    max-width: 590px;
    margin: auto 0 27px;
    color: #d5deeb;
    font-size: 17px;
    line-height: 1.45;
}

.native-hero__tags { display: flex; flex-wrap: wrap; gap: 8px; }
.native-hero__tags span {
    padding: 7px 12px;
    border: 1px solid rgba(255,255,255,.45);
    border-radius: 999px;
    font-size: 12px;
}

.native-hero__visual {
    position: relative;
    min-width: 0;
    overflow: hidden;
    background: linear-gradient(145deg, color-mix(in srgb, var(--native-accent) 35%, #10213a), #091426);
}

.native-hero__visual::before,
.native-hero__visual::after {
    position: absolute;
    content: "";
    border: 1px solid color-mix(in srgb, var(--native-accent) 55%, transparent);
    border-radius: 50%;
}
.native-hero__visual::before { width: 420px; height: 420px; top: -100px; right: -110px; }
.native-hero__visual::after { width: 250px; height: 250px; right: 64px; bottom: -115px; }
.native-hero__visual > img { width: 100%; height: 100%; object-fit: cover; mix-blend-mode: luminosity; opacity: .88; }
.native-page--camp .native-hero__visual > img { mix-blend-mode: normal; opacity: 1; object-position: 55% center; }
.native-page--partnership .native-hero__visual > img { mix-blend-mode: multiply; opacity: .9; }

.native-hero__orb { position: absolute; inset: 0; display: grid; place-items: center; }
.native-hero__orb::before {
    width: min(68%, 330px);
    aspect-ratio: 1;
    border: 1px solid rgba(255,255,255,.45);
    border-radius: 50%;
    background: radial-gradient(circle at 38% 35%, color-mix(in srgb, var(--native-accent) 68%, #fff), transparent 12%), radial-gradient(circle, transparent 48%, rgba(255,255,255,.1) 49% 50%, transparent 51%);
    box-shadow: inset 0 0 70px color-mix(in srgb, var(--native-accent) 26%, transparent), 0 0 80px color-mix(in srgb, var(--native-accent) 24%, transparent);
    content: "";
}

.native-hero__telemetry {
    position: absolute;
    right: 24px;
    bottom: 22px;
    left: 24px;
    display: flex;
    justify-content: space-between;
    gap: 14px;
    color: rgba(255,255,255,.78);
    font-size: 9px;
    letter-spacing: .13em;
    text-transform: uppercase;
}
.native-hero__telemetry b { color: var(--native-accent); font-weight: 650; }

.native-section { padding-top: 76px; padding-bottom: 80px; }
.native-section--light { background: #f8f6fb; }
.native-section--soft { background: color-mix(in srgb, var(--native-accent) 12%, #f8f6fb); }
.native-section--dark { background: #120722; color: #fff; }
.native-section--accent { background: var(--native-hero); color: #fff; }
.native-section__heading { max-width: 790px; margin-bottom: 37px; }
.native-section__heading .laboratory-eyebrow { color: var(--native-accent); }
.native-section__heading h2,
.native-cta h2 {
    margin: 0 0 18px;
    font-size: clamp(35px, 4vw, 54px);
    letter-spacing: -.035em;
    line-height: .94;
    text-transform: uppercase;
    text-wrap: balance;
}
.native-section__heading > p:last-child { max-width: 670px; margin: 0; font-size: 19px; line-height: 1.38; }

.native-grid { display: grid; gap: 17px; }
.native-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.native-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.native-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.native-card {
    display: flex;
    min-width: 0;
    min-height: 260px;
    overflow: hidden;
    flex-direction: column;
    border: 1px solid rgba(21, 20, 28, .08);
    border-radius: 19px;
    background: #fff;
    color: #121212;
    box-shadow: 0 12px 34px rgba(29, 19, 48, .055);
    transition: transform 180ms ease, box-shadow 180ms ease;
}
.native-card:hover { transform: translateY(-4px); box-shadow: 0 18px 44px rgba(29,19,48,.12); }
.native-section--dark .native-card,
.native-section--accent .native-card { border-color: rgba(255,255,255,.2); background: rgba(78,42,115,.34); color: #fff; box-shadow: none; }
.native-card__image { aspect-ratio: 1.55; overflow: hidden; background: #19213b; }
.native-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 400ms ease; }
.native-card:hover .native-card__image img { transform: scale(1.035); }
.native-card__copy { display: flex; height: 100%; flex-direction: column; padding: 27px 26px 25px; }
.native-card__meta { display: block; margin-bottom: 35px; color: var(--native-accent); font-size: 13px; font-weight: 700; text-transform: uppercase; }
.native-card h3 { margin: 0 0 13px; font-size: 23px; line-height: 1.03; text-wrap: balance; }
.native-card p { margin: 0 0 22px; font-size: 15px; line-height: 1.35; }
.native-card a { width: fit-content; margin-top: auto; border-bottom: 1px solid currentColor; font-size: 14px; font-weight: 650; }

.native-section--steps .native-card { min-height: 230px; }
.native-section--steps .native-card__meta { margin-bottom: 50px; font-size: 18px; }
.native-section--feature .native-card:has(.native-card__image),
.native-section--gallery .native-card:has(.native-card__image) { min-height: 440px; }
.native-section--gallery .native-card__image { aspect-ratio: 1.35; }
.native-section--contacts .native-card { min-height: 310px; background: linear-gradient(145deg,#fff,#f6efff); }
.native-section--contacts .native-card p { white-space: normal; }
.native-card__map { position: relative; min-height: 330px; overflow: hidden; background: #e9e5ee; }
.native-card__map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.native-section--contacts .native-card:has(.native-card__map) .native-card__copy { min-height: 245px; }

/* The camp lime is a light-emitting accent for dark surfaces. On pale
   sections it needs a separate ink value to stay readable in sunlight and
   on lower-quality mobile displays. */
.native-page--camp .native-section--light .laboratory-eyebrow,
.native-page--camp .native-section--soft .laboratory-eyebrow,
.native-page--camp .native-section--light .native-card__meta,
.native-page--camp .native-section--soft .native-card__meta,
.native-page--camp .native-cta .laboratory-eyebrow {
    color: #405900;
}

.native-page--camp .native-section--light,
.native-page--camp .native-section--soft,
.native-page--camp .native-cta {
    color: #10130a;
}

.native-cta { padding-top: 65px; padding-bottom: 68px; background: color-mix(in srgb, var(--native-accent) 11%, #f8f6fb); }
.native-cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 45px; }
.native-cta__inner > div { max-width: 760px; }
.native-cta .laboratory-eyebrow { color: var(--native-accent); }
.native-cta p:last-child { max-width: 650px; margin: 0; font-size: 18px; }
.native-cta .button { flex: 0 0 auto; }

@media (max-width: 959px) {
    .native-hero__grid { min-height: 500px; grid-template-columns: 1.1fr .9fr; }
    .native-hero__copy { padding: 40px 34px 35px; }
    .native-hero h1 { font-size: clamp(38px, 5.8vw, 54px); }
    .native-grid--3,
    .native-grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 639px) {
    .native-hero { padding-top: 18px; padding-bottom: 36px; background-size: 38px 38px, 38px 38px, auto; }
    .native-hero__grid { min-height: 0; grid-template-columns: 1fr; border-radius: 18px; }
    .native-hero__copy { min-height: 485px; padding: 35px 23px 34px; }
    .native-hero__signal { margin-bottom: 18px; }
    .native-hero h1 { font-size: clamp(34px, 10.4vw, 47px); overflow-wrap: normal; hyphens: none; }
    .native-hero__subtitle { font-size: 18px; }
    .native-hero__summary { margin-top: 25px; font-size: 15px; }
    .native-hero__tags span { font-size: 11px; }
    .native-hero__visual { min-height: 285px; }
    .native-page--contacts .native-hero__visual,
    .native-page--vr-menu .native-hero__visual { min-height: 210px; }
    .native-section { padding-top: 54px; padding-bottom: 57px; }
    .native-section__heading { margin-bottom: 28px; }
    .native-section__heading h2,
    .native-cta h2 { font-size: 35px; }
    .native-section__heading > p:last-child { font-size: 16px; }
    .native-grid--2,
    .native-grid--3,
    .native-grid--4 { grid-template-columns: 1fr; }
    .native-card { min-height: 230px; }
    .native-card__copy { padding: 24px 22px; }
    .native-card__map { min-height: 285px; }
    .native-card__meta { margin-bottom: 28px; }
    .native-section--steps .native-card__meta { margin-bottom: 32px; }
    .native-section--feature .native-card:has(.native-card__image),
    .native-section--gallery .native-card:has(.native-card__image) { min-height: 390px; }
    .native-cta__inner { align-items: flex-start; flex-direction: column; gap: 26px; }
}

@media (max-width: 359px) {
    .native-hero h1 { font-size: 30px; letter-spacing: -.055em; }
    .native-hero__copy { padding-right: 20px; padding-left: 20px; }
    .native-section__heading h2,
    .native-cta h2 { font-size: 31px; }
    .native-page--edu .native-section__heading h2 { font-size: 28px; }
}

/* Guided first-project cases ------------------------------------------------ */
.learning-cases-feature,
.learning-cases-catalog,
.learning-case-overview { background: #f5f2f8; color: #121212; }
.learning-cases-feature .section-heading-row { align-items: flex-end; margin-bottom: 34px; }
.learning-cases-feature .laboratory-section__heading { margin-bottom: 0; }
.learning-cases-feature .laboratory-section__heading > p:last-child { max-width: 680px; }
.learning-cases-feature .section-heading-row > a { flex: 0 0 auto; color: #121212; font-weight: 650; }
.learning-case-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.learning-case-grid:has(> :only-child) { grid-template-columns: minmax(0, 760px); }
.learning-case-card { min-width: 0; overflow: hidden; border: 1px solid rgba(25,17,37,.1); border-radius: 21px; background: #fff; box-shadow: 0 16px 45px rgba(34,18,55,.07); }
.learning-case-card__visual { position: relative; display: grid; min-height: 270px; overflow: hidden; place-items: center; background: linear-gradient(145deg,#152f4b,#35115f); color: #c98aff; }
.learning-case-card__visual::after { position: absolute; width: 230px; height: 230px; border: 1px solid #c98aff80; border-radius: 50%; content: ""; transform: translate(42%,-25%); }
.learning-case-card__visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 350ms ease; }
.learning-case-card:hover .learning-case-card__visual img { transform: scale(1.035); }
.learning-case-card__visual > span { z-index: 1; font-size: 13px; font-weight: 700; letter-spacing: .16em; }
.learning-case-card__copy { display: flex; min-height: 290px; flex-direction: column; padding: 27px 27px 25px; }
.learning-case-card__meta { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 23px; }
.learning-case-card__meta span,
.learning-case-skills span { padding: 7px 11px; border: 1px solid #5c37782b; border-radius: 999px; color: #5a2d7c; font-size: 11px; font-weight: 700; text-transform: uppercase; }
.learning-case-card h3 { margin: 0 0 13px; font-size: 28px; line-height: 1.02; text-wrap: balance; }
.learning-case-card h3 a { color: inherit; }
.learning-case-card p { margin: 0 0 17px; font-size: 15px; line-height: 1.42; }
.learning-case-card small { margin-bottom: 20px; color: #725d80; line-height: 1.3; }
.learning-case-card__link { width: fit-content; margin-top: auto; border-bottom: 1px solid currentColor; color: #4d176f; font-size: 14px; font-weight: 700; }

.learning-cases-hero,
.learning-case-hero { color: #fff; background: linear-gradient(rgba(255,255,255,.05) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.05) 1px,transparent 1px),#1f073c; background-size: 52px 52px; }
.learning-cases-hero__inner { display: grid; min-height: 500px; grid-template-columns: minmax(0,1.2fr) minmax(300px,.8fr); overflow: hidden; border: 1px solid #ffffff2b; border-radius: 24px; background: #18062ee6; }
.learning-cases-hero__inner > div:first-child { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 58px; }
.learning-cases-hero h1,
.learning-case-hero h1 { margin: 25px 0 22px; font-size: clamp(45px,6vw,78px); line-height: .91; letter-spacing: -.05em; text-transform: uppercase; text-wrap: balance; }
.learning-cases-hero__inner > div:first-child > p:last-child { max-width: 690px; margin: 0; color: #e1d9e8; font-size: 19px; line-height: 1.45; }
.learning-cases-hero__code { position: relative; display: grid; overflow: hidden; place-items: center; background: linear-gradient(145deg,#6030a3,#15294e); }
.learning-cases-hero__code::before,
.learning-cases-hero__code::after { position: absolute; width: 330px; height: 330px; border: 1px solid #da9cff80; border-radius: 50%; content: ""; }
.learning-cases-hero__code::after { width: 190px; height: 190px; }
.learning-cases-hero__code span { position: absolute; top: 30px; left: 30px; font-size: 11px; letter-spacing: .16em; }
.learning-cases-hero__code b { z-index: 1; color: #fff; font-size: 100px; font-weight: 500; line-height: 1; }

.learning-cases-catalog .laboratory-section__heading { margin-bottom: 36px; }
.learning-case-hero { padding-top: 28px; padding-bottom: 66px; }
.learning-case-hero__grid { display: grid; min-height: 600px; grid-template-columns: 1.05fr .95fr; overflow: hidden; border: 1px solid #ffffff2b; border-radius: 24px; background: #150527e6; }
.learning-case-hero__copy { display: flex; min-width: 0; flex-direction: column; align-items: flex-start; justify-content: center; padding: 55px; }
.learning-case-hero h1 { max-width: 720px; font-size: clamp(43px,5vw,70px); }
.learning-case-hero__lead { max-width: 650px; margin: 0 0 25px; color: #ded6e5; font-size: 18px; line-height: 1.45; }
.learning-case-hero__facts { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 31px; }
.learning-case-hero__facts span { padding: 7px 12px; border: 1px solid #ffffff6b; border-radius: 99px; font-size: 12px; text-transform: uppercase; }
.learning-case-hero__actions { display: flex; align-items: center; gap: 22px; }
.learning-case-hero__actions > a:not(.button) { color: #fff; border-bottom: 1px solid currentColor; }
.learning-case-hero__visual { position: relative; min-width: 0; overflow: hidden; background: linear-gradient(145deg,#5d2b94,#18334d); }
.learning-case-hero__visual img { width: 100%; height: 100%; object-fit: cover; }
.learning-case-hero__visual > span { position: absolute; right: 24px; bottom: 22px; padding: 7px 11px; border-radius: 99px; background: #130522cc; font-size: 10px; letter-spacing: .13em; }
.learning-case-overview { padding-top: 82px; padding-bottom: 82px; }
.learning-case-overview__grid { display: grid; grid-template-columns: 1.2fr .8fr; align-items: stretch; gap: 18px; }
.learning-case-overview__grid > div { padding: 42px; border-radius: 20px; background: #fff; }
.learning-case-overview h2,
.learning-case-start h2 { margin: 12px 0 20px; font-size: clamp(36px,4vw,55px); line-height: .94; letter-spacing: -.04em; text-transform: uppercase; text-wrap: balance; }
.learning-case-overview__grid p { margin: 0; font-size: 18px; line-height: 1.5; }
.learning-case-result { color: #fff; background: #32105a !important; }
.learning-case-result span { color: #c98aff; font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.learning-case-skills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.learning-case-route { padding-top: 80px; padding-bottom: 84px; color: #fff; background: #11051f; }
.learning-case-route .laboratory-section__heading { margin-bottom: 38px; }
.learning-case-route .laboratory-section__heading h2 { margin: 0; font-size: clamp(34px,4vw,52px); line-height: .98; letter-spacing: -.035em; text-transform: uppercase; }
.learning-case-route__grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 14px; }
.learning-case-route__grid article { display: flex; min-height: 280px; flex-direction: column; padding: 27px 24px; border: 1px solid #ffffff30; border-radius: 18px; background: #32135199; }
.learning-case-route__grid span { display: block; margin-bottom: auto; padding-bottom: 42px; color: #c98aff; font-size: 18px; font-weight: 700; }
.learning-case-route__grid h3 { margin: 0 0 13px; font-size: 22px; line-height: 1.05; }
.learning-case-route__grid p { margin: 0; color: #ddd3e5; font-size: 14px; line-height: 1.4; }
.learning-case-start { padding-top: 78px; padding-bottom: 82px; background: #e8dcf4; color: #151019; }
.learning-case-start__inner { display: flex; align-items: center; justify-content: space-between; gap: 45px; }
.learning-case-start__inner > div { min-width: 0; max-width: 760px; }
.learning-case-start__inner p:last-child { max-width: 620px; font-size: 18px; line-height: 1.45; }
.learning-case-start .button { flex: 0 0 auto; }

@media (max-width: 959px) {
    .learning-case-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
    .learning-cases-hero__inner > div:first-child,
    .learning-case-hero__copy { padding: 42px 34px; }
    .learning-case-route__grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}

@media (max-width: 799px) {
    .learning-case-overview__grid { grid-template-columns: 1fr; }
}

@media (max-width: 639px) {
    .learning-cases-feature .section-heading-row { align-items: flex-start; flex-direction: column; }
    .learning-case-grid,
    .learning-case-grid:has(> :only-child) { grid-template-columns: 1fr; }
    .learning-case-card__visual { min-height: 235px; }
    .learning-case-card__copy { min-height: 260px; padding: 23px 21px; }
    .learning-case-card h3 { font-size: 25px; }
    .learning-cases-hero,
    .learning-case-hero { padding-top: 18px; padding-bottom: 38px; background-size: 38px 38px; }
    .learning-cases-hero__inner,
    .learning-case-hero__grid { min-height: 0; grid-template-columns: 1fr; border-radius: 18px; }
    .learning-cases-hero__inner > div:first-child,
    .learning-case-hero__copy { min-height: 470px; padding: 33px 23px; }
    .learning-cases-hero h1,
    .learning-case-hero h1 { font-size: 39px; }
    .learning-cases-hero__inner > div:first-child > p:last-child,
    .learning-case-hero__lead { font-size: 16px; }
    .learning-cases-hero__code { min-height: 230px; }
    .learning-case-hero__visual { min-height: 300px; }
    .learning-case-hero__actions { width: 100%; align-items: stretch; flex-direction: column; }
    .learning-case-hero__actions .button { justify-content: center; }
    .learning-case-overview { padding-top: 56px; padding-bottom: 58px; }
    .learning-case-overview__grid > div { padding: 28px 23px; }
    .learning-case-overview h2,
    .learning-case-start h2 { font-size: 35px; }
    .learning-case-route { padding-top: 57px; padding-bottom: 60px; }
    .learning-case-route .laboratory-section__heading { margin-bottom: 28px; }
    .learning-case-route .laboratory-section__heading h2 { font-size: 31px; }
    .learning-case-route__grid { grid-template-columns: 1fr; gap: 12px; }
    .learning-case-route__grid article { min-height: 215px; padding: 24px 22px; }
    .learning-case-route__grid span { padding-bottom: 34px; }
    .learning-case-start { padding-top: 56px; padding-bottom: 60px; }
    .learning-case-start__inner { align-items: flex-start; flex-direction: column; gap: 25px; }
    .learning-case-start .button { width: 100%; justify-content: center; }
}

@media (max-width: 359px) {
    .learning-case-start h2 { font-size: 30px; }
}

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

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