:root {
  color-scheme: light dark;
  --mk-yellow: #ffcd19;
  --mk-yellow-soft: #ffe47c;
  --mk-black: #0d0d0d;
  --mk-graphite: #17191f;
  --mk-panel: #20232b;
  --mk-line: rgba(255, 255, 255, 0.13);
  --mk-text: #f7f7f2;
  --mk-muted: #bfc4cb;
  --media-blue: #0d3b66;
  --media-cyan: #00a7c8;
  --media-ink: #102033;
  --media-muted: #5d6b7a;
  --media-bg: #ffffff;
  --white: #ffffff;
  --radius: 8px;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
  --max: 1720px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-hyphens: manual;
  hyphens: manual;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--mk-black);
  color: var(--mk-text);
  line-height: 1.55;
  overflow-wrap: break-word;
  word-break: normal;
}

body.site--mk {
  color-scheme: dark;
}

body.site--media {
  color-scheme: light;
  background: var(--media-bg);
  color: var(--media-ink);
}

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

.logo,
.nav,
.button,
.eyebrow {
  -webkit-hyphens: manual;
  hyphens: manual;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  transform: translateY(-140%);
  border-radius: var(--radius);
  background: var(--mk-yellow);
  color: #111;
  padding: 10px 12px;
  font-weight: 800;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
  -webkit-hyphens: manual;
  hyphens: manual;
}

:focus-visible {
  outline: 3px solid var(--mk-yellow);
  outline-offset: 4px;
}

.site--media :focus-visible {
  outline-color: var(--media-cyan);
}

.container {
  width: min(calc(100% - 32px), var(--max));
  margin-inline: auto;
}

.section {
  padding: clamp(64px, 9vw, 112px) 0;
}

[id] {
  scroll-margin-top: 96px;
}

.section--tight {
  padding: clamp(42px, 7vw, 78px) 0;
}

.section--compact {
  padding: clamp(32px, 5vw, 58px) 0;
}

.section--surface {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent),
    var(--mk-graphite);
}

.site--media .section--surface {
  background: #ffffff;
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

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

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(13, 13, 13, 0.82);
  backdrop-filter: blur(18px);
}

.site--media .header {
  border-bottom-color: rgba(16, 32, 51, 0.1);
  background: rgba(255, 255, 255, 0.9);
}

.header__inner {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site--mk .header__inner {
  min-height: 108px;
  gap: clamp(24px, 3vw, 44px);
}

.logo {
  display: inline-flex;
  align-items: stretch;
  min-width: max-content;
  font-weight: 800;
  letter-spacing: 0;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.logo--image {
  align-items: center;
  box-shadow: none;
}

.logo__image {
  display: block;
  width: clamp(168px, 17vw, 224px);
  max-height: 50px;
  object-fit: contain;
}

.site--mk .logo__image {
  width: clamp(230px, 21vw, 292px);
  max-height: 68px;
}

.site--media .logo__image {
  width: clamp(190px, 18vw, 238px);
  max-height: 44px;
}

.logo__mk {
  display: inline-flex;
  align-items: center;
  background: #111722;
  color: #fff;
  padding: 8px 12px;
}

.logo__name {
  display: inline-flex;
  align-items: center;
  background: var(--mk-yellow);
  color: #111;
  padding: 8px 12px;
}

.site--media .logo {
  box-shadow: none;
}

.site--media .logo__mk {
  background: var(--media-blue);
}

.site--media .logo__name {
  background: #f1b51c;
}

.nav {
  display: flex;
  order: 2;
  align-items: center;
  gap: 18px;
  color: var(--mk-muted);
  font-size: 0.93rem;
}

.site--mk .nav {
  flex: 1;
  justify-content: center;
  gap: clamp(20px, 2.4vw, 34px);
  font-size: 1.05rem;
  font-weight: 760;
}

.site--mk .nav > .button {
  margin-left: clamp(8px, 1.6vw, 22px);
}

.site--media .nav {
  color: var(--media-muted);
}

.nav a:hover {
  color: var(--mk-yellow);
}

.site--media .nav a:hover {
  color: var(--media-blue);
}

.nav__item {
  position: relative;
}

.nav__item::after {
  position: absolute;
  top: 100%;
  left: -18px;
  right: -18px;
  height: 38px;
  content: "";
}

.nav__link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.nav > a:not(.button),
.nav__link {
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  line-height: 1;
}

.site--mk .nav > a:not(.button),
.site--mk .nav__link {
  color: #d6dbe2;
}

.nav__submenu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  display: none;
  min-width: 210px;
  transform: translateX(-50%);
  border: 1px solid var(--mk-line);
  border-radius: var(--radius);
  background: rgba(13, 13, 13, 0.96);
  padding: 8px;
  box-shadow: var(--shadow);
}

.nav__submenu::before {
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
  content: "";
}

.site--media .nav__submenu {
  border-color: rgba(16, 32, 51, 0.12);
  background: rgba(255, 255, 255, 0.98);
}

.nav__item:hover .nav__submenu,
.nav__item:focus-within .nav__submenu,
.nav__submenu:hover {
  display: grid;
}

.nav__submenu a {
  border-radius: calc(var(--radius) - 2px);
  padding: 10px 12px;
  color: var(--mk-muted);
}

.nav__submenu a:hover,
.nav__submenu a:focus-visible {
  background: rgba(255, 205, 25, 0.12);
}

.site--media .nav__submenu a {
  color: var(--media-muted);
}

.site--media .nav__submenu a:hover,
.site--media .nav__submenu a:focus-visible {
  background: rgba(13, 59, 102, 0.08);
}

.nav__submenu--visual {
  position: fixed;
  top: 108px;
  left: 50%;
  width: min(calc(100vw - 64px), 1380px);
  min-width: 0;
  transform: translateX(-50%);
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  padding: 14px;
}

.nav__submenu--visual::before {
  top: -44px;
  height: 44px;
}

.nav__submenu .nav-card {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 96px;
  padding: 8px;
}

.nav-card__media {
  display: grid;
  width: 82px;
  aspect-ratio: 1;
  place-items: center;
  overflow: hidden;
  border-radius: calc(var(--radius) - 2px);
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 205, 25, 0.18), transparent 56%),
    rgba(255, 255, 255, 0.06);
}

.nav-card img {
  width: auto;
  height: auto;
  max-width: 72%;
  max-height: 72%;
  object-fit: contain;
  filter: drop-shadow(0 14px 18px rgba(0, 0, 0, 0.28));
}

.nav__submenu .nav-card--brand {
  grid-template-columns: minmax(0, 1fr);
  justify-items: stretch;
}

.nav-card--brand .nav-card__media {
  width: 100%;
  min-height: 82px;
  aspect-ratio: auto;
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 255, 255, 0.1), transparent 62%),
    rgba(255, 255, 255, 0.06);
}

.nav-card--brand img {
  max-width: 78%;
  max-height: 50px;
  filter: none;
}

.nav-card span {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.nav-card strong {
  color: var(--mk-text);
  font-size: 0.88rem;
  line-height: 1.1;
}

.nav-card small {
  color: var(--mk-muted);
  font-size: 0.7rem;
  line-height: 1.25;
}

.menu-button {
  display: none;
  order: 4;
  width: 44px;
  height: 44px;
  border: 1px solid var(--mk-line);
  border-radius: var(--radius);
  background: transparent;
  color: inherit;
}

.theme-toggle {
  position: relative;
  order: 3;
  flex: 0 0 auto;
  width: 54px;
  height: 34px;
  margin-left: auto;
  border: 1px solid var(--mk-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: inherit;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.theme-toggle:hover,
.theme-toggle:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(255, 205, 25, 0.55);
}

.theme-toggle__icon {
  position: absolute;
  top: 6px;
  left: 7px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--mk-yellow);
  box-shadow: 0 0 18px rgba(255, 205, 25, 0.5);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.theme-toggle__icon::after {
  position: absolute;
  inset: 3px 0 3px 9px;
  border-radius: 50%;
  background: rgba(13, 13, 13, 0.92);
  content: "";
  opacity: 0;
  transition: opacity 180ms ease;
}

.theme-toggle__label {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

:root[data-theme="dark"] .theme-toggle__icon {
  transform: translateX(18px);
  background: #f7f7f2;
  box-shadow: 0 0 14px rgba(255, 255, 255, 0.28);
}

:root[data-theme="dark"] .theme-toggle__icon::after {
  opacity: 1;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 11px 18px;
  font-weight: 750;
  line-height: 1.2;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.button--primary {
  background: var(--mk-yellow);
  color: #111;
}

.button--ghost {
  border-color: var(--mk-line);
  color: var(--mk-text);
}

.site--media .button--primary {
  background: var(--media-blue);
  color: #fff;
}

.site--media .button--ghost {
  border-color: rgba(16, 32, 51, 0.16);
  color: var(--media-ink);
}

.build-notice {
  width: min(calc(100% - 32px), 460px);
  max-width: 460px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: transparent;
  color: var(--mk-text);
  padding: 0;
  box-shadow: var(--shadow);
}

.build-notice::backdrop {
  background: rgba(4, 6, 10, 0.62);
  backdrop-filter: blur(6px);
}

.build-notice__panel {
  display: grid;
  gap: 14px;
  padding: clamp(24px, 5vw, 34px);
  background:
    linear-gradient(135deg, rgba(255, 205, 25, 0.14), transparent 42%),
    rgba(23, 25, 31, 0.98);
}

.build-notice__eyebrow {
  margin: 0;
  color: var(--mk-yellow);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.build-notice h2 {
  margin: 0;
  font-size: clamp(1.5rem, 4vw, 2rem);
  line-height: 1.08;
}

.build-notice p {
  margin: 0;
  color: var(--mk-muted);
}

.build-notice form {
  display: flex;
  justify-content: flex-start;
  margin-top: 6px;
}

.site--media .build-notice {
  border-color: rgba(16, 32, 51, 0.14);
  color: var(--media-ink);
}

.site--media .build-notice__panel {
  background:
    linear-gradient(135deg, rgba(0, 167, 200, 0.12), transparent 42%),
    rgba(255, 255, 255, 0.98);
}

.site--media .build-notice__eyebrow {
  color: var(--media-blue);
}

.site--media .build-notice p {
  color: var(--media-muted);
}

.hero {
  position: relative;
  --hero-active-image: var(--hero-image);
  min-height: min(720px, calc(100svh - 132px));
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background: var(--hero-active-image, var(--hero-image)) center / cover no-repeat;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(90deg, rgba(13, 13, 13, 0.94) 0%, rgba(13, 13, 13, 0.66) 48%, rgba(13, 13, 13, 0.18) 100%);
}

.site--media .hero::after {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.74) 47%, rgba(255, 255, 255, 0.16) 100%);
}

.hero__content {
  max-width: 760px;
  padding: 72px 0;
}

.hero--contact .hero__content,
.hero--service .hero__content {
  margin-left: max(16px, calc((100vw - var(--max)) / 2));
  margin-right: auto;
}

.hero--service {
  min-height: min(500px, calc(100svh - 120px));
}

.hero--service .hero__content {
  padding: 56px 0;
}

.hero--service h1,
.hero--contact h1 {
  font-size: clamp(2.5rem, 5.6vw, 5.55rem);
}

.robot-overview-visual {
  position: relative;
  min-height: clamp(390px, 44vw, 760px);
  overflow: hidden;
  border-bottom: 1px solid var(--mk-line);
  background: #dce8f6;
}

.robot-overview-visual__image {
  position: absolute;
  inset: 0;
  background: var(--robot-overview-image) center / cover no-repeat;
}

.section--robot-overview-intro {
  padding-top: clamp(46px, 5vw, 76px);
  padding-bottom: clamp(28px, 4vw, 54px);
  color: #f7f7f2;
  background: #07080b;
}

.robot-overview-intro {
  display: grid;
  gap: 16px;
  max-width: 920px;
}

.robot-overview-intro h1 {
  max-width: 880px;
  font-size: clamp(2.55rem, 5.5vw, 5.5rem);
  line-height: 0.96;
}

.robot-overview-intro .lead {
  max-width: 720px;
  margin-top: 0;
  color: #b8c2cf;
}

.robot-overview-intro .actions {
  margin-top: 6px;
}

.hero--mk-cinematic {
  min-height: min(760px, calc(100svh - 120px));
  background: #07080b;
}

.hero--mk-cinematic::before {
  z-index: -3;
  background:
    linear-gradient(115deg, #050608 0%, #10141b 54%, #07080b 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 34%);
}

.hero--mk-cinematic::after {
  background:
    linear-gradient(90deg, rgba(5, 6, 8, 0.94) 0%, rgba(5, 6, 8, 0.72) 38%, rgba(5, 6, 8, 0.18) 76%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 118px);
}

.hero__content--mk {
  padding: clamp(62px, 8vw, 96px) 0;
}

.hero--mk-cinematic h1 {
  max-width: 780px;
  font-size: clamp(2.75rem, 5.8vw, 5.55rem);
}

.hero--mk-landing {
  min-height: 56.25vw;
  color: #f7f7f2;
}

.hero--mk-landing::before {
  background: var(--hero-active-image, url("/assets/images/mk-landing-hero-dark.png")) center / cover no-repeat;
}

.hero--mk-landing::after {
  display: none;
}

.hero--mk-landing .hero__content--mk {
  width: min(calc(100% - clamp(72px, 16vw, 328px)), var(--max));
  max-width: var(--max);
}

.hero--mk-landing h1 {
  max-width: 690px;
  font-size: clamp(2.65rem, 4.25vw, 4.65rem);
}

.hero-slogan {
  margin: 18px 0 0;
  max-width: 700px;
  color: var(--mk-yellow);
  font-size: clamp(1.18rem, 2vw, 1.75rem);
  font-weight: 850;
  letter-spacing: 0;
}

.hero--mk-landing .lead {
  margin-top: 16px;
  max-width: 560px;
  color: currentColor;
}

.hero--mk-building::before {
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.82) 44%, rgba(255, 255, 255, 0.34) 78%),
    var(--hero-active-image, var(--hero-image)) center / cover no-repeat;
}

.hero--mk-building::after {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.58) 0%, rgba(255, 255, 255, 0.18) 58%, rgba(255, 255, 255, 0.08) 100%),
    repeating-linear-gradient(90deg, rgba(15, 23, 42, 0.045) 0 1px, transparent 1px 118px);
}

.hero--mk-building .hero__content--mk {
  max-width: 1080px;
  padding: clamp(46px, 6vw, 72px) 0;
}

.hero--mk-building {
  min-height: min(620px, calc(100svh - 140px));
}

.hero--mk-building h1 {
  max-width: 860px;
  font-size: clamp(2.65rem, 4.6vw, 4.45rem);
}

.hero--mk-building .lead {
  max-width: 650px;
}

.hero--mk-building .hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 920px;
}

.hero--mk-building .stat {
  min-width: 0;
  min-height: 82px;
  display: grid;
  align-content: start;
}

.hero--mk-video {
  min-height: min(620px, calc(100svh - 140px));
  background: #f7f9fc;
}

.hero--mk-video::before {
  z-index: -4;
  background:
    linear-gradient(115deg, #ffffff 0%, #f6f8fb 54%, #ffffff 100%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.04), transparent 34%);
}

.hero--mk-video::after {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.82) 38%, rgba(255, 255, 255, 0.34) 68%, rgba(255, 255, 255, 0.12) 100%),
    repeating-linear-gradient(90deg, rgba(15, 23, 42, 0.045) 0 1px, transparent 1px 118px);
}

.hero--mk-video .hero__content--mk {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  padding: clamp(46px, 6vw, 72px) 0;
}

.hero--mk-video h1 {
  max-width: 860px;
  font-size: clamp(2.65rem, 4.6vw, 4.45rem);
}

.hero--mk-video .lead {
  max-width: 650px;
}

.hero--mk-video .hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 920px;
}

.hero--mk-video .stat {
  min-width: 0;
  min-height: 82px;
  display: grid;
  align-content: start;
}

.mk-hero-video {
  position: absolute;
  inset: 0;
  z-index: -3;
  overflow: hidden;
  pointer-events: none;
  background: #eef2f7;
}

.mk-hero-video__panel {
  position: absolute;
  top: -5%;
  height: 110%;
  overflow: hidden;
  filter: saturate(1.08) contrast(1.04);
}

.mk-hero-video__panel video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mk-hero-video__panel--cc1 {
  left: -3%;
  width: 64%;
  clip-path: polygon(0 0, 88% 0, 72% 100%, 0 100%);
}

.mk-hero-video__panel--cc1 video {
  object-position: center;
}

.mk-hero-video__panel--mt1 {
  right: -3%;
  width: 62%;
  clip-path: polygon(21% 0, 100% 0, 100% 100%, 4% 100%);
}

.mk-hero-video__panel--mt1 video {
  object-position: center;
}

.mk-hero-video__accent {
  position: absolute;
  left: 51.5%;
  top: -8%;
  width: 9px;
  height: 118%;
  background: var(--yellow);
  transform: rotate(8deg);
  box-shadow: 0 0 42px rgba(255, 203, 5, 0.42);
  opacity: 0.88;
}

.hero-offer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  max-width: 1060px;
  margin-top: 26px;
}

.hero-offer {
  display: grid;
  grid-template-rows: 88px auto;
  min-width: 0;
  min-height: 150px;
  overflow: hidden;
  border: 1px solid rgba(16, 32, 51, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  color: #111827;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.hero-offer:hover,
.hero-offer:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 205, 25, 0.78);
  background: rgba(255, 255, 255, 0.92);
}

.hero-offer__image {
  display: grid;
  min-width: 0;
  min-height: 88px;
  place-items: center;
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 205, 25, 0.2), transparent 52%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.05), transparent);
  padding: 8px 12px 0;
}

.hero-offer__image img {
  width: 100%;
  height: 82px;
  object-fit: contain;
  filter: drop-shadow(0 18px 22px rgba(15, 23, 42, 0.24));
}

.hero-offer__copy {
  display: grid;
  gap: 5px;
  min-width: 0;
  padding: 10px 12px 13px;
}

.hero-offer strong {
  font-size: 0.98rem;
  line-height: 1.12;
}

.hero-offer small {
  color: #5b6675;
  font-size: 0.78rem;
  line-height: 1.25;
}

.site--mk .hero {
  color: #111827;
}

.site--mk .hero--mk-landing {
  color: #f7f7f2;
}

.site--mk .hero::after {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.72) 48%, rgba(255, 255, 255, 0.16) 100%),
    repeating-linear-gradient(90deg, rgba(15, 23, 42, 0.045) 0 1px, transparent 1px 118px);
}

.site--mk .hero .lead,
.site--mk .hero .stat span {
  color: #5b6675;
}

.site--mk .hero--mk-landing .lead {
  color: currentColor;
}

.site--mk .hero .stat {
  border-color: rgba(16, 32, 51, 0.14);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.06);
}

.site--mk .hero .button--ghost {
  border-color: rgba(16, 32, 51, 0.18);
  color: #111827;
  background: rgba(255, 255, 255, 0.48);
}

.mk-hero-scene {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}

.mk-hero-scene__grid {
  position: absolute;
  right: -8%;
  bottom: -16%;
  width: min(980px, 78vw);
  height: min(540px, 54vw);
  transform: perspective(780px) rotateX(58deg) rotateZ(-7deg);
  transform-origin: 50% 100%;
  background:
    linear-gradient(rgba(255, 255, 255, 0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.11) 1px, transparent 1px);
  background-size: 54px 54px;
  opacity: 0.58;
  animation: hero-grid-shift 9s linear infinite;
}

.mk-hero-scene__beam {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 205, 25, 0.72), transparent);
  opacity: 0.72;
  animation: hero-scan 5.6s ease-in-out infinite;
}

.mk-hero-scene__beam--one {
  top: 28%;
  right: 4%;
  width: min(690px, 58vw);
}

.mk-hero-scene__beam--two {
  top: 58%;
  right: -4%;
  width: min(760px, 64vw);
  animation-delay: -2.2s;
}

.mk-hero-scene__route {
  position: absolute;
  right: 11%;
  bottom: 18%;
  width: min(620px, 58vw);
  height: min(240px, 25vw);
  border: 1px solid rgba(255, 205, 25, 0.28);
  border-left: 0;
  border-radius: 0 8px 8px 0;
  transform: skewX(-9deg);
}

.mk-hero-scene__robot {
  position: absolute;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 32px 52px rgba(0, 0, 0, 0.62));
  will-change: transform;
}

.mk-hero-scene__robot--cc1 {
  right: 9%;
  bottom: 12%;
  width: min(510px, 40vw);
  animation: hero-robot-glide 7.4s ease-in-out infinite alternate;
}

.mk-hero-scene__robot--mt1 {
  right: 34%;
  bottom: 20%;
  width: min(320px, 25vw);
  opacity: 0.82;
  animation: hero-robot-float 6.8s ease-in-out infinite alternate;
}

.mk-hero-scene__robot--ketty {
  right: 3%;
  bottom: 32%;
  width: min(210px, 18vw);
  opacity: 0.76;
  animation: hero-robot-float 7.8s ease-in-out infinite alternate-reverse;
}

.mk-hero-scene__ping {
  position: absolute;
  width: 86px;
  height: 86px;
  border: 1px solid rgba(255, 205, 25, 0.42);
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.55);
  animation: hero-ping 3.8s ease-out infinite;
}

.mk-hero-scene__ping--one {
  right: 24%;
  bottom: 49%;
}

.mk-hero-scene__ping--two {
  right: 49%;
  bottom: 39%;
  animation-delay: -1.4s;
}

.mk-hero-scene__ping--three {
  right: 8%;
  bottom: 58%;
  animation-delay: -2.6s;
}

@keyframes hero-grid-shift {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 0 54px, 54px 0;
  }
}

@keyframes hero-scan {
  0%,
  100% {
    transform: translateX(20%);
    opacity: 0;
  }
  38%,
  68% {
    opacity: 0.82;
  }
  50% {
    transform: translateX(-10%);
  }
}

@keyframes hero-robot-glide {
  from {
    transform: translate3d(-2%, 0, 0) rotate(-0.5deg);
  }
  to {
    transform: translate3d(5%, -2%, 0) rotate(0.7deg);
  }
}

@keyframes hero-robot-float {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(6%, -5%, 0);
  }
}

@keyframes hero-ping {
  0% {
    opacity: 0;
    transform: scale(0.42);
  }
  18% {
    opacity: 0.68;
  }
  100% {
    opacity: 0;
    transform: scale(1.65);
  }
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--mk-yellow);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site--media .eyebrow {
  color: var(--media-blue);
}

h1,
h2,
h3,
p {
  -webkit-hyphens: manual;
  hyphens: manual;
  overflow-wrap: break-word;
  word-break: normal;
}

h1,
.hero-title {
  margin: 0;
  max-width: 820px;
  font-size: clamp(2.7rem, 7vw, 6.4rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4.2vw, 4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.2;
}

.lead {
  max-width: 760px;
  color: var(--mk-muted);
  font-size: clamp(1.04rem, 1.5vw, 1.28rem);
}

.site--media .lead {
  color: var(--media-muted);
}

.hero-actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.stat {
  border: 1px solid var(--mk-line);
  border-radius: var(--radius);
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.06);
}

.site--media .stat {
  border-color: rgba(16, 32, 51, 0.12);
  background: rgba(255, 255, 255, 0.72);
}

.stat strong {
  display: block;
  font-size: 1.25rem;
}

.stat span {
  color: var(--mk-muted);
  font-size: 0.88rem;
}

.site--media .stat span {
  color: var(--media-muted);
}

.section-heading {
  display: grid;
  gap: 16px;
  max-width: 820px;
  margin-bottom: 34px;
}

.positioning-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
}

.positioning-grid__statement {
  max-width: 780px;
}

.positioning-grid__cards,
.audience-list,
.stance-list,
.story-steps {
  display: grid;
  gap: 12px;
}

.value-card,
.audience-row,
.stance-item,
.story-steps span {
  display: grid;
  gap: 8px;
  border: 1px solid var(--mk-line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  padding: 18px;
}

.value-card span,
.audience-row span,
.stance-item strong,
.story-steps strong {
  color: var(--mk-yellow);
  font-weight: 850;
  line-height: 1.15;
}

.value-card p,
.audience-row p,
.stance-item span,
.story-steps small {
  margin: 0;
  color: var(--mk-muted);
  line-height: 1.38;
}

.audience-layout,
.story-panel,
.stance-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
}

.audience-layout__intro {
  position: sticky;
  top: 112px;
}

.audience-row {
  grid-template-columns: minmax(160px, 0.55fr) minmax(0, 1fr) auto;
  align-items: center;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.audience-row:hover {
  transform: translateX(4px);
  border-color: rgba(255, 205, 25, 0.5);
  background: rgba(255, 205, 25, 0.08);
}

.audience-row strong {
  justify-self: end;
  color: var(--mk-text);
  font-size: 0.9rem;
}

.story-panel {
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  align-items: stretch;
}

.story-panel__media {
  min-height: clamp(360px, 42vw, 560px);
  border: 1px solid var(--mk-line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.34)),
    var(--story-image) center / cover no-repeat;
}

.story-panel__copy {
  display: grid;
  align-content: center;
}

.story-steps {
  margin-top: 20px;
}

.story-steps span {
  grid-template-columns: minmax(92px, 0.26fr) minmax(0, 1fr);
  align-items: start;
}

.stance-layout {
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
}

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

.stance-item {
  min-height: 168px;
  align-content: end;
  background:
    linear-gradient(135deg, rgba(255, 205, 25, 0.12), transparent 48%),
    rgba(255, 255, 255, 0.055);
}

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

.mk-entry-card {
  display: grid;
  gap: 12px;
  min-height: 210px;
  align-content: end;
  overflow: hidden;
  border: 1px solid var(--mk-line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 205, 25, 0.14), transparent 44%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
  padding: clamp(22px, 4vw, 34px);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.mk-entry-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 205, 25, 0.58);
}

.mk-entry-card span {
  max-width: 560px;
  font-size: clamp(1.45rem, 2.5vw, 2.35rem);
  font-weight: 850;
  line-height: 1.05;
}

.mk-entry-card small {
  max-width: 620px;
  color: var(--mk-muted);
  font-size: 1rem;
}

.mk-entry-card strong {
  color: var(--mk-yellow);
}

.raas-spotlight {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
}

.raas-spotlight__panel {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px 18px;
  border: 1px solid rgba(255, 205, 25, 0.38);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 205, 25, 0.15), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
  padding: clamp(22px, 4vw, 34px);
}

.raas-spotlight__panel span {
  color: var(--mk-yellow);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.raas-spotlight__panel strong {
  font-size: clamp(1.12rem, 2vw, 1.55rem);
  line-height: 1.1;
}

.media-about {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
}

.media-about__copy {
  max-width: 820px;
}

.media-about__visual {
  display: grid;
  gap: 18px;
}

.media-about__logo {
  width: min(280px, 100%);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2);
}

.media-about__image {
  min-height: clamp(260px, 30vw, 430px);
  border: 1px solid var(--mk-line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.22)),
    var(--about-image) center / cover no-repeat;
}

.robot-video-montage {
  display: grid;
  gap: 14px;
  margin: 0;
}

.section--video-wide {
  overflow: hidden;
  padding-top: 0;
}

.container--video-wide {
  width: 100%;
  max-width: none;
}

.robot-video-montage__frame {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--mk-line);
  border-radius: var(--radius);
  background: #050608;
  aspect-ratio: 16 / 9;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
}

.section--video-wide .robot-video-montage__frame {
  border-inline: 0;
  border-radius: 0;
}

.robot-video-montage__frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.96;
}

.robot-video-montage__frame::after {
  pointer-events: none;
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 24%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.18), transparent 34%);
}

.robot-video-montage__meta {
  display: flex;
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  gap: 18px;
  align-items: end;
  justify-content: space-between;
}

.robot-video-montage__copy {
  display: grid;
  max-width: 780px;
  gap: 8px;
}

.robot-video-montage__copy h2,
.robot-video-montage__copy p {
  margin: 0;
}

.robot-video-montage__copy h2 {
  font-size: clamp(1.65rem, 2.8vw, 3rem);
}

.robot-video-montage__copy p:not(.eyebrow) {
  color: var(--mk-muted);
}

.robot-video-montage__actions {
  display: grid;
  gap: 10px;
  justify-items: end;
  min-width: min(100%, 360px);
}

.robot-video-montage__playlist {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.robot-video-montage__playlist[hidden],
.robot-video-montage__actions [hidden] {
  display: none;
}

.robot-video-montage__clip {
  min-height: 38px;
  max-width: 180px;
  overflow: hidden;
  border: 1px solid var(--mk-line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  color: var(--mk-text);
  padding: 8px 10px;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: pointer;
}

.robot-video-montage__clip:hover,
.robot-video-montage__clip:focus-visible,
.robot-video-montage__clip.is-active {
  border-color: rgba(255, 205, 25, 0.72);
  background: rgba(255, 205, 25, 0.14);
}

.trust-grid,
.trust-strip {
  display: grid;
  gap: 12px;
}

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

.trust-item,
.trust-strip span {
  display: grid;
  gap: 8px;
  min-width: 0;
  border: 1px solid var(--mk-line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  padding: 18px;
}

.trust-item strong,
.trust-strip strong {
  color: var(--mk-yellow);
  font-size: 1.02rem;
  line-height: 1.15;
}

.trust-item span,
.trust-strip small {
  color: var(--mk-muted);
  line-height: 1.35;
}

.trust-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--mk-line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025));
  padding: 24px;
}

.site--media .card {
  border-color: rgba(16, 32, 51, 0.12);
  background: #ffffff;
  box-shadow: 0 14px 36px rgba(11, 50, 82, 0.08);
}

.card p,
.list p {
  color: var(--mk-muted);
}

.site--media .card p,
.site--media .list p {
  color: var(--media-muted);
}

.principle-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 100%;
}

.principle-card__number {
  width: max-content;
  border: 1px solid rgba(255, 205, 25, 0.36);
  border-radius: 999px;
  color: var(--mk-yellow);
  padding: 4px 9px;
  font-size: 0.78rem;
  font-weight: 850;
}

.product-outcome {
  border-left: 3px solid var(--mk-yellow);
  margin: 16px 0 0;
  padding-left: 12px;
  font-weight: 700;
}

.color-options {
  display: grid;
  gap: 8px;
  margin: 18px 0 4px;
}

.color-options--compact {
  margin-top: 14px;
}

.color-options__label {
  color: var(--mk-muted);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.color-options__list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.color-option {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  border: 1px solid var(--mk-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--mk-muted);
  padding: 5px 8px 5px 6px;
  font-size: 0.78rem;
  line-height: 1.15;
}

.color-dot {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  border: 1px solid rgba(15, 23, 42, 0.22);
  border-radius: 50%;
  margin-right: 6px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0) 46%),
    var(--color);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.color-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: clamp(18px, 3vw, 38px);
  align-items: stretch;
}

.color-gallery__preview,
.color-gallery__choice {
  border: 1px solid var(--mk-line);
  border-radius: var(--radius);
  background:
    repeating-linear-gradient(90deg, rgba(15, 23, 42, 0.045) 0 1px, transparent 1px 52px),
    linear-gradient(145deg, #ffffff, #f1f4f8 70%);
}

.color-gallery__preview {
  display: grid;
  min-height: clamp(420px, 44vw, 680px);
  place-items: center;
  overflow: hidden;
  padding: clamp(20px, 4vw, 54px);
}

.color-gallery__preview img {
  width: 100%;
  height: 100%;
  max-height: 620px;
  object-fit: contain;
}

.color-gallery__choices {
  display: grid;
  gap: 12px;
}

.color-gallery__choice {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 118px;
  padding: 12px;
  color: var(--mk-text);
  cursor: pointer;
  text-align: left;
}

.color-gallery__choice img {
  width: 92px;
  height: 92px;
  object-fit: contain;
}

.color-gallery__choice span {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
  font-weight: 800;
}

.color-gallery__choice.is-active {
  border-color: rgba(255, 205, 25, 0.9);
  box-shadow: 0 0 0 3px rgba(255, 205, 25, 0.18);
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.service-card__image {
  width: calc(100% + 48px);
  height: 160px;
  margin: -24px -24px 20px;
  border-bottom: 1px solid var(--mk-line);
  object-fit: cover;
}

.site--media .service-card__image {
  border-bottom-color: rgba(16, 32, 51, 0.12);
}

.service-card .actions {
  margin-top: auto;
  padding-top: 22px;
}

.partner-offer {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  align-items: center;
  gap: clamp(24px, 4vw, 56px);
}

.partner-offer__copy {
  min-width: 0;
  max-width: 720px;
}

.partner-offer__badge {
  display: grid;
  min-width: 0;
  min-height: 260px;
  place-items: center;
  border: 1px solid rgba(16, 32, 51, 0.1);
  border-radius: var(--radius);
  background: #fff;
  padding: clamp(18px, 3vw, 42px);
  box-shadow: 0 18px 48px rgba(11, 50, 82, 0.1);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.partner-offer__badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 58px rgba(11, 50, 82, 0.14);
}

.partner-offer__badge img {
  width: min(100%, 760px);
  object-fit: contain;
}

.tag-list,
.spec-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.tag-list li,
.badge {
  border: 1px solid var(--mk-line);
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--mk-muted);
  font-size: 0.86rem;
}

.site--media .tag-list li,
.site--media .badge {
  border-color: rgba(16, 32, 51, 0.14);
  color: var(--media-muted);
}

.visual-band {
  min-height: 390px;
  border-block: 1px solid var(--mk-line);
  background: var(--visual-active-image, var(--visual-image)) center / cover no-repeat;
}

.image-card {
  min-height: 330px;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.82)),
    var(--visual-active-image, var(--visual-image)) center / cover no-repeat;
}

.scroll-runway {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border: 1px solid var(--mk-line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.02)),
    #10131a;
}

.scroll-runway__track {
  position: absolute;
  inset: 34px 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 52px 52px;
}

.scroll-runway__track span {
  position: absolute;
  left: 10%;
  right: 10%;
  height: 1px;
  background: rgba(255, 205, 25, 0.38);
}

.scroll-runway__track span:nth-child(1) {
  top: 28%;
}

.scroll-runway__track span:nth-child(2) {
  top: 50%;
}

.scroll-runway__track span:nth-child(3) {
  top: 72%;
}

.scroll-runway__robot {
  position: absolute;
  left: 4%;
  bottom: 26px;
  width: min(330px, 58%);
  max-height: 270px;
  object-fit: contain;
  filter: drop-shadow(0 26px 46px rgba(0, 0, 0, 0.5));
  animation: robot-drive 5.8s ease-in-out infinite alternate;
}

@keyframes robot-drive {
  from {
    transform: translateX(0) rotate(-1deg);
  }
  to {
    transform: translateX(62%) rotate(1.2deg);
  }
}

@supports (animation-timeline: view()) {
  .scroll-runway__robot {
    animation: robot-scroll both linear;
    animation-timeline: view();
    animation-range: entry 0% cover 78%;
  }
}

@keyframes robot-scroll {
  from {
    transform: translateX(-4%) rotate(-1deg);
  }
  to {
    transform: translateX(78%) rotate(1.2deg);
  }
}

.section--robot-experience {
  overflow: hidden;
  border-block: 1px solid var(--mk-line);
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 96px),
    linear-gradient(135deg, rgba(255, 205, 25, 0.12), transparent 36%),
    linear-gradient(225deg, rgba(90, 178, 255, 0.1), transparent 34%),
    linear-gradient(135deg, #090a0d 0%, #161a22 58%, #090a0d 100%);
}

.robot-experience {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: stretch;
}

.robot-experience__main {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.robot-selector-bar {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.robot-selector {
  display: grid;
  gap: 6px;
  min-height: 76px;
  border: 1px solid var(--mk-line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  color: var(--mk-text);
  padding: 14px;
  text-align: left;
  cursor: pointer;
}

.robot-selector.is-active {
  border-color: rgba(255, 205, 25, 0.72);
  background: rgba(255, 205, 25, 0.14);
}

.robot-selector span {
  font-weight: 800;
}

.robot-selector small {
  color: var(--mk-muted);
  line-height: 1.25;
}

.robot-viewport {
  position: relative;
  height: clamp(420px, 48vw, 640px);
  overflow: hidden;
  cursor: grab;
  touch-action: none;
}

.robot-viewport:active {
  cursor: grabbing;
}

.robot-viewport::before {
  position: absolute;
  inset: 9% 4% 0;
  content: "";
  background:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(180deg, transparent, #000 22%, #000 78%, transparent);
  pointer-events: none;
}

.robot-viewport canvas {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
}

.robot-inspector {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  border-left: 1px solid var(--mk-line);
  padding-left: clamp(20px, 3vw, 42px);
}

.robot-inspector h3 {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
}

.robot-inspector p {
  color: var(--mk-muted);
}

.hotspot-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.hotspot-button {
  display: grid;
  gap: 4px;
  width: 100%;
  border: 1px solid var(--mk-line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  color: var(--mk-text);
  padding: 13px 14px;
  text-align: left;
  cursor: pointer;
}

.hotspot-button.is-active {
  border-color: rgba(255, 205, 25, 0.75);
  background: rgba(255, 205, 25, 0.14);
}

.hotspot-button span {
  font-weight: 800;
}

.hotspot-button small {
  color: var(--mk-muted);
}

.fast-fact {
  margin-top: 20px;
  border: 1px solid rgba(255, 205, 25, 0.38);
  border-radius: var(--radius);
  background: rgba(255, 205, 25, 0.1);
  padding: 18px;
}

.fast-fact span,
.fast-fact strong {
  display: block;
}

.fast-fact span {
  color: var(--mk-yellow);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.fast-fact strong {
  margin-top: 8px;
  font-size: 1.15rem;
}

.fast-fact p {
  margin-bottom: 0;
}

.robot-detail-link {
  width: 100%;
  margin-top: 16px;
}

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

.industry-tile-grid--overview {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.industry-tile-grid--detail {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.industry-tile {
  position: relative;
  display: grid;
  grid-template-rows: minmax(250px, 0.72fr) auto;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--mk-line);
  border-radius: var(--radius);
  background: var(--mk-panel);
  color: var(--mk-text);
  isolation: isolate;
  box-shadow: var(--shadow);
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.industry-tile--detail {
  grid-template-rows: minmax(170px, auto) auto;
  min-height: 390px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
}

.industry-tile--detail .industry-tile__image {
  min-height: 170px;
}

.industry-tile--detail .industry-tile__body {
  padding: 18px;
}

.industry-tile--detail .industry-tile__body strong {
  font-size: clamp(1.15rem, 1.45vw, 1.45rem);
}

.industry-tile--detail .industry-tile__body small {
  font-size: 0.9rem;
}

.industry-tile:hover,
.industry-tile:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(255, 205, 25, 0.55);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.18);
}

.industry-tile__image {
  position: relative;
  min-height: 250px;
  background: var(--tile-image) var(--tile-position) / cover no-repeat;
  transition: transform 450ms ease, filter 450ms ease;
  filter: saturate(0.98) contrast(1.02);
}

.industry-tile:hover .industry-tile__image,
.industry-tile:focus-visible .industry-tile__image {
  transform: scale(1.035);
  filter: saturate(1.08) contrast(1.05);
}

.industry-tile__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
  padding: 24px;
  background: inherit;
}

.industry-tile__body strong {
  color: var(--mk-text);
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  line-height: 1.08;
}

.industry-tile__body small {
  color: var(--mk-muted);
  font-size: 0.98rem;
  line-height: 1.38;
}

.industry-tile__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 4px;
}

.industry-tile__tags em {
  border: 1px solid var(--mk-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--mk-muted);
  text-shadow: none;
  font-size: 0.75rem;
  font-style: normal;
  line-height: 1.2;
  padding: 6px 9px;
}

.industry-mini {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: 28px;
  align-items: center;
  border: 1px solid var(--mk-line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 205, 25, 0.11), transparent 42%),
    var(--mk-panel);
  padding: clamp(22px, 3vw, 34px);
  box-shadow: var(--shadow);
}

.industry-mini h2 {
  font-size: clamp(1.75rem, 2.6vw, 3rem);
}

.industry-mini p:not(.eyebrow) {
  max-width: 680px;
  color: var(--mk-muted);
  margin-bottom: 0;
}

.industry-mini__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.industry-mini__links a {
  border: 1px solid var(--mk-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--mk-text);
  padding: 9px 12px;
  font-size: 0.9rem;
  font-weight: 800;
}

.industry-mini__links a:hover,
.industry-mini__links a:focus-visible {
  border-color: rgba(255, 205, 25, 0.72);
  background: rgba(255, 205, 25, 0.14);
}

.industry-mini__links .industry-mini__all {
  background: var(--mk-yellow);
  color: #111;
  border-color: transparent;
}

.section--demo {
  border-block: 1px solid var(--mk-line);
  background:
    linear-gradient(135deg, rgba(255, 205, 25, 0.13), transparent 34%),
    linear-gradient(180deg, #10131a 0%, #090a0d 100%);
}

.demo-band {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
}

.demo-band__copy {
  max-width: 620px;
}

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

.demo-pill {
  min-height: 172px;
  border: 1px solid var(--mk-line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.03);
  padding: 22px;
}

.demo-pill h3 {
  font-size: 1.1rem;
}

.demo-pill p {
  color: var(--mk-muted);
  margin-bottom: 0;
}

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

.logo-comparison__panel {
  display: grid;
  gap: 14px;
  border: 1px solid var(--mk-line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    #10131a;
  padding: clamp(18px, 3vw, 28px);
}

.logo-comparison__panel > span {
  color: var(--mk-yellow);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.logo-comparison__panel--after {
  border-color: rgba(255, 205, 25, 0.58);
  background:
    linear-gradient(180deg, rgba(255, 205, 25, 0.13), rgba(255, 255, 255, 0.025)),
    #10131a;
}

.logo-comparison__stage {
  display: grid;
  min-height: 178px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(45deg, rgba(255, 255, 255, 0.045) 25%, transparent 25%, transparent 75%, rgba(255, 255, 255, 0.045) 75%),
    linear-gradient(45deg, rgba(255, 255, 255, 0.045) 25%, transparent 25%, transparent 75%, rgba(255, 255, 255, 0.045) 75%),
    #07080b;
  background-position: 0 0, 12px 12px;
  background-size: 24px 24px;
  padding: clamp(18px, 3vw, 34px);
}

.logo-comparison__stage img {
  width: min(100%, 520px);
  max-height: 120px;
  object-fit: contain;
}

.logo-comparison__panel p {
  color: var(--mk-muted);
  margin: 0;
}

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

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

.process-step {
  position: relative;
  min-height: 100%;
  border: 1px solid var(--mk-line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  padding: 24px;
}

.process-step::before {
  display: block;
  width: 36px;
  height: 4px;
  margin-bottom: 18px;
  border-radius: 999px;
  content: "";
  background: var(--mk-yellow);
}

.process-step--numbered {
  display: grid;
  gap: 12px;
}

.process-step--numbered::before {
  display: none;
}

.process-step--numbered > span {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 205, 25, 0.48);
  border-radius: 50%;
  color: var(--mk-yellow);
  font-weight: 900;
}

.process-step p {
  color: var(--mk-muted);
}

.product-figure {
  display: grid;
  min-height: 210px;
  place-items: center;
  margin: -4px -4px 22px;
  border-radius: var(--radius);
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.055) 0 1px, transparent 1px 46px),
    linear-gradient(145deg, rgba(255, 205, 25, 0.16), transparent 48%),
    linear-gradient(135deg, #262b33, #0f1116);
}

.robot-glyph {
  position: relative;
  width: 110px;
  height: 138px;
  border: 2px solid rgba(255, 255, 255, 0.22);
  border-radius: 34px 34px 18px 18px;
  background: linear-gradient(180deg, #323946, #11151c);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.44);
}

.robot-glyph::before {
  position: absolute;
  top: 26px;
  left: 22px;
  right: 22px;
  height: 9px;
  border-radius: 99px;
  content: "";
  background: var(--mk-yellow);
  box-shadow: 0 0 24px rgba(255, 205, 25, 0.7);
}

.robot-glyph::after {
  position: absolute;
  bottom: -10px;
  left: 16px;
  right: 16px;
  height: 18px;
  border-radius: 99px;
  content: "";
  background: #07080b;
}

.product-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.product-card__content {
  display: flex;
  flex: 1;
  min-width: 0;
  flex-direction: column;
}

.product-card--link {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.product-card--link:hover,
.product-card--link:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(255, 205, 25, 0.58);
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.13);
}

.product-card--link .button {
  pointer-events: none;
}

.product-card--primary {
  border-color: rgba(255, 205, 25, 0.42);
  background:
    linear-gradient(180deg, rgba(255, 205, 25, 0.11), rgba(255, 255, 255, 0.03)),
    var(--mk-graphite);
}

.product-card h3 {
  margin-bottom: 12px;
  font-size: clamp(1.22rem, 1.35vw, 1.48rem);
}

.product-card p {
  margin: 0;
}

.product-card__topline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.product-card__category,
.product-card__section-label,
.product-card__feature-list li {
  -webkit-hyphens: manual;
  hyphens: manual;
  overflow-wrap: anywhere;
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  line-height: 1.15;
  text-transform: uppercase;
}

.product-card__category {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border: 1px solid var(--mk-line);
  border-radius: 999px;
  padding: 6px 9px;
}

.product-card__category {
  color: var(--mk-muted);
  background: rgba(148, 163, 184, 0.12);
}

.product-card__role {
  margin-bottom: 12px;
  color: var(--mk-text);
  font-size: 0.98rem;
  font-weight: 820;
  line-height: 1.28;
}

.product-card__description {
  color: var(--mk-muted);
  line-height: 1.48;
}

.product-card__mobile-meta {
  display: none;
}

.product-card__section-label {
  display: block;
  margin-top: 18px;
  color: var(--mk-muted);
}

.product-card__feature-list {
  display: grid;
  gap: 7px;
  padding: 0;
  margin: 8px 0 0;
  list-style: none;
}

.product-card__feature-list li {
  width: fit-content;
  max-width: 100%;
  border: 1px solid rgba(255, 205, 25, 0.28);
  border-radius: 999px;
  background: rgba(255, 205, 25, 0.075);
  color: var(--mk-text);
  padding: 7px 10px;
  letter-spacing: 0;
  text-transform: none;
}

.product-card .color-options {
  margin-top: 16px;
}

.product-card .mini-metrics {
  margin-top: 8px;
}

.product-card .tag-list {
  margin-top: 8px;
}

.product-card .actions {
  margin-top: auto;
  padding-top: 22px;
}

.catalog-filter-layout {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  gap: clamp(18px, 2vw, 28px);
  align-items: start;
}

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

.catalog-filter {
  position: sticky;
  top: 98px;
  display: grid;
  gap: 20px;
  border: 1px solid var(--mk-line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  padding: 18px;
}

.catalog-filter__header,
.catalog-results__bar,
.filter-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.catalog-filter__header h3 {
  font-size: 1rem;
}

.catalog-filter__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.catalog-filter__toggle {
  display: none;
  min-height: 36px;
  border: 1px solid var(--mk-line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  color: var(--mk-text);
  padding: 7px 10px;
  font-size: 0.84rem;
  font-weight: 800;
  cursor: pointer;
}

.catalog-filter__groups {
  display: grid;
  gap: 20px;
}

.filter-reset {
  border: 0;
  background: transparent;
  color: var(--mk-yellow);
  padding: 0;
  font-size: 0.86rem;
  font-weight: 800;
  cursor: pointer;
}

.filter-search {
  display: grid;
  gap: 8px;
}

.filter-search span,
.filter-group legend {
  color: var(--mk-text);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.filter-search input {
  width: 100%;
  border: 1px solid var(--mk-line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  color: var(--mk-text);
  padding: 11px 12px;
}

.filter-group {
  display: grid;
  gap: 8px;
  min-width: 0;
  border: 0;
  padding: 0;
  margin: 0;
}

.filter-group legend {
  margin-bottom: 4px;
}

.filter-option {
  min-height: 38px;
  border-radius: var(--radius);
  padding: 7px 8px;
  color: var(--mk-muted);
  cursor: pointer;
}

.filter-option:hover,
.filter-option:has(input:checked) {
  background: rgba(255, 205, 25, 0.1);
  color: var(--mk-text);
}

.filter-option input {
  accent-color: var(--mk-yellow);
}

.filter-option span {
  flex: 1;
  min-width: 0;
  font-weight: 700;
  line-height: 1.2;
}

.filter-option small {
  min-width: 26px;
  border: 1px solid var(--mk-line);
  border-radius: 999px;
  color: var(--mk-muted);
  font-size: 0.76rem;
  line-height: 1;
  padding: 5px 7px;
  text-align: center;
}

.catalog-results {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.catalog-results__bar {
  border: 1px solid var(--mk-line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  padding: 13px 16px;
}

.catalog-results__bar p {
  margin: 0;
}

.catalog-results__bar strong {
  color: var(--mk-yellow);
}

.catalog-results__bar span {
  color: var(--mk-muted);
  font-size: 0.9rem;
  text-align: right;
}

.product-filter-grid [hidden],
.catalog-empty[hidden] {
  display: none;
}

.accessory-card__media {
  display: grid;
  min-height: 210px;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--mk-line);
  border-radius: var(--radius);
  background:
    repeating-linear-gradient(90deg, rgba(15, 23, 42, 0.045) 0 1px, transparent 1px 52px),
    linear-gradient(145deg, #ffffff, #f1f4f8 70%);
  margin: 0 0 18px;
  padding: 18px;
}

.accessory-card__media img {
  width: 100%;
  height: 210px;
  object-fit: contain;
}

.product-media {
  display: grid;
  min-height: 245px;
  aspect-ratio: 16 / 10;
  place-items: center;
  margin: -6px -6px 22px;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 52px),
    linear-gradient(145deg, rgba(255, 205, 25, 0.18), transparent 44%),
    linear-gradient(145deg, #2b3039, #0f1116 70%);
}

.product-media img {
  width: auto;
  height: auto;
  max-width: min(82%, 260px);
  max-height: 205px;
  object-fit: contain;
  filter: drop-shadow(0 20px 24px rgba(0, 0, 0, 0.34));
}

.mini-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 118px), 1fr));
  gap: 8px;
  margin: 18px 0 4px;
}

.mini-metrics span {
  display: grid;
  gap: 4px;
  min-width: 0;
  border: 1px solid var(--mk-line);
  border-radius: var(--radius);
  padding: 10px;
  background: rgba(255, 255, 255, 0.05);
}

.mini-metrics strong {
  -webkit-hyphens: manual;
  hyphens: manual;
  overflow-wrap: break-word;
  color: var(--mk-yellow);
  font-size: clamp(0.84rem, 0.86vw, 0.98rem);
  line-height: 1.1;
}

.mini-metrics small {
  -webkit-hyphens: manual;
  hyphens: manual;
  overflow-wrap: break-word;
  color: var(--mk-muted);
  font-size: 0.78rem;
  line-height: 1.25;
}

.product-filter-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
}

@media (min-width: 1500px) {
  .product-filter-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.product-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--mk-line);
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 118px),
    linear-gradient(125deg, transparent 0%, rgba(255, 205, 25, 0.12) 58%, transparent 100%),
    linear-gradient(135deg, #0d0d0d 0%, #17191f 58%, #0b0d11 100%);
}

.product-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(18px, 3vw, 34px);
  align-items: start;
  padding: clamp(22px, 3vw, 40px) 0 clamp(24px, 3.5vw, 44px);
}

.product-hero__copy {
  max-width: 760px;
}

.product-hero h1 {
  max-width: 760px;
  font-size: clamp(2rem, 3.15vw, 3.4rem);
}

.product-hero .lead {
  max-width: 680px;
  font-size: clamp(1rem, 1.1vw, 1.14rem);
  line-height: 1.55;
}

.product-hero__media {
  display: grid;
  width: 100%;
  height: clamp(220px, 24vw, 360px);
  place-items: center;
  overflow: hidden;
  border-block: 1px solid var(--mk-line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.02)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 56px),
    linear-gradient(145deg, rgba(255, 205, 25, 0.12), transparent 50%),
    #08090c;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.28);
}

.product-hero__media--video {
  aspect-ratio: 16 / 9;
  height: auto;
  min-height: 0;
}

.product-hero__media img {
  width: 100%;
  max-height: 300px;
  object-fit: contain;
  padding: clamp(12px, 3vw, 34px);
}

.product-hero__role {
  color: var(--mk-text);
  font-weight: 850;
}

.product-hero__video,
.product-hero__image {
  width: 100%;
  height: 100%;
  min-height: 0;
  max-height: none;
  display: block;
  user-select: none;
}

.product-hero__video {
  object-fit: cover;
  object-position: center;
  background: #08090c;
}

.product-hero__media--video .product-hero__video {
  object-fit: contain;
}

.product-hero__image {
  object-fit: contain;
  padding: clamp(12px, 3vw, 34px);
}

.product-detail-video {
  padding: clamp(18px, 3vw, 38px) 0 0;
  overflow: hidden;
}

.product-detail-video__stage {
  position: relative;
  display: grid;
  width: 100%;
  height: clamp(360px, 56vw, 960px);
  margin: 0;
  place-items: center;
  overflow: hidden;
  border-block: 1px solid var(--mk-line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.02)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 56px),
    linear-gradient(145deg, rgba(255, 205, 25, 0.12), transparent 50%),
    #08090c;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.32);
}

.product-detail-video__stage video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  background: #08090c;
}

.product-detail-video + .section--tight {
  padding-top: clamp(24px, 4vw, 48px);
}

.product-detail-overview {
  display: grid;
  grid-template-columns: minmax(280px, 0.76fr) minmax(420px, 1.24fr);
  gap: clamp(18px, 2.4vw, 30px);
  align-items: start;
}

.product-detail-main {
  display: grid;
  min-width: 0;
  gap: 14px;
  align-content: start;
}

.product-detail-intro {
  display: grid;
  gap: 10px;
  border: 1px solid var(--mk-line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 205, 25, 0.1), transparent 48%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025));
  padding: clamp(18px, 2.4vw, 28px);
}

.product-detail-intro h1 {
  max-width: 620px;
  font-size: clamp(1.8rem, 2.3vw, 2.65rem);
  line-height: 1.08;
}

.product-detail-intro .lead,
.product-detail-intro__claim,
.product-detail-intro__role {
  max-width: 620px;
  margin: 0;
  color: var(--mk-muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.product-detail-intro__claim,
.product-detail-intro__role {
  color: var(--mk-text);
  font-weight: 800;
}

.product-detail-intro .mini-metrics {
  max-width: 100%;
  gap: 8px;
}

.product-detail-intro .tag-list {
  margin-top: 2px;
}

.product-detail-intro .tag-list li {
  padding: 5px 9px;
  font-size: 0.78rem;
}

.product-detail-intro__actions {
  margin-top: 8px;
}

.product-profile-visual {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: clamp(260px, 22vw, 360px);
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--mk-line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 62% 34%, rgba(255, 205, 25, 0.18), transparent 42%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 54px),
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
    #08090c;
}

.product-profile-visual::after {
  content: none;
}

.product-profile-visual img {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  height: auto;
  max-height: 320px;
  object-fit: contain;
  object-position: center;
  padding: clamp(18px, 3vw, 38px);
  filter: drop-shadow(0 28px 42px rgba(0, 0, 0, 0.32));
}

.product-spec-card {
  align-self: start;
}

.product-spec-card h2 {
  font-size: clamp(2rem, 3.2vw, 3.4rem);
}

.product-spec-card .comparison {
  margin-top: 14px;
}

.product-hero__video--background,
.product-hero__image--background {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  min-height: 0;
  max-height: none;
  object-fit: cover;
  padding: 0;
  pointer-events: none;
  opacity: 0.96;
  filter: brightness(0.82) saturate(1.02);
}

.mini-metrics--hero {
  max-width: 720px;
}

.comparison {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--mk-line);
  border-radius: var(--radius);
}

.comparison th,
.comparison td {
  padding: 16px;
  border-bottom: 1px solid var(--mk-line);
  text-align: left;
  vertical-align: top;
}

.comparison th {
  background: rgba(255, 255, 255, 0.08);
}

.comparison--models th:first-child {
  width: 21%;
}

.service-matrix {
  overflow-x: auto;
  overflow-y: hidden;
  border: 1px solid var(--mk-line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    var(--mk-panel);
}

.comparison--service {
  border: 0;
  min-width: 940px;
}

.comparison--service thead th {
  background: rgba(255, 205, 25, 0.16);
  color: var(--mk-text);
}

.comparison--service th:first-child {
  width: 28%;
}

.comparison--service td:nth-child(2),
.comparison--service th:nth-child(2),
.comparison--service td:nth-child(3),
.comparison--service th:nth-child(3) {
  width: 18%;
  text-align: center;
}

.comparison--service td:nth-child(2),
.comparison--service td:nth-child(3) {
  background: rgba(255, 205, 25, 0.08);
}

.comparison--service td:nth-child(3) {
  background: rgba(0, 167, 200, 0.12);
}

.comparison--service td strong {
  color: var(--mk-text);
}

.comparison--service td:nth-child(3) strong {
  color: var(--mk-text);
}

.service-summary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px 28px;
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid var(--mk-line);
}

.service-summary p {
  margin: 0;
  color: var(--mk-muted);
}

.service-summary strong {
  display: block;
  margin-bottom: 6px;
  color: var(--mk-text);
}

.site--media .comparison,
.site--media .comparison th,
.site--media .comparison td {
  border-color: rgba(16, 32, 51, 0.12);
}

.site--media .comparison th {
  background: rgba(13, 59, 102, 0.08);
}

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

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

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

.field label,
.field-label,
.check label {
  font-weight: 750;
}

.field-hint {
  margin: -2px 0 2px;
  color: var(--mk-muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--mk-line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: inherit;
  padding: 12px 13px;
}

.field select option {
  background: var(--mk-panel);
  color: var(--mk-text);
}

.site--media .field input,
.site--media .field select,
.site--media .field textarea {
  border-color: rgba(16, 32, 51, 0.18);
  background: #fff;
  color: var(--media-ink);
}

.site--media .field select option {
  background: #fff;
  color: var(--media-ink);
}

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

.robot-choice {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 86px;
  gap: 10px;
  align-items: center;
  border: 1px solid var(--mk-line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  padding: 12px;
}

.robot-choice--disabled {
  opacity: 0.62;
}

.robot-choice__main {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  cursor: pointer;
}

.robot-choice__main input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  accent-color: var(--mk-yellow);
}

.robot-choice__main span,
.robot-choice__main strong,
.robot-choice__main small {
  display: block;
  min-width: 0;
}

.robot-choice__main strong {
  line-height: 1.2;
}

.robot-choice__main small {
  color: var(--mk-muted);
  font-size: 0.82rem;
  line-height: 1.25;
}

.robot-choice__quantity {
  display: grid;
  gap: 4px;
  font-size: 0.78rem;
  color: var(--mk-muted);
}

.robot-choice__quantity input {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--mk-line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: inherit;
  padding: 8px 9px;
}

.site--media .robot-choice,
.site--media .robot-choice__quantity input {
  border-color: rgba(16, 32, 51, 0.18);
  background: #fff;
}

.wear-tracker {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.6fr);
  gap: 22px;
  align-items: start;
}

.wear-form {
  position: sticky;
  top: 96px;
}

.wear-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.wear-actions .notice {
  margin: 0;
}

.wear-board {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.wear-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.wear-table-wrap {
  background: var(--mk-panel);
}

.wear-table {
  min-width: 900px;
}

.wear-table td small {
  display: block;
  color: var(--mk-muted);
  margin-top: 5px;
  line-height: 1.35;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border-radius: 999px;
  padding: 5px 9px;
  margin: 0 6px 6px 0;
  border: 1px solid var(--mk-line);
  background: rgba(255, 255, 255, 0.08);
  color: var(--mk-text);
  font-size: 0.8rem;
  font-weight: 800;
  white-space: nowrap;
}

.status-pill--ok {
  border-color: rgba(58, 181, 115, 0.42);
  background: rgba(58, 181, 115, 0.14);
  color: #a7f3c6;
}

.status-pill--warning {
  border-color: rgba(255, 205, 25, 0.48);
  background: rgba(255, 205, 25, 0.16);
  color: var(--mk-yellow);
}

.status-pill--danger {
  border-color: rgba(255, 94, 94, 0.5);
  background: rgba(255, 94, 94, 0.16);
  color: #ffb4b4;
}

.status-pill--stock {
  border-color: rgba(125, 220, 255, 0.45);
  background: rgba(0, 167, 200, 0.16);
  color: #9de7ff;
}

.wear-row-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.wear-row-actions button {
  border: 1px solid var(--mk-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: inherit;
  padding: 7px 10px;
  cursor: pointer;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 750;
}

.wear-row-actions button:hover {
  border-color: var(--mk-yellow);
}

.check {
  display: flex;
  align-items: start;
  gap: 10px;
}

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

.result-panel {
  min-height: 270px;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 22px 0;
}

.metric-row span {
  border: 1px solid var(--mk-line);
  border-radius: var(--radius);
  padding: 16px;
}

.metric-row strong,
.metric-row small {
  display: block;
}

.metric-row strong {
  font-size: 1.5rem;
}

.metric-row small,
.notice {
  color: var(--mk-muted);
}

.notice {
  font-size: 0.92rem;
}

.before-after {
  --split: 52%;
}

.before-after__stage {
  position: relative;
  min-height: clamp(360px, 48vw, 560px);
  overflow: hidden;
  border: 1px solid var(--mk-line);
  border-radius: var(--radius);
  background: #11151c;
}

.before-after__panel {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: end;
  padding: clamp(20px, 3vw, 34px);
}

.before-after__panel--manual {
  background:
    linear-gradient(180deg, rgba(8, 9, 12, 0.34), rgba(8, 9, 12, 0.86)),
    var(--manual-image) center / cover no-repeat;
}

.before-after__panel--robot {
  justify-content: end;
  background:
    linear-gradient(180deg, rgba(8, 9, 12, 0.16), rgba(8, 9, 12, 0.66)),
    var(--robot-image) center / cover no-repeat;
  clip-path: polygon(var(--split) 0, 100% 0, 100% 100%, var(--split) 100%);
  text-align: right;
}

.before-after__panel div {
  max-width: min(360px, 44%);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.72);
}

.before-after__panel span {
  display: block;
  color: var(--mk-yellow);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.before-after__panel strong {
  display: block;
  margin-top: 10px;
  font-size: clamp(1.1rem, 2.1vw, 1.75rem);
  line-height: 1.15;
}

.before-after__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--split);
  width: 2px;
  transform: translateX(-50%);
  background: rgba(255, 205, 25, 0.92);
  box-shadow: 0 0 28px rgba(255, 205, 25, 0.42);
}

.before-after__handle::before {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 205, 25, 0.72);
  border-radius: 50%;
  content: "<>";
  background: rgba(13, 13, 13, 0.88);
  color: var(--mk-yellow);
  font-weight: 900;
}

.before-after__range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  cursor: ew-resize;
  opacity: 0;
}

.footer {
  border-top: 1px solid var(--mk-line);
  background: #090a0d;
  padding: 54px 0 28px;
}

.site--media .footer {
  border-top-color: rgba(16, 32, 51, 0.12);
  background: #ffffff;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 28px;
}

.footer a {
  color: var(--mk-muted);
}

.site--media .footer a {
  color: var(--media-muted);
}

.footer ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 14px 0 0;
  list-style: none;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  box-shadow: var(--shadow);
}

.legal {
  max-width: 860px;
}

.legal h2 {
  margin-top: 36px;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 500ms ease, transform 500ms ease;
}

.js .reveal {
  opacity: 1;
  transform: translateY(18px);
}

.reveal.is-visible,
.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
	  .grid--3,
	  .grid--4,
	  .process-list,
	  .process-list--three,
	  .footer__grid,
	  .robot-experience,
	  .raas-spotlight,
	  .industry-tile-grid,
	  .positioning-grid,
	  .audience-layout,
	  .story-panel,
	  .stance-layout,
	  .catalog-filter-layout,
	  .wear-tracker,
	  .partner-offer,
	  .media-about,
	  .trust-grid,
	  .trust-strip {
	    grid-template-columns: repeat(2, minmax(0, 1fr));
	  }

	  .robot-experience,
	  .positioning-grid,
	  .audience-layout,
	  .story-panel,
	  .stance-layout,
	  .catalog-filter-layout,
	  .wear-tracker,
	  .product-detail-overview,
	  .industry-mini,
	  .partner-offer,
	  .media-about,
	  .demo-band {
	    grid-template-columns: 1fr;
	  }

  .industry-mini__links {
    justify-content: flex-start;
  }

  .audience-layout__intro {
    position: static;
  }

  .catalog-filter {
    position: static;
  }

  .catalog-filter__groups {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .wear-form {
    position: static;
  }

  .audience-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .audience-row strong {
    justify-self: start;
  }

  .hero-offer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 720px;
  }

  .hero-offer {
    grid-template-columns: 112px minmax(0, 1fr);
    grid-template-rows: 1fr;
    min-height: 112px;
  }

  .hero-offer__image {
    min-height: 112px;
    padding: 10px;
  }

  .hero-offer__image img {
    height: 88px;
  }

  .hero-offer__copy {
    align-content: center;
    padding: 12px 14px;
  }

  .robot-overview-visual {
    min-height: clamp(330px, 52vw, 560px);
  }

	  .robot-inspector {
	    border-left: 0;
	    border-top: 1px solid var(--mk-line);
	    padding-top: 24px;
	    padding-left: 0;
	  }

  .nav {
    position: absolute;
    top: 76px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--mk-line);
    border-radius: var(--radius);
    background: #11151c;
    padding: 12px;
    box-shadow: var(--shadow);
  }

  .site--mk .nav {
    top: 108px;
  }

  .site--media .nav {
    border-color: rgba(16, 32, 51, 0.14);
    background: #fff;
  }

  .nav[data-open] {
    display: flex;
  }

  .nav a {
    padding: 12px;
  }

  .nav__item {
    display: grid;
  }

  .nav__link {
    display: block;
    min-height: 0;
  }

  .nav__submenu {
    position: static;
    display: grid;
    min-width: 0;
    transform: none;
    border: 0;
    border-left: 1px solid var(--mk-line);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    padding: 0 0 4px 12px;
  }

  .site--media .nav__submenu {
    border-left-color: rgba(16, 32, 51, 0.14);
    background: transparent;
  }

  .nav__submenu::before {
    display: none;
  }

  .nav__submenu a {
    padding: 8px 10px;
  }

  .nav__submenu--visual {
    top: auto;
    left: auto;
    width: auto;
    min-width: 0;
    grid-template-columns: 1fr;
    padding: 4px 0 4px 12px;
  }

  .nav__submenu .nav-card {
    grid-template-columns: 66px minmax(0, 1fr);
    min-height: 82px;
    padding: 8px 10px;
  }

  .nav-card__media {
    width: 66px;
  }

  .nav-card img {
    max-width: 72%;
    max-height: 72%;
  }

  .nav__submenu .nav-card--brand {
    grid-template-columns: minmax(0, 1fr);
  }

  .nav-card--brand .nav-card__media {
    width: 100%;
    min-height: 66px;
  }

  .nav-card--brand img {
    max-width: 160px;
    max-height: 42px;
  }

  .menu-button {
    display: inline-grid;
    place-items: center;
  }

  .product-hero__inner {
    grid-template-columns: 1fr;
  }

  .product-hero__media {
    min-height: 220px;
  }

  .product-hero__media--video {
    height: auto;
    min-height: 0;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 40px), var(--max));
  }

  .grid--2,
  .grid--3,
	  .grid--4,
	  .process-list,
	  .process-list--three,
	  .footer__grid,
	  .form-grid,
	  .metric-row,
	  .robot-choice-grid,
	  .robot-selector-bar,
	  .mk-entry-grid,
	  .raas-spotlight,
	  .industry-tile-grid,
	  .positioning-grid,
	  .audience-layout,
	  .story-panel,
	  .stance-layout,
	  .stance-list,
	  .catalog-filter-layout,
	  .wear-tracker,
	  .wear-summary,
	  .color-gallery,
	  .industry-mini,
	  .partner-offer,
	  .media-about,
	  .robot-video-montage,
	  .demo-band__items,
	  .trust-grid,
	  .trust-strip {
	    grid-template-columns: 1fr;
	  }

  .industry-tile {
    grid-template-rows: minmax(210px, auto) auto;
    min-height: 0;
  }

  .industry-tile__image {
    min-height: 210px;
  }

  .industry-mini {
    padding: 20px;
  }

  .story-steps span {
    grid-template-columns: 1fr;
  }

  .story-panel__media {
    min-height: 320px;
  }

  .hero {
    min-height: auto;
  }

  .hero--mk-cinematic {
    min-height: auto;
  }

  .hero--mk-cinematic::after {
    background:
      linear-gradient(180deg, rgba(5, 6, 8, 0.96) 0%, rgba(5, 6, 8, 0.76) 58%, rgba(5, 6, 8, 0.32) 100%),
      repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 90px);
  }

  .hero--mk-landing::after {
    background:
      linear-gradient(180deg, rgba(5, 6, 8, 0.96) 0%, rgba(5, 6, 8, 0.72) 50%, rgba(5, 6, 8, 0.18) 100%),
      linear-gradient(90deg, rgba(5, 6, 8, 0.78) 0%, rgba(5, 6, 8, 0.2) 100%);
  }

  .hero--mk-video::after {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.86) 54%, rgba(255, 255, 255, 0.28) 100%),
      repeating-linear-gradient(90deg, rgba(15, 23, 42, 0.045) 0 1px, transparent 1px 90px);
  }

  .mk-hero-video__panel {
    top: 38%;
    height: 68%;
    opacity: 0.82;
  }

  .mk-hero-video__panel--cc1 {
    left: -22%;
    width: 82%;
    clip-path: polygon(0 0, 100% 0, 82% 100%, 0 100%);
  }

  .mk-hero-video__panel--mt1 {
    right: -24%;
    width: 82%;
    clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
  }

  .mk-hero-video__accent {
    left: 49%;
    top: 35%;
    height: 72%;
    opacity: 0.64;
  }

  .mk-hero-scene {
    opacity: 0.78;
  }

  .mk-hero-scene__grid {
    right: -40%;
    bottom: -10%;
    width: 138vw;
    height: 68vw;
  }

  .mk-hero-scene__robot--cc1 {
    right: -22%;
    bottom: 3%;
    width: 82vw;
  }

  .mk-hero-scene__robot--mt1 {
    right: 42%;
    bottom: 10%;
    width: 40vw;
  }

  .mk-hero-scene__robot--ketty {
    display: none;
  }

  .mk-hero-scene__route {
    right: -12%;
    bottom: 14%;
    width: 92vw;
    height: 28vw;
  }

  .hero::after {
    background: linear-gradient(180deg, rgba(13, 13, 13, 0.9), rgba(13, 13, 13, 0.58));
  }

  .site--media .hero::after {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.72));
  }

  .hero--mk-cinematic::after {
    background:
      linear-gradient(180deg, rgba(5, 6, 8, 0.96) 0%, rgba(5, 6, 8, 0.76) 58%, rgba(5, 6, 8, 0.32) 100%),
      repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 90px);
  }

  .hero--mk-video::after {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.86) 54%, rgba(255, 255, 255, 0.28) 100%),
      repeating-linear-gradient(90deg, rgba(15, 23, 42, 0.045) 0 1px, transparent 1px 90px);
  }

  .hero__content {
    padding: 54px 0 76px;
  }

  .hero__content--mk,
  .site--mk .header__inner {
    width: calc(100% - 40px);
    max-width: calc(100% - 40px);
  }

  .hero--mk-landing .hero__content--mk {
    width: calc(100% - 40px);
    max-width: calc(100% - 40px);
  }

  .hero--mk-cinematic h1 {
    max-width: 100%;
    font-size: 2.55rem;
    overflow-wrap: anywhere;
  }

  .hero--mk-cinematic .lead {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .hero-offer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
    max-width: 100%;
    margin-top: 22px;
  }

  .hero-offer {
    grid-template-columns: 1fr;
    grid-template-rows: 72px auto;
    min-height: 132px;
  }

  .hero-offer__image {
    min-height: 72px;
    padding: 7px 8px 0;
  }

  .hero-offer__image img {
    height: 66px;
  }

  .hero-offer__copy {
    gap: 3px;
    align-content: start;
    padding: 8px 9px 10px;
  }

  .hero-offer strong {
    font-size: 0.86rem;
  }

  .hero-offer small {
    font-size: 0.72rem;
    overflow-wrap: anywhere;
  }

  .robot-overview-visual {
    min-height: 64vw;
  }

  .robot-video-montage__frame {
    aspect-ratio: 4 / 3;
  }

  .robot-video-montage__meta {
    display: grid;
    align-items: start;
  }

  .robot-video-montage__actions {
    justify-items: start;
    min-width: 0;
  }

  .robot-video-montage__playlist {
    justify-content: flex-start;
  }

  .media-about__logo {
    width: min(250px, 100%);
  }

  .robot-overview-intro h1 {
    max-width: 100%;
    font-size: clamp(2.35rem, 12vw, 3.9rem);
    overflow-wrap: anywhere;
  }

  .site--mk .header__inner {
    min-height: 76px;
    gap: 12px;
  }

  .site--mk .logo__image {
    width: 210px;
    max-height: 50px;
  }

  .site--mk .nav {
    top: 76px;
  }

  .hero--mk-cinematic .hero__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .hero--mk-cinematic .stat {
    min-width: 0;
    padding: 10px 8px;
  }

  .hero--mk-cinematic .stat strong {
    font-size: 0.96rem;
    line-height: 1.05;
  }

  .hero--mk-cinematic .stat span {
    display: none;
  }

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

  .catalog-container {
    width: min(calc(100% - 24px), var(--max));
  }

  .catalog-filter {
    position: sticky;
    top: 84px;
    z-index: 8;
    gap: 12px;
    padding: 12px;
    background: rgba(17, 21, 28, 0.94);
    backdrop-filter: blur(14px);
  }

  .catalog-filter__header {
    align-items: center;
    gap: 10px;
  }

  .catalog-filter__header h3 {
    font-size: 0.98rem;
  }

  .catalog-filter__actions {
    gap: 8px;
  }

  html.js .catalog-filter__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .filter-reset,
  .catalog-filter__toggle {
    font-size: 0.8rem;
  }

  .filter-search {
    gap: 6px;
  }

  .filter-search input {
    min-height: 42px;
    padding: 10px 12px;
  }

  .catalog-filter__groups {
    grid-template-columns: 1fr;
    gap: 10px;
    max-height: min(58vh, 520px);
    overflow-y: auto;
    padding-right: 2px;
  }

  html.js .catalog-filter[data-filter-collapsed] .catalog-filter__groups {
    display: none;
  }

  .filter-group {
    gap: 5px;
  }

  .filter-option {
    min-height: 34px;
    padding: 6px 7px;
  }

  .catalog-results {
    gap: 10px;
  }

  .catalog-results__bar {
    display: grid;
    gap: 2px;
    padding: 11px 12px;
  }

  .catalog-results__bar span {
    text-align: left;
  }

  .product-filter-grid {
    gap: 10px;
  }

  .product-filter-grid .product-card {
    display: grid;
    grid-template-columns: minmax(94px, 30%) minmax(0, 1fr);
    gap: 12px;
    align-items: stretch;
    min-height: 0;
    padding: 12px;
  }

  .product-filter-grid .product-card:hover,
  .product-filter-grid .product-card:focus-visible {
    transform: translateY(-1px);
  }

  .product-filter-grid .product-media {
    height: 100%;
    min-height: 0;
    aspect-ratio: 1;
    margin: 0;
    border-radius: calc(var(--radius) - 2px);
  }

  .product-filter-grid .product-media img {
    max-width: 88%;
    max-height: 128px;
  }

  .product-card__topline {
    margin-bottom: 6px;
  }

  .product-card__category {
    min-height: 0;
    padding: 4px 7px;
    font-size: 0.62rem;
    line-height: 1.1;
  }

  .product-card h3 {
    margin-bottom: 5px;
    font-size: 1.04rem;
    line-height: 1.12;
  }

  .product-card__role {
    display: -webkit-box;
    margin-bottom: 0;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-size: 0.84rem;
    line-height: 1.22;
  }

  .product-card__mobile-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    margin-top: 8px;
  }

  .product-card__mobile-meta span {
    display: grid;
    gap: 2px;
    min-width: 0;
    border: 1px solid var(--mk-line);
    border-radius: calc(var(--radius) - 2px);
    background: rgba(255, 255, 255, 0.055);
    padding: 7px;
  }

  .product-card__mobile-meta strong,
  .product-card__mobile-meta small {
    overflow-wrap: anywhere;
    line-height: 1.08;
  }

  .product-card__mobile-meta strong {
    color: var(--mk-yellow);
    font-size: 0.78rem;
  }

  .product-card__mobile-meta small {
    color: var(--mk-muted);
    font-size: 0.66rem;
  }

  .product-filter-grid .product-card__description,
  .product-filter-grid .product-card__section-label,
  .product-filter-grid .product-card__feature-list,
  .product-filter-grid .color-options,
  .product-filter-grid .product-card__metrics,
  .product-filter-grid .tag-list,
  .product-filter-grid .actions {
    display: none;
  }

  .product-media {
    min-height: 220px;
    height: 220px;
  }

  .product-media img {
    min-height: 0;
    width: auto;
    height: auto;
    max-width: 82%;
    max-height: 185px;
  }

  .product-hero__inner {
    min-height: auto;
    padding: 34px 0;
  }

	  .product-hero__media {
      height: 210px;
	    min-height: 190px;
	  }

    .product-hero__media--video {
      height: auto;
      min-height: 0;
    }

    .product-profile-visual {
      min-height: 260px;
    }

    .product-profile-visual img {
      object-position: center;
      max-height: 240px;
      padding: 18px;
    }

    .product-detail-video {
      padding-top: 0;
    }

    .product-detail-video__stage {
      height: clamp(220px, 62vw, 340px);
    }

    .product-detail-overview {
      gap: 12px;
    }

    .product-detail-main {
      gap: 12px;
    }

    .product-detail-intro {
      gap: 8px;
      padding: 16px;
    }

    .product-detail-intro h1 {
      font-size: clamp(1.55rem, 8vw, 2rem);
      line-height: 1.08;
    }

    .product-detail-intro .lead,
    .product-detail-intro__claim,
    .product-detail-intro__role {
      font-size: 0.92rem;
      line-height: 1.43;
    }

    .product-detail-intro .mini-metrics {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      margin-top: 8px;
    }

    .product-detail-intro .mini-metrics span:first-child {
      grid-column: 1 / -1;
    }

    .product-detail-intro .tag-list {
      flex-wrap: nowrap;
      gap: 6px;
      overflow-x: auto;
      padding-bottom: 5px;
      margin-top: 8px;
    }

    .product-detail-intro .tag-list li {
      flex: 0 0 auto;
      max-width: 82vw;
      white-space: nowrap;
    }

    .product-detail-intro__actions {
      display: grid;
      grid-template-columns: 1fr;
      gap: 8px;
      margin-top: 8px;
    }

    .product-detail-intro__actions .button {
      width: 100%;
    }

    .product-profile-visual {
      min-height: 220px;
    }

    .product-profile-visual img {
      max-height: 205px;
    }

    .product-spec-card {
      padding: 16px;
    }

    .product-spec-card h2 {
      font-size: 1.45rem;
      line-height: 1.1;
    }

    .product-spec-card .comparison {
      display: grid;
      overflow: visible;
      border: 0;
      gap: 10px;
    }

    .product-spec-card .comparison tbody {
      display: grid;
      gap: 10px;
    }

    .product-spec-card .comparison tr {
      display: grid;
      gap: 4px;
      border: 1px solid var(--mk-line);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, 0.045);
      padding: 11px 12px;
    }

    .product-spec-card .comparison th,
    .product-spec-card .comparison td {
      display: block;
      border: 0;
      padding: 0;
    }

    .product-spec-card .comparison th {
      background: transparent;
      color: var(--mk-yellow);
      font-size: 0.78rem;
      line-height: 1.2;
      text-transform: uppercase;
    }

    .product-spec-card .comparison td {
      color: var(--mk-muted);
      font-size: 0.92rem;
      line-height: 1.35;
    }

	  .robot-viewport {
	    height: 390px;
	  }

  .industry-tile {
    min-height: 250px;
  }

  .demo-pill {
    min-height: 0;
  }

  .scroll-runway {
    min-height: 280px;
  }

  .scroll-runway__robot {
    width: min(280px, 70%);
  }

  .before-after__stage {
    min-height: 430px;
  }

  .before-after__panel {
    padding: 18px;
  }

  .before-after__panel div {
    max-width: 46%;
  }

  .before-after__panel span {
    font-size: 0.7rem;
  }

  .before-after__panel strong {
    font-size: 0.98rem;
  }

  .comparison {
    display: block;
    overflow-x: auto;
  }

  .service-matrix {
    overflow: visible;
    border: 0;
    background: transparent;
  }

  .comparison--service {
    display: block;
    min-width: 0;
    border: 0;
    overflow: visible;
  }

  .comparison--service thead {
    display: none;
  }

  .comparison--service tbody {
    display: grid;
    gap: 12px;
  }

  .comparison--service tr {
    display: grid;
    overflow: hidden;
    border: 1px solid var(--mk-line);
    border-radius: var(--radius);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
      var(--mk-panel);
  }

  .comparison--service th,
  .comparison--service td {
    display: grid;
    grid-template-columns: minmax(92px, 0.36fr) minmax(0, 1fr);
    gap: 10px;
    width: auto !important;
    padding: 12px 14px;
    text-align: left !important;
  }

  .comparison--service tr > th:first-child {
    display: block;
    background: rgba(255, 205, 25, 0.16);
    color: var(--mk-text);
    font-size: 1rem;
  }

  .comparison--service td:nth-child(2)::before {
    content: "Basic";
  }

  .comparison--service td:nth-child(3)::before {
    content: "Premium";
  }

  .comparison--service td:nth-child(4)::before {
    content: "Hinweis";
  }

  .comparison--service td::before {
    color: var(--mk-muted);
    font-size: 0.78rem;
    font-weight: 850;
    text-transform: uppercase;
  }

  .sticky-cta {
    display: none;
  }
}

@media (max-width: 560px) {
  .hero__content--mk,
  .site--mk .header__inner {
    width: min(calc(100% - 40px), 350px);
    max-width: 350px;
  }

  .hero--mk-landing .hero__content--mk {
    width: min(calc(100% - 40px), 350px);
    max-width: 350px;
  }

  .site--mk .logo__image {
    width: 196px;
  }

  .hero--mk-cinematic h1 {
    font-size: 2.35rem;
  }

  .hero-offer strong {
    font-size: 0.78rem;
  }

  .hero-offer small {
    font-size: 0.68rem;
  }

  .robot-overview-visual {
    min-height: 76vw;
  }

  .section--robot-overview-intro {
    padding-top: 38px;
  }
}

@media (prefers-color-scheme: light) {
  body.site--mk {
    color-scheme: light;
    --mk-black: #e9edf2;
    --mk-graphite: #e1e7ee;
    --mk-panel: #f0f3f7;
    --mk-line: rgba(15, 23, 42, 0.18);
    --mk-text: #111827;
    --mk-muted: #4f5c6d;
    --shadow: 0 22px 64px rgba(15, 23, 42, 0.18);
    background: var(--mk-black);
    color: var(--mk-text);
  }

  body.site--mk .section--surface {
    background: #dfe5ec;
  }

  body.site--mk .header {
    border-bottom-color: rgba(15, 23, 42, 0.18);
    background: rgba(232, 236, 242, 0.94);
  }

  body.site--mk .nav__submenu {
    background: rgba(238, 242, 246, 0.98);
  }

  body.site--mk .nav > a:not(.button),
  body.site--mk .nav__link,
  body.site--mk .nav-card strong {
    color: #111827;
  }

  body.site--mk .nav a:hover,
  body.site--mk .eyebrow,
  body.site--mk .hero-slogan,
  body.site--mk .value-card span,
  body.site--mk .audience-row span,
  body.site--mk .stance-item strong,
  body.site--mk .story-steps strong,
  body.site--mk .raas-spotlight__panel span,
  body.site--mk .filter-reset,
  body.site--mk .status-pill,
  body.site--mk .product-outcome,
  body.site--mk .source-link,
  body.site--mk .legal a {
    color: var(--mk-yellow);
  }

  body.site--mk .button--primary {
    background: #ffcd19;
    color: #111;
  }

  body.site--mk .hero-slogan {
    color: var(--mk-yellow);
  }

  body.site--mk .hero::after {
    background: linear-gradient(90deg, rgba(232, 236, 242, 0.96) 0%, rgba(232, 236, 242, 0.8) 48%, rgba(232, 236, 242, 0.22) 100%);
  }

  body.site--mk .hero--mk-cinematic {
    background: #e6ebf1;
  }

  body.site--mk .hero--mk-cinematic::before {
    background:
      linear-gradient(115deg, #e7ecf2 0%, #dfe6ee 54%, #e7ecf2 100%),
      linear-gradient(180deg, rgba(15, 23, 42, 0.04), transparent 34%);
  }

  body.site--mk .hero--mk-cinematic::after {
    background:
      linear-gradient(90deg, rgba(232, 236, 242, 0.96) 0%, rgba(232, 236, 242, 0.8) 40%, rgba(232, 236, 242, 0.28) 78%),
      repeating-linear-gradient(90deg, rgba(15, 23, 42, 0.07) 0 1px, transparent 1px 118px);
  }

  body.site--mk .hero--mk-landing {
    color: #111827;
  }

  body.site--mk .hero--mk-landing::before {
    background: url("/assets/images/mk-landing-hero-light.png") center / cover no-repeat;
  }

  body.site--mk .hero--mk-landing::after {
    display: none;
  }

  body.site--mk .hero--mk-building::before {
    background:
      linear-gradient(90deg, rgba(232, 236, 242, 0.96) 0%, rgba(232, 236, 242, 0.84) 44%, rgba(232, 236, 242, 0.42) 78%),
      var(--hero-image) center / cover no-repeat;
  }

  body.site--mk .hero--mk-building::after {
    background:
      linear-gradient(90deg, rgba(232, 236, 242, 0.62) 0%, rgba(232, 236, 242, 0.24) 58%, rgba(232, 236, 242, 0.12) 100%),
      repeating-linear-gradient(90deg, rgba(15, 23, 42, 0.06) 0 1px, transparent 1px 118px);
  }

  body.site--mk .mk-hero-scene__grid {
    background:
      linear-gradient(rgba(15, 23, 42, 0.09) 1px, transparent 1px),
      linear-gradient(90deg, rgba(15, 23, 42, 0.09) 1px, transparent 1px);
  }

  body.site--mk .stat,
  body.site--mk .card,
  body.site--mk .catalog-filter,
  body.site--mk .catalog-results__bar,
  body.site--mk .service-matrix,
  body.site--mk .value-card,
  body.site--mk .audience-row,
  body.site--mk .stance-item,
  body.site--mk .story-steps span,
  body.site--mk .mk-entry-card,
  body.site--mk .trust-item,
  body.site--mk .trust-strip span,
  body.site--mk .demo-pill,
  body.site--mk .process-step,
  body.site--mk .robot-selector,
  body.site--mk .hotspot-button,
  body.site--mk .mini-metrics span {
    background: #f3f6f9;
    box-shadow: 0 14px 38px rgba(15, 23, 42, 0.1);
  }

  body.site--mk .scroll-runway,
  body.site--mk .logo-comparison__panel,
  body.site--mk .product-card--primary {
    background: #f3f6f9;
  }

  body.site--mk .raas-spotlight__panel {
    background:
      linear-gradient(135deg, rgba(255, 205, 25, 0.12), transparent 42%),
      #f3f6f9;
  }

  body.site--mk .scroll-runway__track {
    border-color: rgba(15, 23, 42, 0.12);
    background:
      linear-gradient(rgba(15, 23, 42, 0.06) 1px, transparent 1px),
      linear-gradient(90deg, rgba(15, 23, 42, 0.06) 1px, transparent 1px);
    background-size: 52px 52px;
  }

  body.site--mk .section--robot-experience,
  body.site--mk .section--demo,
  body.site--mk .product-hero {
    background:
      repeating-linear-gradient(90deg, rgba(15, 23, 42, 0.055) 0 1px, transparent 1px 96px),
      linear-gradient(135deg, #e5ebf2 0%, #dce4ed 58%, #e7ecf2 100%);
  }

  body.site--mk .product-media,
  body.site--mk .product-hero__media,
  body.site--mk .product-detail-video__stage,
  body.site--mk .product-profile-visual,
  body.site--mk .product-figure,
  body.site--mk .logo-comparison__stage {
    background:
      repeating-linear-gradient(90deg, rgba(15, 23, 42, 0.055) 0 1px, transparent 1px 52px),
      linear-gradient(145deg, #eef2f6, #dfe6ef 70%);
  }

  body.site--mk .robot-glyph {
    border-color: rgba(15, 23, 42, 0.22);
    background: linear-gradient(180deg, #ffffff, #dfe5ec);
  }

  body.site--mk .robot-glyph::after {
    background: #cbd3dd;
  }

  body.site--mk .comparison th,
  body.site--mk .robot-choice,
  body.site--mk .robot-choice__quantity input,
  body.site--mk .filter-search input,
  body.site--mk .field input,
  body.site--mk .field select,
  body.site--mk .field textarea {
    background: rgba(244, 247, 250, 0.86);
  }

  body.site--mk .filter-option:hover,
  body.site--mk .filter-option:has(input:checked) {
    background: rgba(255, 205, 25, 0.16);
  }

  body.site--mk .comparison--service thead th {
    background: rgba(255, 205, 25, 0.12);
  }

  body.site--mk .comparison--service td:nth-child(2) {
    background: rgba(255, 205, 25, 0.07);
  }

  body.site--mk .comparison--service td:nth-child(3) {
    background: rgba(0, 167, 200, 0.09);
  }

  body.site--mk .mini-metrics strong,
  body.site--mk .catalog-results__bar strong,
  body.site--mk .process-step--numbered > span,
  body.site--mk .fast-fact span {
    color: var(--mk-yellow);
  }

  body.site--mk .comparison--service td strong,
  body.site--mk .comparison--service td:nth-child(3) strong {
    color: var(--mk-text);
  }

  body.site--mk .wear-table-wrap {
    background: #f3f6f9;
  }

  body.site--mk .status-pill--ok {
    color: #126b3a;
  }

  body.site--mk .status-pill--warning {
    color: #7c5a00;
  }

  body.site--mk .status-pill--danger {
    color: #9d1f1f;
  }

  body.site--mk .status-pill--stock {
    color: #087ea4;
  }

  body.site--mk .field select option {
    background: #f3f6f9;
    color: var(--mk-text);
  }

  body.site--mk .footer {
    background: #dbe3ec;
  }
}

@media (prefers-color-scheme: dark) {
  body.site--media {
    color-scheme: dark;
    --media-blue: #74c8ff;
    --media-cyan: #4ed7f2;
    --media-ink: #f4f8fb;
    --media-muted: #b7c3cf;
    --media-bg: #0f141a;
    --shadow: 0 22px 70px rgba(0, 0, 0, 0.34);
    background: var(--media-bg);
    color: var(--media-ink);
  }

  body.site--media .section--surface {
    background:
      linear-gradient(180deg, rgba(116, 200, 255, 0.08), transparent),
      #151b23;
  }

  body.site--media .header {
    border-bottom-color: rgba(255, 255, 255, 0.12);
    background: rgba(15, 20, 26, 0.9);
  }

  body.site--media .logo__mk {
    background: #0d3b66;
  }

  body.site--media .nav__submenu,
  body.site--media .nav {
    border-color: rgba(255, 255, 255, 0.13);
    background: rgba(21, 27, 35, 0.98);
  }

  body.site--media .nav a:hover,
  body.site--media .eyebrow {
    color: var(--media-cyan);
  }

  body.site--media .nav__submenu a:hover,
  body.site--media .nav__submenu a:focus-visible {
    background: rgba(116, 200, 255, 0.12);
  }

  body.site--media .button--primary {
    color: #07131e;
  }

  body.site--media .button--ghost {
    border-color: rgba(255, 255, 255, 0.18);
    color: var(--media-ink);
  }

  body.site--media .hero::after {
    background: linear-gradient(90deg, rgba(15, 20, 26, 0.96) 0%, rgba(15, 20, 26, 0.76) 47%, rgba(15, 20, 26, 0.2) 100%);
  }

  body.site--media .stat,
  body.site--media .card,
  body.site--media .robot-choice,
  body.site--media .robot-choice__quantity input,
  body.site--media .field input,
  body.site--media .field select,
  body.site--media .field textarea,
  body.site--media .footer {
    border-color: rgba(255, 255, 255, 0.13);
    background: #151b23;
  }

  body.site--media .service-card__image,
  body.site--media .partner-offer__badge,
  body.site--media .comparison,
  body.site--media .comparison th,
  body.site--media .comparison td,
  body.site--media .tag-list li,
  body.site--media .badge {
    border-color: rgba(255, 255, 255, 0.13);
  }

  body.site--media .comparison th {
    background: rgba(116, 200, 255, 0.12);
  }

  body.site--media .field input,
  body.site--media .field select,
  body.site--media .field textarea {
    color: var(--media-ink);
  }

  body.site--media .field select option {
    background: #151b23;
    color: var(--media-ink);
  }
}

:root[data-theme="light"] body.site--mk {
  color-scheme: light;
  --mk-black: #e9edf2;
  --mk-graphite: #e1e7ee;
  --mk-panel: #f0f3f7;
  --mk-line: rgba(15, 23, 42, 0.18);
  --mk-text: #111827;
  --mk-muted: #4f5c6d;
  --shadow: 0 22px 64px rgba(15, 23, 42, 0.18);
  background: var(--mk-black);
  color: var(--mk-text);
}

:root[data-theme="light"] body.site--mk .section--surface {
  background: #dfe5ec;
}

:root[data-theme="light"] body.site--mk .header {
  border-bottom-color: rgba(15, 23, 42, 0.18);
  background: rgba(232, 236, 242, 0.94);
}

:root[data-theme="light"] body.site--mk .nav__submenu {
  background: rgba(238, 242, 246, 0.98);
}

:root[data-theme="light"] body.site--mk .nav > a:not(.button),
:root[data-theme="light"] body.site--mk .nav__link,
:root[data-theme="light"] body.site--mk .nav-card strong {
  color: #111827;
}

:root[data-theme="light"] body.site--mk .nav a:hover,
:root[data-theme="light"] body.site--mk .eyebrow,
:root[data-theme="light"] body.site--mk .hero-slogan,
:root[data-theme="light"] body.site--mk .value-card span,
:root[data-theme="light"] body.site--mk .audience-row span,
:root[data-theme="light"] body.site--mk .stance-item strong,
:root[data-theme="light"] body.site--mk .story-steps strong,
:root[data-theme="light"] body.site--mk .raas-spotlight__panel span,
:root[data-theme="light"] body.site--mk .filter-reset,
:root[data-theme="light"] body.site--mk .status-pill,
:root[data-theme="light"] body.site--mk .product-outcome,
:root[data-theme="light"] body.site--mk .source-link,
:root[data-theme="light"] body.site--mk .legal a {
  color: var(--mk-yellow);
}

:root[data-theme="light"] body.site--mk .button--primary {
  background: #ffcd19;
  color: #111;
}

:root[data-theme="light"] body.site--mk .hero {
  --hero-active-image: var(--hero-image-light, var(--hero-image));
  --visual-active-image: var(--visual-image-light, var(--visual-image));
  color: #111827;
}

:root[data-theme="light"] body.site--mk .hero::after {
  background: linear-gradient(90deg, rgba(232, 236, 242, 0.96) 0%, rgba(232, 236, 242, 0.8) 48%, rgba(232, 236, 242, 0.22) 100%);
}

:root[data-theme="light"] body.site--mk .hero .lead,
:root[data-theme="light"] body.site--mk .hero .stat span {
  color: #5b6675;
}

:root[data-theme="light"] body.site--mk .visual-band,
:root[data-theme="light"] body.site--mk .image-card {
  --visual-active-image: var(--visual-image-light, var(--visual-image));
}

:root[data-theme="light"] body.site--mk .hero--mk-cinematic {
  background: #e6ebf1;
}

:root[data-theme="light"] body.site--mk .hero--mk-cinematic::before {
  background:
    linear-gradient(115deg, #e7ecf2 0%, #dfe6ee 54%, #e7ecf2 100%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.04), transparent 34%);
}

:root[data-theme="light"] body.site--mk .hero--mk-cinematic::after {
  background:
    linear-gradient(90deg, rgba(232, 236, 242, 0.96) 0%, rgba(232, 236, 242, 0.8) 40%, rgba(232, 236, 242, 0.28) 78%),
    repeating-linear-gradient(90deg, rgba(15, 23, 42, 0.07) 0 1px, transparent 1px 118px);
}

:root[data-theme="light"] body.site--mk .hero--mk-landing {
  color: #111827;
}

:root[data-theme="light"] body.site--mk .hero--mk-landing::before {
  background: var(--hero-active-image, url("/assets/images/mk-landing-hero-light.png")) center / cover no-repeat;
}

:root[data-theme="light"] body.site--mk .hero--mk-landing::after {
  display: none;
}

:root[data-theme="light"] body.site--mk .hero--mk-building::before {
  background:
    linear-gradient(90deg, rgba(232, 236, 242, 0.96) 0%, rgba(232, 236, 242, 0.84) 44%, rgba(232, 236, 242, 0.42) 78%),
    var(--hero-active-image, var(--hero-image)) center / cover no-repeat;
}

:root[data-theme="light"] body.site--mk .hero--mk-building::after {
  background:
    linear-gradient(90deg, rgba(232, 236, 242, 0.62) 0%, rgba(232, 236, 242, 0.24) 58%, rgba(232, 236, 242, 0.12) 100%),
    repeating-linear-gradient(90deg, rgba(15, 23, 42, 0.06) 0 1px, transparent 1px 118px);
}

:root[data-theme="light"] body.site--mk .stat,
:root[data-theme="light"] body.site--mk .card,
:root[data-theme="light"] body.site--mk .catalog-filter,
:root[data-theme="light"] body.site--mk .catalog-results__bar,
:root[data-theme="light"] body.site--mk .service-matrix,
:root[data-theme="light"] body.site--mk .value-card,
:root[data-theme="light"] body.site--mk .audience-row,
:root[data-theme="light"] body.site--mk .stance-item,
:root[data-theme="light"] body.site--mk .story-steps span,
:root[data-theme="light"] body.site--mk .mk-entry-card,
:root[data-theme="light"] body.site--mk .trust-item,
:root[data-theme="light"] body.site--mk .trust-strip span,
:root[data-theme="light"] body.site--mk .demo-pill,
:root[data-theme="light"] body.site--mk .process-step,
:root[data-theme="light"] body.site--mk .robot-selector,
:root[data-theme="light"] body.site--mk .hotspot-button,
:root[data-theme="light"] body.site--mk .mini-metrics span {
  background: #f3f6f9;
  box-shadow: 0 14px 38px rgba(15, 23, 42, 0.1);
}

:root[data-theme="light"] body.site--mk .scroll-runway,
:root[data-theme="light"] body.site--mk .logo-comparison__panel,
:root[data-theme="light"] body.site--mk .product-card--primary {
  background: #f3f6f9;
}

:root[data-theme="light"] body.site--mk .section--robot-experience,
:root[data-theme="light"] body.site--mk .section--demo,
:root[data-theme="light"] body.site--mk .product-hero {
  background:
    repeating-linear-gradient(90deg, rgba(15, 23, 42, 0.055) 0 1px, transparent 1px 96px),
    linear-gradient(135deg, #e5ebf2 0%, #dce4ed 58%, #e7ecf2 100%);
}

:root[data-theme="light"] body.site--mk .product-media,
:root[data-theme="light"] body.site--mk .product-hero__media,
:root[data-theme="light"] body.site--mk .product-detail-video__stage,
:root[data-theme="light"] body.site--mk .product-profile-visual,
:root[data-theme="light"] body.site--mk .product-profile-model__media,
:root[data-theme="light"] body.site--mk .product-figure,
:root[data-theme="light"] body.site--mk .logo-comparison__stage {
  background:
    repeating-linear-gradient(90deg, rgba(15, 23, 42, 0.055) 0 1px, transparent 1px 52px),
    linear-gradient(145deg, #eef2f6, #dfe6ef 70%);
}

:root[data-theme="light"] body.site--mk .comparison th,
:root[data-theme="light"] body.site--mk .robot-choice,
:root[data-theme="light"] body.site--mk .robot-choice__quantity input,
:root[data-theme="light"] body.site--mk .filter-search input,
:root[data-theme="light"] body.site--mk .field input,
:root[data-theme="light"] body.site--mk .field select,
:root[data-theme="light"] body.site--mk .field textarea {
  background: rgba(244, 247, 250, 0.86);
}

:root[data-theme="light"] body.site--mk .mini-metrics strong,
:root[data-theme="light"] body.site--mk .catalog-results__bar strong,
:root[data-theme="light"] body.site--mk .process-step--numbered > span,
:root[data-theme="light"] body.site--mk .fast-fact span {
  color: var(--mk-yellow);
}

:root[data-theme="light"] body.site--mk .comparison--service td strong,
:root[data-theme="light"] body.site--mk .comparison--service td:nth-child(3) strong {
  color: var(--mk-text);
}

:root[data-theme="light"] body.site--mk .footer {
  background: #dbe3ec;
}

:root[data-theme="light"] body.site--mk .theme-toggle {
  border-color: rgba(15, 23, 42, 0.2);
  background: rgba(255, 255, 255, 0.72);
}

:root[data-theme="dark"] body.site--mk {
  color-scheme: dark;
  --mk-black: #0d0d0d;
  --mk-graphite: #17191f;
  --mk-panel: #20232b;
  --mk-line: rgba(255, 255, 255, 0.13);
  --mk-text: #f7f7f2;
  --mk-muted: #bfc4cb;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
  background: var(--mk-black);
  color: var(--mk-text);
}

:root[data-theme="dark"] body.site--mk .section--surface {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent),
    var(--mk-graphite);
}

:root[data-theme="dark"] body.site--mk .header {
  border-bottom-color: rgba(255, 255, 255, 0.1);
  background: rgba(13, 13, 13, 0.82);
}

:root[data-theme="dark"] body.site--mk .nav__submenu {
  background: rgba(13, 13, 13, 0.96);
}

:root[data-theme="dark"] body.site--mk .nav > a:not(.button),
:root[data-theme="dark"] body.site--mk .nav__link {
  color: #d6dbe2;
}

:root[data-theme="dark"] body.site--mk .nav-card strong {
  color: var(--mk-text);
}

:root[data-theme="dark"] body.site--mk .nav a:hover,
:root[data-theme="dark"] body.site--mk .eyebrow,
:root[data-theme="dark"] body.site--mk .hero-slogan,
:root[data-theme="dark"] body.site--mk .value-card span,
:root[data-theme="dark"] body.site--mk .audience-row span,
:root[data-theme="dark"] body.site--mk .stance-item strong,
:root[data-theme="dark"] body.site--mk .story-steps strong,
:root[data-theme="dark"] body.site--mk .raas-spotlight__panel span,
:root[data-theme="dark"] body.site--mk .filter-reset,
:root[data-theme="dark"] body.site--mk .status-pill,
:root[data-theme="dark"] body.site--mk .product-outcome,
:root[data-theme="dark"] body.site--mk .source-link,
:root[data-theme="dark"] body.site--mk .legal a {
  color: var(--mk-yellow);
}

:root[data-theme="dark"] body.site--mk .hero {
  --hero-active-image: var(--hero-image-dark, var(--hero-image));
  --visual-active-image: var(--visual-image-dark, var(--visual-image));
  color: #f7f7f2;
}

:root[data-theme="dark"] body.site--mk .hero::after {
  background: linear-gradient(90deg, rgba(13, 13, 13, 0.94) 0%, rgba(13, 13, 13, 0.66) 48%, rgba(13, 13, 13, 0.18) 100%);
}

:root[data-theme="dark"] body.site--mk .hero .lead,
:root[data-theme="dark"] body.site--mk .hero .stat span {
  color: var(--mk-muted);
}

:root[data-theme="dark"] body.site--mk .visual-band,
:root[data-theme="dark"] body.site--mk .image-card {
  --visual-active-image: var(--visual-image-dark, var(--visual-image));
}

:root[data-theme="dark"] body.site--mk .hero--mk-cinematic {
  background: #07080b;
}

:root[data-theme="dark"] body.site--mk .hero--mk-cinematic::before {
  background:
    linear-gradient(115deg, #050608 0%, #10141b 54%, #07080b 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 34%);
}

:root[data-theme="dark"] body.site--mk .hero--mk-cinematic::after {
  background:
    linear-gradient(90deg, rgba(5, 6, 8, 0.94) 0%, rgba(5, 6, 8, 0.72) 38%, rgba(5, 6, 8, 0.18) 76%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 118px);
}

:root[data-theme="dark"] body.site--mk .hero--mk-landing {
  color: #f7f7f2;
}

:root[data-theme="dark"] body.site--mk .hero--mk-landing::before {
  background: var(--hero-active-image, url("/assets/images/mk-landing-hero-dark.png")) center / cover no-repeat;
}

:root[data-theme="dark"] body.site--mk .hero--mk-landing::after {
  display: none;
}

:root[data-theme="dark"] body.site--mk .hero--mk-building::before {
  background:
    linear-gradient(90deg, rgba(13, 13, 13, 0.92) 0%, rgba(13, 13, 13, 0.68) 48%, rgba(13, 13, 13, 0.24) 78%),
    var(--hero-active-image, var(--hero-image)) center / cover no-repeat;
}

:root[data-theme="dark"] body.site--mk .hero--mk-building::after {
  background:
    linear-gradient(90deg, rgba(13, 13, 13, 0.52) 0%, rgba(13, 13, 13, 0.18) 58%, rgba(13, 13, 13, 0.08) 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 118px);
}

:root[data-theme="dark"] body.site--mk .stat,
:root[data-theme="dark"] body.site--mk .card,
:root[data-theme="dark"] body.site--mk .catalog-filter,
:root[data-theme="dark"] body.site--mk .catalog-results__bar,
:root[data-theme="dark"] body.site--mk .service-matrix,
:root[data-theme="dark"] body.site--mk .value-card,
:root[data-theme="dark"] body.site--mk .audience-row,
:root[data-theme="dark"] body.site--mk .stance-item,
:root[data-theme="dark"] body.site--mk .story-steps span,
:root[data-theme="dark"] body.site--mk .mk-entry-card,
:root[data-theme="dark"] body.site--mk .trust-item,
:root[data-theme="dark"] body.site--mk .trust-strip span,
:root[data-theme="dark"] body.site--mk .demo-pill,
:root[data-theme="dark"] body.site--mk .process-step,
:root[data-theme="dark"] body.site--mk .robot-selector,
:root[data-theme="dark"] body.site--mk .hotspot-button,
:root[data-theme="dark"] body.site--mk .mini-metrics span {
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}

:root[data-theme="dark"] body.site--mk .scroll-runway,
:root[data-theme="dark"] body.site--mk .logo-comparison__panel,
:root[data-theme="dark"] body.site--mk .product-card--primary {
  background:
    linear-gradient(180deg, rgba(255, 205, 25, 0.11), rgba(255, 255, 255, 0.03)),
    var(--mk-graphite);
}

:root[data-theme="dark"] body.site--mk .section--robot-experience,
:root[data-theme="dark"] body.site--mk .section--demo,
:root[data-theme="dark"] body.site--mk .product-hero {
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 96px),
    linear-gradient(135deg, #0d0d0d 0%, #17191f 58%, #0b0d11 100%);
}

:root[data-theme="dark"] body.site--mk .product-media,
:root[data-theme="dark"] body.site--mk .product-hero__media,
:root[data-theme="dark"] body.site--mk .product-detail-video__stage,
:root[data-theme="dark"] body.site--mk .product-profile-visual,
:root[data-theme="dark"] body.site--mk .product-profile-model__media,
:root[data-theme="dark"] body.site--mk .product-figure,
:root[data-theme="dark"] body.site--mk .logo-comparison__stage {
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 52px),
    linear-gradient(145deg, rgba(255, 205, 25, 0.18), transparent 44%),
    linear-gradient(145deg, #2b3039, #0f1116 70%);
}

:root[data-theme="dark"] body.site--mk .comparison th,
:root[data-theme="dark"] body.site--mk .robot-choice,
:root[data-theme="dark"] body.site--mk .robot-choice__quantity input,
:root[data-theme="dark"] body.site--mk .filter-search input,
:root[data-theme="dark"] body.site--mk .field input,
:root[data-theme="dark"] body.site--mk .field select,
:root[data-theme="dark"] body.site--mk .field textarea {
  background: rgba(255, 255, 255, 0.07);
}

:root[data-theme="dark"] body.site--mk .mini-metrics strong,
:root[data-theme="dark"] body.site--mk .catalog-results__bar strong,
:root[data-theme="dark"] body.site--mk .process-step--numbered > span,
:root[data-theme="dark"] body.site--mk .fast-fact span {
  color: var(--mk-yellow);
}

:root[data-theme="dark"] body.site--mk .comparison--service td strong,
:root[data-theme="dark"] body.site--mk .comparison--service td:nth-child(3) strong {
  color: var(--mk-text);
}

:root[data-theme="dark"] body.site--mk .footer {
  background: #08090c;
}

:root[data-theme="dark"] body.site--mk .theme-toggle {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
}

@media (prefers-color-scheme: light) {
  :root:not([data-theme="dark"]) body.site--mk .nav a:hover,
  :root:not([data-theme="dark"]) body.site--mk .value-card span,
  :root:not([data-theme="dark"]) body.site--mk .audience-row span,
  :root:not([data-theme="dark"]) body.site--mk .stance-item strong,
  :root:not([data-theme="dark"]) body.site--mk .story-steps strong,
  :root:not([data-theme="dark"]) body.site--mk .raas-spotlight__panel span,
  :root:not([data-theme="dark"]) body.site--mk .filter-reset,
  :root:not([data-theme="dark"]) body.site--mk .product-outcome,
  :root:not([data-theme="dark"]) body.site--mk .source-link,
  :root:not([data-theme="dark"]) body.site--mk .legal a,
  :root:not([data-theme="dark"]) body.site--mk .mk-entry-card strong,
  :root:not([data-theme="dark"]) body.site--mk .trust-item strong,
  :root:not([data-theme="dark"]) body.site--mk .trust-strip strong,
  :root:not([data-theme="dark"]) body.site--mk .principle-card__number,
  :root:not([data-theme="dark"]) body.site--mk .logo-comparison__panel > span,
  :root:not([data-theme="dark"]) body.site--mk .mini-metrics strong,
  :root:not([data-theme="dark"]) body.site--mk .catalog-results__bar strong,
  :root:not([data-theme="dark"]) body.site--mk .process-step--numbered > span,
  :root:not([data-theme="dark"]) body.site--mk .fast-fact span {
    color: #6f5200;
  }

  :root:not([data-theme="dark"]) body.site--mk .eyebrow {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    border: 1px solid rgba(255, 205, 25, 0.72);
    border-radius: 4px;
    background: rgba(255, 205, 25, 0.22);
    color: #5f4700;
    padding: 5px 8px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.48);
  }

  :root:not([data-theme="dark"]) body.site--mk .hero--mk-landing .hero-slogan {
    display: inline-block;
    width: fit-content;
    max-width: min(700px, 100%);
    border-left: 5px solid var(--mk-yellow);
    border-radius: 4px;
    background:
      linear-gradient(90deg, rgba(255, 205, 25, 0.42), rgba(255, 255, 255, 0.74));
    color: #111827;
    padding: 10px 14px 11px;
    line-height: 1.25;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
  }
}

:root[data-theme="light"] body.site--mk .nav a:hover,
:root[data-theme="light"] body.site--mk .value-card span,
:root[data-theme="light"] body.site--mk .audience-row span,
:root[data-theme="light"] body.site--mk .stance-item strong,
:root[data-theme="light"] body.site--mk .story-steps strong,
:root[data-theme="light"] body.site--mk .raas-spotlight__panel span,
:root[data-theme="light"] body.site--mk .filter-reset,
:root[data-theme="light"] body.site--mk .product-outcome,
:root[data-theme="light"] body.site--mk .source-link,
:root[data-theme="light"] body.site--mk .legal a,
:root[data-theme="light"] body.site--mk .mk-entry-card strong,
:root[data-theme="light"] body.site--mk .trust-item strong,
:root[data-theme="light"] body.site--mk .trust-strip strong,
:root[data-theme="light"] body.site--mk .principle-card__number,
:root[data-theme="light"] body.site--mk .logo-comparison__panel > span,
:root[data-theme="light"] body.site--mk .mini-metrics strong,
:root[data-theme="light"] body.site--mk .catalog-results__bar strong,
:root[data-theme="light"] body.site--mk .process-step--numbered > span,
:root[data-theme="light"] body.site--mk .fast-fact span {
  color: #6f5200;
}

:root[data-theme="light"] body.site--mk .eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  border: 1px solid rgba(255, 205, 25, 0.72);
  border-radius: 4px;
  background: rgba(255, 205, 25, 0.22);
  color: #5f4700;
  padding: 5px 8px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.48);
}

:root[data-theme="light"] body.site--mk .hero--mk-landing .hero-slogan {
  display: inline-block;
  width: fit-content;
  max-width: min(700px, 100%);
  border-left: 5px solid var(--mk-yellow);
  border-radius: 4px;
  background:
    linear-gradient(90deg, rgba(255, 205, 25, 0.42), rgba(255, 255, 255, 0.74));
  color: #111827;
  padding: 10px 14px 11px;
  line-height: 1.25;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
}

@media (max-width: 980px) {
  :root[data-theme="light"] body.site--mk .nav {
    background: rgba(238, 242, 246, 0.98);
  }

  :root[data-theme="dark"] body.site--mk .nav {
    background: #11151c;
  }
}

@media (prefers-color-scheme: light) and (max-width: 760px) {
  :root:not([data-theme="dark"]) body.site--mk .catalog-filter,
  :root:not([data-theme="dark"]) body.site--mk .product-card__mobile-meta span,
  :root:not([data-theme="dark"]) body.site--mk .product-spec-card .comparison tr {
    background: rgba(243, 246, 249, 0.96);
  }
}

@media (max-width: 760px) {
  :root[data-theme="light"] body.site--mk .catalog-filter,
  :root[data-theme="light"] body.site--mk .product-card__mobile-meta span,
  :root[data-theme="light"] body.site--mk .product-spec-card .comparison tr {
    background: rgba(243, 246, 249, 0.96);
  }

  :root[data-theme="dark"] body.site--mk .catalog-filter {
    background: rgba(17, 21, 28, 0.94);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}
