@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-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;
}

.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-card {
        display: block;
        min-height: 251px;
        padding: 0;
        border-radius: 9px;
    }

    .lab-card h3 {
        position: absolute;
        top: 23px;
        left: 19px;
        width: min(246px, calc(100% - 38px));
        min-height: 0;
        font-size: 16px;
        line-height: 1.1;
    }

    .lab-card > p {
        position: absolute;
        top: 109px;
        right: 18px;
        left: 19px;
        width: auto;
        min-height: 0;
        margin: 0;
        font-size: 14px;
        line-height: 1.1;
    }

    .lab-card > img {
        position: absolute;
        top: 54px;
        right: 16px;
        width: 65px;
        height: 55px;
        margin: 0;
    }

    .lab-card__bottom {
        position: static;
    }

    .lab-card__bottom span {
        position: absolute;
        top: 77px;
        left: 19px;
        font-size: 12px;
    }

    .lab-card__bottom .button {
        position: absolute;
        bottom: 12px;
        left: 19px;
    }

    .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 > 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-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: 34px;
        font-size: 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;
    font-size: 15px;
    line-height: 1.3;
    opacity: 0.83;
}

.lab-card > img {
    width: 130px;
    height: 108px;
    margin: auto 0 38px auto;
    filter: brightness(0) invert(1);
    opacity: 0.85;
}

.lab-card__bottom {
    right: 28px;
    bottom: 27px;
    left: 31px;
    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: "INPUT / 0" 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: 27px 51px 27px 22px;
    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: "SYSTEM MODULE";
    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: "UPDATE / СКБ";
    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: "READY TO START / 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: 390px;
    }
}

@media (max-width: 620px) {
    .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: 330px;
        font-size: 30px;
        line-height: 0.95;
    }

    .hero__heading p {
        max-width: 320px;
        font-size: 17px;
        line-height: 1.18;
    }

    .hero__text {
        max-width: 310px;
        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;
    }
}

@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;
    }
}
