@font-face {
  font-family: "Bebas Neue";
  src: url("./assets/fonts/bebas-neue.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("./assets/fonts/manrope-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("./assets/fonts/manrope-500.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("./assets/fonts/manrope-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("./assets/fonts/manrope-700.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --ink: #020817;
  --ink-raised: #08152b;
  --ink-soft: #101e36;
  --paper: #f7f8fb;
  --white: #ffffff;
  --blue: #5b91ff;
  --blue-strong: #3d7cff;
  --steel: #97a7bf;
  --muted: #637089;
  --line-dark: rgba(145, 160, 184, 0.22);
  --line-light: #d7deea;
  --content: 1600px;
  --gutter: clamp(24px, 3.125vw, 48px);
  --display: "Bebas Neue", "Arial Narrow", sans-serif;
  --body: "Manrope", ui-sans-serif, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  line-height: 1.5;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input,
textarea {
  font: inherit;
}

h1,
h2,
h3,
p,
figure {
  margin: 0;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--white);
  transform: translateY(-160%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  gap: 46px;
  align-items: center;
  min-height: 66px;
  padding: 0 var(--gutter);
  border-bottom: 1px solid var(--line-dark);
  color: var(--white);
  background: rgba(2, 8, 23, 0.97);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  width: 68px;
  flex: 0 0 68px;
}

.brand-wordmark {
  width: 68px;
  height: auto;
}

.brand-descriptor {
  display: none;
}

.top-nav {
  display: flex;
  gap: clamp(28px, 3.2vw, 50px);
  align-items: center;
  color: #c7d0df;
  font-size: 12px;
  font-weight: 500;
}

.top-nav a,
.footer-links a,
.text-link {
  transition:
    color 160ms ease,
    border-color 160ms ease;
}

.top-nav a:hover,
.top-nav a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible,
.text-link:hover,
.text-link:focus-visible {
  color: var(--blue);
}

.header-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: flex-end;
  margin-left: auto;
}

.language-switch {
  display: inline-flex;
  padding-right: 14px;
  border-right: 1px solid var(--line-dark);
}

.lang-button,
.menu-button {
  border: 0;
  color: var(--steel);
  background: transparent;
  cursor: pointer;
}

.lang-button {
  min-width: 36px;
  min-height: 36px;
  border: 1px solid transparent;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 780;
}

.lang-button.active {
  border-color: var(--blue);
  color: var(--white);
}

.menu-button {
  display: none;
}

.header-link {
  display: inline-flex;
  gap: 10px;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  padding: 0 19px;
  border: 1px solid rgba(91, 140, 255, 0.65);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  transition:
    color 160ms ease,
    background 160ms ease;
}

.header-link img,
.button img {
  width: 14px;
  height: 14px;
  filter: invert(1);
}

.header-link:hover,
.header-link:focus-visible {
  color: var(--ink);
  background: var(--white);
}

.header-link:hover img,
.header-link:focus-visible img {
  filter: none;
}

.dark-section {
  color: var(--white);
  background: var(--ink);
}

.section-shell,
.hero-shell {
  width: calc(100% - (var(--gutter) * 2));
  max-width: var(--content);
  margin: 0 auto;
}

.hero-section {
  min-height: 494px;
  border-bottom: 1px solid var(--line-dark);
}

.hero-shell {
  display: grid;
  grid-template-columns: minmax(500px, 0.88fr) minmax(620px, 1.12fr);
  gap: clamp(44px, 4.5vw, 72px);
  align-items: center;
  padding: 26px 0 22px;
}

.hero-copy,
.runtime-frame,
.product-copy,
.product-figure,
.cta-copy {
  min-width: 0;
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.23em;
  text-transform: uppercase;
}

h1,
h2 {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: 0.005em;
  text-transform: uppercase;
}

h1 {
  max-width: 650px;
  font-size: clamp(68px, 5.1vw, 84px);
  line-height: 0.96;
}

.hero-title-line {
  display: block;
  width: fit-content;
  white-space: nowrap;
}

html[lang="en"] .hero-title-line-2 {
  transform: scaleX(0.965);
  transform-origin: left center;
}

html[lang="en"] .hero-title-line-3 {
  transform: scaleX(1.05);
  transform-origin: left center;
}

html[lang="ru"] h1 {
  font-size: clamp(50px, 3.75vw, 60px);
  letter-spacing: -0.035em;
}

html[lang="ru"] .hero-title-line-3 {
  font-size: 0.9em;
}

h2 {
  font-size: clamp(46px, 4.4vw, 70px);
  line-height: 1;
}

h3 {
  font-size: 20px;
  line-height: 1.2;
}

.hero-lead {
  max-width: 520px;
  margin-top: 24px;
  color: #b9c3d3;
  font-size: clamp(17px, 1.2vw, 18px);
  line-height: 1.6;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 23px;
}

.button {
  display: inline-flex;
  gap: 12px;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 700;
  transition:
    color 160ms ease,
    background 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

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

.primary-button {
  border-color: var(--blue-strong);
  color: var(--white);
  background: var(--blue-strong);
}

.primary-button:hover,
.primary-button:focus-visible {
  border-color: #76a0ff;
  background: #76a0ff;
}

.secondary-button {
  border-color: rgba(145, 160, 184, 0.5);
  color: var(--white);
  background: transparent;
}

.secondary-button:hover,
.secondary-button:focus-visible {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.runtime-frame {
  overflow: hidden;
  border: 0;
  border-radius: 10px;
  background: transparent;
  box-shadow: none;
}

.frame-bar {
  display: none;
  align-items: center;
  justify-content: space-between;
  min-height: 32px;
  padding: 0 12px;
  border-bottom: 1px solid var(--line-dark);
  color: var(--steel);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.frame-state {
  color: #7cdda7;
}

.runtime-frame img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: top left;
  mix-blend-mode: screen;
  filter: invert(0.91) hue-rotate(180deg) brightness(0.84) saturate(1.35);
}

.runtime-frame figcaption,
.product-figure figcaption {
  padding: 11px 16px;
  border-top: 1px solid var(--line-dark);
  color: var(--steel);
  font-size: 10px;
}

.runtime-frame figcaption {
  display: none;
}

.architecture-strip {
  border-bottom: 1px solid var(--line-dark);
}

.architecture-shell {
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  padding: 24px 0 23px;
}

.architecture-intro {
  min-height: 120px;
  padding: 5px 28px 0 0;
  border-right: 1px solid var(--line-dark);
}

.architecture-intro .eyebrow {
  max-width: 190px;
  margin-bottom: 0;
  font-family: var(--display);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.2em;
  line-height: 1.55;
}

.architecture-intro > p:last-child {
  display: none;
}

.architecture-flow {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.architecture-flow li {
  position: relative;
  min-height: 120px;
  padding: 0;
}

.architecture-flow li::after {
  position: absolute;
  top: 25px;
  right: -7px;
  left: 53px;
  height: 1px;
  background: rgba(151, 167, 191, 0.5);
  content: "";
}

.architecture-flow li:last-child::after {
  display: none;
}

.architecture-flow .flow-icon,
.pillar-index,
.case-list > article > span,
.rollout-list > li > span {
  display: block;
  margin-bottom: 18px;
  color: var(--blue);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.architecture-flow .flow-icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  margin-bottom: 14px;
  border: 1px solid rgba(91, 145, 255, 0.8);
  border-radius: 50%;
  background: var(--ink);
}

.architecture-flow .flow-icon img {
  width: 21px;
  height: 21px;
  filter: invert(1);
}

.architecture-flow strong,
.architecture-flow small {
  display: block;
}

.architecture-flow strong {
  color: var(--blue);
  font-size: 10px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.architecture-flow small {
  max-width: 140px;
  margin-top: 6px;
  color: var(--steel);
  font-size: 10px;
  line-height: 1.5;
}

.section {
  padding: clamp(86px, 9vw, 138px) 0;
}

.light-section {
  background: var(--paper);
}

.section-heading {
  max-width: 860px;
  margin-bottom: 56px;
}

.wide-heading {
  max-width: 1060px;
}

.section-heading > p:last-child,
.product-copy > p,
.split-heading > p,
.cta-copy > p {
  max-width: 760px;
  margin-top: 24px;
  color: var(--muted);
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.6;
}

.pillar-list {
  border-top: 1px solid var(--line-light);
}

.pillar-list article {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 32px;
  padding: 36px 0;
  border-bottom: 1px solid var(--line-light);
}

.pillar-index {
  margin: 4px 0 0;
}

.pillar-list article > div {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(32px, 7vw, 120px);
  align-items: start;
}

.pillar-list p {
  max-width: 720px;
  color: var(--muted);
  font-size: 17px;
}

.product-section {
  color: var(--white);
  background: var(--ink-raised);
}

.product-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(500px, 1.22fr);
  gap: clamp(50px, 6vw, 96px);
  align-items: center;
}

.product-copy > p {
  color: #aebbd0;
}

.evidence-list {
  display: grid;
  gap: 0;
  margin: 34px 0 0;
  padding: 0;
  border-top: 1px solid var(--line-dark);
  list-style: none;
}

.evidence-list li {
  padding: 15px 0;
  border-bottom: 1px solid var(--line-dark);
  color: #c7d1e2;
  font-size: 13px;
}

.product-figure {
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: 12px;
  background: var(--ink);
}

.product-figure img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: top left;
}

.split-heading {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: clamp(48px, 8vw, 130px);
  align-items: end;
}

.split-heading > p {
  margin: 0;
}

.case-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.case-list article {
  min-height: 330px;
  padding: 32px;
  border-left: 1px solid var(--line-light);
}

.case-list article:first-child {
  border-left: 0;
}

.case-list p {
  margin-top: 22px;
  color: var(--muted);
}

.case-list small {
  display: block;
  margin-top: 38px;
  color: #35435b;
  font-size: 11px;
  font-weight: 720;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.rollout-section {
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  color: var(--white);
  background: var(--ink);
}

.rollout-shell {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(60px, 10vw, 160px);
}

.rollout-shell .section-heading {
  margin-bottom: 0;
}

.rollout-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-dark);
  list-style: none;
}

.rollout-list li {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line-dark);
}

.rollout-list > li > span {
  margin: 4px 0 0;
}

.rollout-list strong {
  font-size: 18px;
}

.rollout-list p {
  margin-top: 7px;
  color: var(--steel);
  font-size: 14px;
}

.research-section {
  padding: 34px 0 22px;
  background: var(--white);
}

.research-section .section-shell {
  display: grid;
  grid-template-columns: minmax(270px, 0.82fr) minmax(0, 2.18fr);
  gap: 38px;
  align-items: stretch;
}

.research-heading {
  display: grid;
  max-width: none;
  align-content: space-between;
  align-items: start;
  margin: 0;
}

.research-heading h2 {
  font-family: var(--body);
  font-size: clamp(30px, 2.5vw, 40px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.06;
  text-transform: none;
}

.text-link {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--line-light);
  color: #34425b;
  font-size: 13px;
  font-weight: 760;
}

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

.article-card {
  display: flex;
  min-height: 180px;
  flex-direction: column;
  padding: 3px 28px 0;
  border-left: 1px solid var(--line-light);
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  color: var(--blue-strong);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.article-card h3 {
  margin-top: 17px;
  font-family: var(--body);
  font-size: clamp(17px, 1.45vw, 22px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  text-transform: none;
}

.article-card h3 a:hover,
.article-card h3 a:focus-visible {
  color: var(--blue-strong);
}

.article-card > p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.article-card .article-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  width: fit-content;
  margin-top: auto;
  padding-top: 16px;
  color: var(--blue-strong);
  font-size: 11px;
  font-weight: 600;
}

.article-loading {
  grid-column: 1 / -1;
  min-height: 190px;
  padding: 36px 0;
  color: var(--muted);
}

.marketplace-preview {
  border-bottom: 1px solid var(--line-light);
  background:
    radial-gradient(circle at 82% 12%, rgba(61, 124, 255, 0.09), transparent 32%),
    var(--paper);
}

.marketplace-preview__intro > p {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.homepage-agent-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.homepage-agent-card {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  padding: 30px;
  border-left: 1px solid var(--line-light);
}

.homepage-agent-card:first-child {
  border-left: 0;
}

.homepage-agent-card__top {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  color: var(--blue-strong);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.homepage-agent-card h3 {
  margin-top: 44px;
  font-size: 26px;
}

.homepage-agent-card > small {
  margin-top: 7px;
  color: var(--blue-strong);
  font-weight: 700;
}

.homepage-agent-card > p {
  margin-top: 20px;
  color: var(--muted);
}

.homepage-agent-card .text-link {
  margin-top: auto;
}

.agent-loading {
  grid-column: 1 / -1;
  padding: 42px 0;
  color: var(--muted);
}

.cta-section {
  color: var(--white);
  background: var(--ink-raised);
}

.cta-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.8fr);
  gap: clamp(50px, 9vw, 140px);
  align-items: end;
  padding: clamp(76px, 9vw, 126px) 0;
}

.cta-copy > p {
  margin-top: 0;
  color: #aebbd0;
}

.site-footer {
  padding: 64px max(20px, calc((100vw - var(--content)) / 2));
  color: #aab7ca;
  background: var(--ink);
}

.footer-main {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 32px;
  align-items: start;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line-dark);
}

.footer-brand {
  display: inline-flex;
  width: 68px;
}

.footer-brand img {
  width: 68px;
  height: auto;
}

.footer-main p {
  max-width: 500px;
  color: var(--steel);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  padding: 46px 0;
  border-bottom: 1px solid var(--line-dark);
}

.footer-links > div {
  display: grid;
  gap: 11px;
  align-content: start;
}

.footer-links span {
  margin-bottom: 5px;
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.footer-links a {
  width: fit-content;
  color: var(--steel);
  font-size: 13px;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  justify-content: space-between;
  padding-top: 24px;
  color: #77849a;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 4px;
}

@media (max-width: 1120px) {
  .site-header {
    gap: 28px;
  }

  .top-nav {
    gap: 24px;
    padding: 0;
  }

  .hero-shell,
  .product-shell {
    grid-template-columns: 1fr;
  }

  .runtime-frame {
    max-width: 920px;
  }

  .architecture-shell {
    grid-template-columns: 1fr;
  }

  .architecture-intro {
    max-width: 560px;
    padding: 0;
    border-right: 0;
  }

  .architecture-flow {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 28px;
  }

  .architecture-flow li:nth-child(4) {
    border-left: 0;
  }

  .architecture-flow li:nth-child(3)::after,
  .architecture-flow li:last-child::after {
    display: none;
  }
}

@media (max-width: 780px) {
  html {
    scroll-padding-top: 64px;
  }

  .site-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 12px;
    min-height: 64px;
    padding: 0 18px;
    backdrop-filter: none;
  }

  .brand-descriptor,
  .header-link {
    display: none;
  }

  .brand,
  .brand-wordmark {
    width: 58px;
  }

  .menu-button {
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    padding: 0 4px;
    color: var(--white);
    font-size: 12px;
    font-weight: 750;
  }

  .header-actions {
    grid-column: 2;
    grid-row: 1;
  }

  .menu-button {
    grid-column: 3;
    grid-row: 1;
  }

  .language-switch {
    padding: 0;
    border: 0;
  }

  .top-nav {
    position: absolute;
    top: 64px;
    right: 0;
    left: 0;
    z-index: 50;
    display: none;
    grid-column: auto;
    grid-row: auto;
    align-content: start;
    gap: 0;
    min-height: calc(100dvh - 64px);
    padding: 26px 18px;
    color: var(--white);
    background: #050914;
    isolation: isolate;
  }

  .site-header.menu-open .top-nav {
    display: grid;
  }

  .top-nav a {
    padding: 18px 0;
    border-bottom: 1px solid var(--line-dark);
    font-size: 18px;
  }

  .section-shell,
  .hero-shell {
    width: calc(100% - 32px);
  }

  .hero-section {
    min-height: auto;
  }

  .hero-shell {
    grid-template-columns: minmax(0, 1fr);
    gap: 54px;
    padding: 72px 0 64px;
  }

  h1 {
    font-size: clamp(42px, 11vw, 50px);
    line-height: 0.94;
  }

  html[lang="ru"] h1 {
    font-size: clamp(31px, 8.3vw, 38px);
  }

  h2 {
    font-size: clamp(36px, 10vw, 50px);
  }

  .hero-lead {
    font-size: 18px;
  }

  .hero-actions,
  .cta-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .homepage-agent-grid {
    grid-template-columns: 1fr;
  }

  .homepage-agent-card,
  .homepage-agent-card:first-child {
    min-height: 290px;
    border-top: 1px solid var(--line-light);
    border-left: 0;
  }

  .runtime-frame figcaption {
    display: none;
  }

  .architecture-shell {
    padding: 34px 0;
  }

  .architecture-flow {
    grid-template-columns: 1fr;
  }

  .architecture-flow li,
  .architecture-flow li:nth-child(4) {
    display: grid;
    min-height: 0;
    grid-template-columns: 60px minmax(120px, 0.8fr) minmax(0, 1.2fr);
    gap: 12px;
    align-items: start;
    padding: 18px 0;
    border-top: 1px solid var(--line-dark);
    border-left: 0;
  }

  .architecture-flow span {
    margin: 0;
  }

  .architecture-flow li::after {
    display: none;
  }

  .architecture-flow .flow-icon {
    width: 44px;
    height: 44px;
    margin: 0;
  }

  .architecture-intro .eyebrow {
    max-width: none;
    margin-bottom: 10px;
    font-family: var(--body);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    line-height: 1.5;
  }

  .architecture-intro > p:last-child {
    display: block;
    color: var(--steel);
    font-size: 12px;
  }

  .architecture-flow small {
    margin-top: 0;
  }

  .section {
    padding: 78px 0;
  }

  .section-heading {
    margin-bottom: 40px;
  }

  .pillar-list article {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
    padding: 28px 0;
  }

  .pillar-list article > div {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .pillar-list p {
    font-size: 15px;
  }

  .product-shell,
  .split-heading,
  .rollout-shell,
  .cta-shell {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .product-figure img {
    aspect-ratio: 4 / 3;
  }

  .split-heading {
    align-items: start;
  }

  .case-list,
  .article-grid {
    grid-template-columns: 1fr;
  }

  .case-list article,
  .article-card,
  .article-card:first-child {
    min-height: auto;
    padding: 28px 0;
    border-top: 1px solid var(--line-light);
    border-left: 0;
  }

  .case-list article:first-child,
  .article-card:first-child {
    border-top: 0;
  }

  .case-list small {
    margin-top: 26px;
  }

  .research-heading {
    display: grid;
    gap: 28px;
    align-items: start;
  }

  .research-section .section-shell {
    grid-template-columns: 1fr;
  }

  .article-card h3 {
    font-size: 24px;
  }

  .article-card .article-link {
    margin-top: 26px;
  }

  .cta-shell {
    padding: 76px 0;
  }

  .footer-main,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .footer-main {
    gap: 22px;
  }

  .footer-links {
    gap: 36px;
  }
}

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

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