@font-face {
  font-family: "Manrope";
  src: url("/assets/fonts/manrope-cyrillic.woff2") format("woff2");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --ink: #08121a;
  --ink-2: #0d1a24;
  --panel: #122330;
  --panel-2: #192d3a;
  --line: rgba(255, 255, 255, 0.14);
  --line-strong: rgba(255, 255, 255, 0.28);
  --paper: #f6f4ec;
  --paper-soft: #dce0dc;
  --muted: #96a5ad;
  --lime: #b8f04a;
  --orange: #ff9d58;
  --blue: #58b8ff;
  --danger: #ff7a72;
  --shell: min(1240px, calc(100% - 48px));
  --radius: 18px;
  --radius-sm: 10px;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.3);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--paper);
  background: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  z-index: -2;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  pointer-events: none;
}

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

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

button,
input,
textarea,
select {
  color: inherit;
  font: inherit;
}

button,
summary {
  cursor: pointer;
}

h1,
h2,
h3,
h4,
p,
ul,
ol,
dl {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  font-weight: 650;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 1050px;
  margin-bottom: 28px;
  font-size: clamp(48px, 7.1vw, 104px);
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(36px, 4.8vw, 68px);
}

h3 {
  margin-bottom: 14px;
  font-size: clamp(21px, 2.3vw, 30px);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  transform: translateY(-160%);
  border-radius: 8px;
  color: var(--ink);
  background: var(--lime);
}

.skip-link:focus {
  transform: none;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled,
.inner-page .site-header {
  border-color: var(--line);
  background: rgba(8, 18, 26, 0.9);
  backdrop-filter: blur(18px);
}

.header-row {
  display: flex;
  min-height: 84px;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  width: 240px;
  align-items: center;
  overflow: hidden;
  border-radius: 8px;
  background: #dbded6;
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

.main-nav {
  display: flex;
  min-width: 0;
  flex: 1;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.65vw, 25px);
  color: rgba(246, 244, 236, 0.72);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.main-nav a,
.footer-nav a {
  transition: color 160ms ease;
}

.main-nav a:hover,
.main-nav a[aria-current="page"],
.footer-nav a:hover {
  color: var(--lime);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
}

.menu-toggle::before,
.menu-toggle::after {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  content: "";
  transition: transform 160ms ease;
}

.site-header.is-menu-open .menu-toggle::before {
  transform: translateY(3px) rotate(45deg);
}

.site-header.is-menu-open .menu-toggle::after {
  transform: translateY(-3px) rotate(-45deg);
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

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

.button-primary {
  color: var(--ink);
  background: var(--lime);
}

.button-primary:hover {
  background: #ceff69;
}

.button-ghost {
  border-color: var(--line-strong);
  background: rgba(8, 18, 26, 0.28);
}

.button-ghost:hover {
  border-color: var(--paper);
  background: rgba(8, 18, 26, 0.6);
}

.button-dark {
  color: var(--paper);
  background: var(--ink);
}

.header-cta {
  flex: 0 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--lime);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 26px;
  height: 1px;
  background: currentColor;
  content: "";
}

.hero {
  position: relative;
  display: flex;
  min-height: 850px;
  align-items: flex-end;
  isolation: isolate;
  overflow: hidden;
  padding: 170px 0 74px;
}

.hero::before {
  position: absolute;
  z-index: -3;
  inset: 0;
  background: url("/assets/images/hero-production.jpg") center 42% / cover no-repeat;
  content: "";
  transform: scale(1.03);
}

.hero-video {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgba(4, 12, 18, 0.95) 0%, rgba(4, 12, 18, 0.72) 58%, rgba(4, 12, 18, 0.34) 100%), linear-gradient(0deg, var(--ink) 0%, transparent 32%);
  content: "";
}

.hero-copy {
  max-width: 1060px;
}

.hero-copy h1 span {
  color: var(--lime);
}

.hero-lead {
  max-width: 720px;
  margin-bottom: 34px;
  color: rgba(246, 244, 236, 0.78);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.5;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.showreel-line {
  display: flex;
  width: max-content;
  max-width: 100%;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(8, 18, 26, 0.52);
  font-size: 11px;
  backdrop-filter: blur(10px);
}

.showreel-line strong {
  color: var(--paper);
}

.showreel-line small {
  color: var(--lime);
  font: inherit;
  font-weight: 800;
}

.showreel-pulse {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 5px rgba(184, 240, 74, 0.13);
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 76px;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.hero-meta div {
  min-height: 118px;
  padding: 25px 24px 22px 0;
  border-right: 1px solid var(--line);
}

.hero-meta div + div {
  padding-left: 24px;
}

.hero-meta div:last-child {
  border-right: 0;
}

.hero-meta strong {
  display: block;
  margin-bottom: 6px;
  color: var(--paper);
  font-size: 22px;
  line-height: 1.1;
}

.hero-meta span {
  color: var(--muted);
  font-size: 12px;
}

.section {
  padding: 120px 0;
}

.section-soft {
  color: var(--ink);
  background: var(--paper);
}

.section-panel {
  background: var(--ink-2);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  align-items: end;
  gap: 60px;
  margin-bottom: 64px;
}

.section-heading p {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 17px;
}

.section-soft .section-heading p,
.section-soft .muted {
  color: #5e6b72;
}

.task-grid,
.solution-grid,
.industry-grid,
.proof-grid,
.document-grid,
.vacancy-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.task-card,
.solution-card,
.industry-card,
.proof-card,
.document-card,
.vacancy-card {
  position: relative;
  min-height: 320px;
  padding: 34px;
  background: var(--ink);
  transition: background 180ms ease, transform 180ms ease;
}

.task-card:hover,
.solution-card:hover,
.industry-card:hover,
.document-card:hover,
.vacancy-card:hover {
  z-index: 1;
  background: var(--panel);
  transform: translateY(-4px);
}

.task-card .index,
.solution-card .index,
.industry-card .index,
.process-step .index {
  display: block;
  margin-bottom: 64px;
  color: var(--lime);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
}

.task-card p,
.solution-card p,
.industry-card p,
.proof-card p,
.document-card p,
.vacancy-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.card-link {
  display: inline-flex;
  margin-top: 22px;
  color: var(--lime);
  font-size: 13px;
  font-weight: 800;
}

.capability-layout,
.case-layout,
.contact-layout,
.content-layout,
.feature-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(48px, 7vw, 110px);
  align-items: center;
}

.capability-layout > *,
.case-layout > *,
.contact-layout > *,
.content-layout > *,
.feature-layout > * {
  min-width: 0;
}

.media-frame {
  position: relative;
  min-height: 580px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.media-frame img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.media-caption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(8, 18, 26, 0.84);
  backdrop-filter: blur(12px);
}

.media-caption strong {
  font-size: 14px;
}

.media-caption span {
  color: var(--lime);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feature-list {
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  padding: 18px 0;
  border-top: 1px solid currentColor;
  border-color: rgba(8, 18, 26, 0.16);
}

.section-panel .feature-list li,
.inner-dark .feature-list li {
  border-color: var(--line);
}

.feature-list li::before {
  color: var(--lime);
  content: "↳";
}

.feature-list strong {
  display: block;
  margin-bottom: 4px;
}

.feature-list span {
  color: var(--muted);
  font-size: 14px;
}

.section-soft .feature-list span {
  color: #5e6b72;
}

.case-panel {
  padding: 62px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--panel), var(--ink));
}

.case-panel .metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 38px 0;
  background: var(--line);
}

.case-panel .metrics div {
  padding: 22px;
  background: var(--ink);
}

.case-panel .metrics strong {
  display: block;
  color: var(--lime);
  font-size: 26px;
}

.case-panel .metrics span {
  color: var(--muted);
  font-size: 11px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.process-step {
  min-height: 310px;
  padding: 34px;
  background: var(--ink-2);
}

.process-step p {
  color: var(--muted);
  font-size: 14px;
}

.partner-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.partner-strip span {
  display: grid;
  min-height: 112px;
  place-items: center;
  border-right: 1px solid var(--line);
  color: rgba(246, 244, 236, 0.72);
  font-size: 15px;
  font-weight: 700;
}

.partner-strip span:last-child {
  border-right: 0;
}

.cta-section {
  padding: 110px 0;
  color: var(--ink);
  background: var(--lime);
}

.cta-section h2 {
  max-width: 850px;
}

.cta-section p {
  max-width: 720px;
  margin-bottom: 32px;
  color: rgba(8, 18, 26, 0.72);
  font-size: 18px;
}

.site-footer {
  padding: 58px 0 28px;
  border-top: 1px solid var(--line);
  background: #050c11;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
}

.footer-brand img {
  display: block;
  width: 280px;
  max-width: 100%;
  height: auto;
  margin-bottom: 18px;
  border-radius: 8px;
  background: #dbded6;
}

.footer-brand p,
.footer-meta,
.footer-contact span {
  color: var(--muted);
  font-size: 13px;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 26px;
  font-size: 13px;
}

.footer-contact {
  display: grid;
  gap: 14px;
}

.footer-contact a {
  display: block;
  font-weight: 700;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.inner-hero {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  padding: 180px 0 90px;
  background: var(--ink-2);
}

.inner-hero::before {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 40%, rgba(184, 240, 74, 0.13), transparent 28%), linear-gradient(90deg, transparent 49.9%, rgba(255, 255, 255, 0.04) 50%, transparent 50.1%);
  background-size: auto, 72px 72px;
  content: "";
}

.inner-hero .shell {
  position: relative;
}

.inner-hero h1 {
  max-width: 980px;
  font-size: clamp(44px, 6vw, 86px);
}

.inner-lead {
  max-width: 780px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 23px);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
  color: var(--muted);
  font-size: 12px;
}

.breadcrumbs a:hover {
  color: var(--lime);
}

.inner-content {
  padding: 100px 0 120px;
}

.rich-copy {
  max-width: 780px;
}

.rich-copy h2 {
  margin-top: 72px;
  font-size: clamp(32px, 4vw, 54px);
}

.rich-copy h3 {
  margin-top: 42px;
}

.rich-copy p,
.rich-copy li {
  color: #cad2d4;
  font-size: 17px;
}

.rich-copy ul,
.rich-copy ol {
  padding-left: 22px;
}

.rich-copy li + li {
  margin-top: 10px;
}

.aside-facts {
  align-self: start;
  position: sticky;
  top: 116px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--ink-2);
}

.aside-facts dl {
  margin: 0;
}

.aside-facts div {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.aside-facts div:last-child {
  border-bottom: 0;
}

.aside-facts dt {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.aside-facts dd {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
}

.content-layout {
  grid-template-columns: minmax(0, 0.68fr) minmax(0, 0.32fr);
  align-items: start;
}

.image-break {
  width: var(--shell);
  margin: 0 auto 100px;
  overflow: hidden;
  border-radius: var(--radius);
}

.image-break img {
  width: 100%;
  max-height: 680px;
  object-fit: cover;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--line);
}

.logo-grid div {
  min-height: 145px;
  display: grid;
  place-items: center;
  padding: 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--paper-soft);
  text-align: center;
  font-weight: 800;
}

.logo-grid div:nth-child(5n) {
  border-right: 0;
}

.timeline {
  display: grid;
  gap: 1px;
  background: var(--line);
}

.timeline article {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 36px;
  padding: 34px;
  background: var(--ink-2);
}

.timeline strong {
  color: var(--lime);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}

.timeline p {
  margin-bottom: 0;
  color: var(--muted);
}

.document-card,
.vacancy-card {
  min-height: 260px;
}

.document-card .file-type,
.vacancy-card .level {
  display: inline-flex;
  margin-bottom: 54px;
  padding: 6px 10px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--lime);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

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

.contact-list {
  display: grid;
  gap: 1px;
  margin-top: 42px;
  background: var(--line);
}

.contact-list a,
.contact-list div {
  padding: 22px;
  background: var(--ink-2);
}

.contact-list span {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.request-form {
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ink-2);
}

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

.field {
  display: grid;
  gap: 8px;
}

.field-full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 54px;
  padding: 13px 15px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  outline: 0;
  background: var(--ink);
}

.field textarea {
  min-height: 148px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--lime);
  box-shadow: 0 0 0 3px rgba(184, 240, 74, 0.12);
}

.file-field {
  position: relative;
  display: grid;
  min-height: 112px;
  place-items: center;
  padding: 22px;
  border: 1px dashed var(--line-strong);
  border-radius: 8px;
  color: var(--muted);
  text-align: center;
}

.file-field input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  opacity: 0;
}

.file-field strong {
  color: var(--paper);
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 20px 0;
  color: var(--muted);
  font-size: 12px;
}

.form-consent input {
  margin-top: 4px;
}

.form-status {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.form-status.is-success {
  color: var(--lime);
}

.form-status.is-error {
  color: var(--danger);
}

.honeypot {
  position: absolute;
  left: -9999px;
}

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

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 25px 0;
  font-weight: 700;
  list-style: none;
}

.faq-list summary::after {
  color: var(--lime);
  content: "+";
  font-size: 24px;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 800px;
  padding-bottom: 26px;
  color: var(--muted);
}

.not-found {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 70px 0;
  text-align: center;
}

.not-found .code {
  color: var(--lime);
  font-size: clamp(100px, 20vw, 260px);
  font-weight: 700;
  line-height: 0.8;
  letter-spacing: -0.08em;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1120px) {
  .header-cta {
    display: none;
  }

  .main-nav {
    justify-content: flex-end;
  }

  .hero-meta {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-meta div:nth-child(2) {
    border-right: 0;
  }

  .hero-meta div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .task-grid,
  .solution-grid,
  .industry-grid,
  .proof-grid,
  .document-grid,
  .vacancy-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 900px) {
  :root {
    --shell: min(100% - 32px, 1240px);
  }

  .header-row {
    justify-content: space-between;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 84px;
    right: 16px;
    left: 16px;
    display: none;
    align-items: stretch;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--ink-2);
    box-shadow: var(--shadow);
  }

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

  .main-nav a {
    padding: 9px 4px;
  }

  .section-heading,
  .capability-layout,
  .case-layout,
  .contact-layout,
  .content-layout,
  .feature-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .aside-facts {
    position: static;
  }

  .section-heading {
    gap: 18px;
  }

  .partner-strip,
  .logo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .logo-grid div,
  .logo-grid div:nth-child(5n) {
    border-right: 1px solid var(--line);
  }

  .logo-grid div:nth-child(2n) {
    border-right: 0;
  }

  .footer-grid {
    gap: 34px;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 15px;
  }

  h1 {
    font-size: clamp(39px, 11.2vw, 44px);
    overflow-wrap: anywhere;
  }

  .brand {
    width: 195px;
  }

  .hero {
    min-height: 760px;
    padding-top: 140px;
  }

  .hero::after {
    background: linear-gradient(90deg, rgba(4, 12, 18, 0.94), rgba(4, 12, 18, 0.65)), linear-gradient(0deg, var(--ink), transparent 38%);
  }

  .showreel-line {
    width: 100%;
    align-items: flex-start;
    border-radius: 14px;
    flex-wrap: wrap;
  }

  .showreel-line > span:not(.showreel-pulse) {
    width: calc(100% - 28px);
  }

  .hero-meta,
  .task-grid,
  .solution-grid,
  .industry-grid,
  .proof-grid,
  .document-grid,
  .vacancy-grid,
  .process-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero-meta div,
  .hero-meta div + div {
    padding-left: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .section {
    padding: 82px 0;
  }

  .task-card,
  .solution-card,
  .industry-card,
  .proof-card {
    min-height: 280px;
  }

  .case-panel,
  .request-form {
    padding: 26px;
  }

  .case-panel .metrics {
    grid-template-columns: 1fr;
  }

  .media-frame {
    min-height: 420px;
  }

  .partner-strip,
  .logo-grid {
    grid-template-columns: 1fr;
  }

  .partner-strip span,
  .logo-grid div,
  .logo-grid div:nth-child(2n),
  .logo-grid div:nth-child(5n) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .timeline article {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .hero-video {
    display: none;
  }
}
