:root {
  color-scheme: dark;
  --bg: #080808;
  --panel: #171717;
  --panel-hover: #1d1d1d;
  --line: #282828;
  --line-soft: #171717;
  --text: #f4f4f4;
  --muted: #8b8b8b;
  --max: 1180px;
  --radius: 18px;
  --font: "Segoe UI Variable", "Segoe UI", Arial, ui-sans-serif, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; background: var(--bg); }

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

button, select, input, textarea { font: inherit; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
svg { fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; }
.site-shell { min-height: 100vh; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid #666;
  border-radius: 999px;
  background: #f5f5f5;
  color: #080808;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-70px);
  transition: opacity 150ms ease, transform 150ms ease;
}

.skip-link:focus-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.product-header { position: relative; z-index: 50; border-bottom: 1px solid #151515; background: var(--bg); }
.product-header-inner {
  display: flex;
  width: min(var(--max), calc(100% - 48px));
  min-height: 66px;
  margin: 0 auto;
  align-items: center;
  gap: 31px;
}

.product-brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.product-brand img {
  width: 25px;
  height: 25px;
  border-radius: 7px;
  filter: grayscale(1) brightness(1.9);
  object-fit: contain;
}

.product-nav { display: flex; align-items: center; gap: 2px; }
.product-nav button, .footer-inner nav button {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
}

.product-nav button {
  min-height: 34px;
  padding: 0 10px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
}

.product-nav button:hover, .product-nav button:focus-visible { color: #fff; }
.product-header-actions { display: flex; margin-left: auto; align-items: center; gap: 8px; }
.page-language {
  height: 34px;
  padding: 0 25px 0 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: #a9a9a9;
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
}

.header-signin, .header-download {
  display: inline-flex;
  min-height: 34px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
}

.header-signin { color: #d7d7d7; }
.header-signin:hover { border-color: #555; color: #fff; }
.header-download { border-color: #f3f3f3; background: #f3f3f3; color: #090909; }
.header-download:hover { background: #fff; }

.section { position: relative; padding: 132px 0; }
.section-inner {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.hero { min-height: 980px; padding: 92px 0 138px; overflow: hidden; }
.hero::before, .hero-glow { display: none; }
.hero-inner { display: block; }
.hero-copy { max-width: 840px; margin: 0 auto; text-align: center; }
.eyebrow, .section-kicker, .card-kicker {
  color: #9a9a9a;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.eyebrow {
  display: inline-flex;
  min-height: 30px;
  margin-bottom: 27px;
  padding: 0 12px;
  border: 1px solid #282828;
  border-radius: 999px;
  background: #111;
  color: #b5b5b5;
  align-items: center;
  gap: 8px;
}

.hero h1 {
  max-width: 820px;
  margin: 0 auto;
  font-size: clamp(58px, 6.1vw, 88px);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.hero-lead {
  max-width: 660px;
  margin: 26px auto 0;
  color: #a0a0a0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.55;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 31px; justify-content: center; }
.button {
  display: inline-flex;
  min-height: 43px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
  transition: border-color 150ms ease, background-color 150ms ease, color 150ms ease;
}

.button svg { width: 17px; height: 17px; }
.button-primary { background: #f5f5f5; color: #090909; }
.button-primary:hover { background: #fff; }
.button-secondary { border-color: #303030; background: transparent; color: #dadada; }
.button-secondary:hover { border-color: #595959; }
.hero-product { position: relative; max-width: 1040px; margin: 80px auto 0; }
.window-frame, .tour-screen { position: relative; overflow: hidden; border: 1px solid #242424; border-radius: 15px; background: #111; }
.window-frame { padding: 7px; box-shadow: 0 48px 120px rgba(0, 0, 0, 0.46); }
.window-bar, .tour-toolbar { display: flex; height: 35px; padding: 0 11px; background: #151515; align-items: center; }
.window-mark { width: 16px; height: 16px; }
.window-mark img { width: 100%; height: 100%; filter: grayscale(1) brightness(1.8); object-fit: contain; }
.window-title { margin-left: 8px; color: #858585; font-size: 11px; font-weight: 600; }
.window-controls { display: flex; gap: 10px; margin-left: auto; }
.window-controls i { display: block; width: 8px; height: 1px; background: #4a4a4a; }
.hero-slideshow {
  position: relative;
  width: 100%;
  aspect-ratio: 1.596;
  overflow: hidden;
  border-radius: 10px;
  background: #0d0d0d;
}

.hero-screenshot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  filter: saturate(0.78) contrast(1.03);
  object-fit: cover;
  object-position: top left;
  opacity: 0;
  transform: scale(1.008);
  animation: hero-screen-cycle 12.6s infinite both;
  will-change: opacity, transform;
}


.hero-screenshot:nth-child(1) { animation-delay: 0s; }
.hero-screenshot:nth-child(2) { animation-delay: 4.2s; }
.hero-screenshot:nth-child(3) { animation-delay: 8.4s; }

@keyframes hero-screen-cycle {
  0% { z-index: 1; opacity: 0; transform: scale(1.008); }
  6% { z-index: 1; opacity: 1; transform: scale(1); }
  31% { z-index: 1; opacity: 1; transform: scale(1); }
  39%, 100% { z-index: 0; opacity: 0; transform: scale(1.008); }
}

.section-heading { margin-bottom: 57px; }
.section-heading h2, .context-copy h2, .developers-copy h2, .final-inner h2 {
  margin: 12px 0 0;
  font-size: clamp(42px, 4.5vw, 64px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 1;
}

.section-heading > p, .section-heading > div > p, .proof-side p, .developers-copy > p, .final-inner > p {
  color: #999;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
}

.centered { max-width: 760px; margin-right: auto; margin-left: auto; text-align: center; }
.centered p { max-width: 630px; margin: 20px auto 0; }
.workflow { border-top: 1px solid var(--line-soft); }
.workflow-board { display: grid; grid-template-columns: repeat(3, 1fr); max-width: none; margin: 0; overflow: hidden; border: 1px solid #242424; border-radius: var(--radius); background: var(--panel); }
.workflow-step { position: relative; display: block; min-height: 355px; padding: 31px; overflow: hidden; border: 0; border-radius: 0; background: transparent; }
.workflow-step + .workflow-step { border-left: 1px solid #292929; }
.workflow-step::after { display: none; }
.step-agents, .step-review { margin-left: 0; }
.step-number { color: #777; font-size: 11px; font-weight: 700; letter-spacing: 0.08em; }
.step-copy { display: flex; min-height: 275px; padding-top: 0; flex-direction: column; justify-content: flex-end; }
.step-copy h3 { margin: 0; font-size: 21px; font-weight: 500; letter-spacing: -0.035em; line-height: 1.12; }
.step-copy > p { max-width: 680px; margin: 12px 0 0; color: #999; font-size: 13px; line-height: 1.55; }
.workflow-arrow { display: none; }
.developer-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 24px; }
.developer-tags span { display: inline-flex; min-height: 31px; padding: 0 10px; border: 1px solid #303030; border-radius: 999px; color: #a0a0a0; align-items: center; font-size: 11px; font-weight: 600; }

.split-heading { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 90px; align-items: end; }
.split-heading p { margin: 0; }
.control { border-top: 1px solid var(--line-soft); }
.control-grid { display: grid; grid-template-columns: repeat(4, 1fr); overflow: hidden; border: 1px solid #242424; border-radius: var(--radius); background: var(--panel); }
.control-card { min-height: 272px; padding: 29px; border: 0; border-radius: 0; background: transparent; transition: background 150ms ease; }
.control-card + .control-card { border-left: 1px solid #292929; }
.control-card:hover { background: var(--panel-hover); }
.control-icon { display: grid; width: 39px; height: 39px; border: 1px solid #333; border-radius: 50%; background: transparent; color: #aaa; place-items: center; }
.control-icon svg { width: 19px; height: 19px; }
.control-card h3 { margin: 63px 0 0; font-size: 16px; font-weight: 500; letter-spacing: -0.025em; }
.control-card p { margin: 10px 0 0; color: #939393; font-size: 13px; line-height: 1.55; }

.work-context { padding: 168px 0; border-top: 1px solid var(--line-soft); overflow: hidden; }
.context-inner { display: grid; grid-template-columns: minmax(320px, 0.83fr) minmax(520px, 1.17fr); gap: 115px; align-items: center; }
.context-copy h2 { max-width: 610px; }
.context-lead {
  max-width: 570px;
  margin: 22px 0 0;
  color: #aaa;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.65;
}

.context-compounding {
  max-width: 540px;
  margin: 22px 0 0;
  padding-left: 16px;
  border-left: 1px solid #505050;
  color: #858585;
  font-size: 13px;
  line-height: 1.65;
}
.context-visual {
  position: relative;
  min-height: 445px;
  margin: 0;
  overflow: hidden;
  border: 1px solid #242424;
  border-radius: var(--radius);
  background: #0d0d0d;
}

.context-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 68%, rgba(0,0,0,0.3));
  content: "";
  pointer-events: none;
}

.context-visual img {
  width: 100%;
  height: 100%;
  min-height: 445px;
  filter: saturate(0.72) contrast(1.04);
  object-fit: cover;
  object-position: center;
  transition: transform 800ms cubic-bezier(.2,.7,.2,1);
}

.context-visual:hover img { transform: scale(1.02); }

.proof { border-top: 1px solid var(--line-soft); }
.proof-side { max-width: 430px; }
.proof-side p { margin: 0 0 16px; }
.proof-facts {
  display: grid;
  margin: 24px 0 28px;
  padding: 0;
  list-style: none;
  gap: 12px;
}

.proof-facts li {
  position: relative;
  padding-left: 21px;
  color: #b2b2b2;
  font-size: 13px;
  line-height: 1.5;
}

.proof-facts li::before {
  position: absolute;
  top: 0.55em;
  left: 1px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #eee;
  content: "";
}

.text-link { display: inline-flex; color: #dedede; align-items: center; gap: 7px; font-size: 11px; font-weight: 600; }
.text-link:hover { color: #fff; }
.product-tour {
  display: grid;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  grid-template-columns: 200px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}
.tour-tabs { display: flex; gap: 6px; flex-direction: column; }
.tour-tab { position: relative; min-height: 84px; padding: 16px 17px; border: 1px solid #242424; border-radius: 13px; background: #111; color: #777; cursor: pointer; text-align: left; transition: border-color 150ms ease, background-color 150ms ease, color 150ms ease; }
.tour-tab span, .tour-tab small { display: block; }
.tour-tab span { font-size: 12px; font-weight: 700; }
.tour-tab small { margin-top: 6px; color: #8b8b8b; font-size: 11px; line-height: 1.35; }
.tour-tab:hover, .tour-tab.is-active { border-color: #3b3b3b; background: #191919; color: #e7e7e7; }
.tour-screen { width: 100%; padding: 7px; align-self: start; }
.tour-toolbar { gap: 5px; }
.tour-toolbar > span { width: 6px; height: 6px; border-radius: 50%; background: #3a3a3a; }
.tour-toolbar b { margin-left: 6px; color: #858585; font-size: 10px; font-weight: 600; }
.tour-screen img { width: 100%; height: auto; aspect-ratio: auto; border-radius: 9px; filter: saturate(0.78); object-fit: contain; object-position: center top; opacity: 1; transition: opacity 140ms ease; }
.tour-screen img.is-switching { opacity: 0.35; }

.technology { border-top: 1px solid var(--line-soft); }
.compact-heading { max-width: 690px; }
.technology-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.technology-card { display: grid; grid-template-rows: 300px 1fr; min-height: 575px; overflow: hidden; border: 1px solid #242424; border-radius: var(--radius); background: var(--panel); transition: border-color 150ms ease, background 150ms ease; }
.technology-card:hover { border-color: #3a3a3a; background: var(--panel-hover); }
.technology-art { position: relative; overflow: hidden; border-bottom: 1px solid #292929; }
.technology-art img {
  width: 100%;
  height: 100%;
  filter: saturate(0.72) contrast(1.04);
  object-fit: cover;
  object-position: center;
  transition: transform 800ms cubic-bezier(.2,.7,.2,1);
}

.technology-card:hover .technology-art img { transform: scale(1.025); }
.technology-copy { display: flex; padding: 31px; flex-direction: column; }
.technology-copy h3 { margin: 9px 0 0; font-size: 28px; font-weight: 500; letter-spacing: -0.04em; }
.technology-copy p { margin: 14px 0 25px; color: #999; font-size: 13px; line-height: 1.6; }
.technology-copy .text-link { margin-top: auto; }

.developers { border-top: 1px solid var(--line-soft); }
.developers-inner { display: grid; grid-template-columns: 0.86fr 1.14fr; gap: 125px; align-items: center; }
.developers-copy h2 { max-width: 470px; }
.developers-copy > p { max-width: 450px; margin: 19px 0 0; }
.developer-tags { margin: 24px 0 28px; }
.developers-copy .button { width: auto; }
.code-window { overflow: hidden; border: 1px solid #252525; border-radius: var(--radius); background: #111; }
.code-top { display: flex; height: 43px; padding: 0 15px; border-bottom: 1px solid #242424; background: #161616; align-items: center; gap: 6px; }
.code-top > span { width: 6px; height: 6px; border-radius: 50%; background: #424242; }
.code-top small { margin-left: auto; color: #858585; font-family: ui-monospace, SFMono-Regular, Consolas, monospace; font-size: 11px; }
.code-window pre { min-height: 275px; margin: 0; padding: 39px; overflow: auto; color: #bdbdbd; font-family: ui-monospace, SFMono-Regular, Consolas, monospace; font-size: 12px; line-height: 1.9; }
.code-key { color: #dedede; }
.code-value { color: #929292; }
.code-muted { color: #555; }
.code-response { display: flex; min-height: 50px; padding: 0 17px; border-top: 1px solid #242424; color: #8d8d8d; align-items: center; gap: 8px; font-family: ui-monospace, SFMono-Regular, Consolas, monospace; font-size: 11px; }
.response-dot { width: 5px; height: 5px; border-radius: 50%; background: #aaa; }

.final-cta { padding: 135px 0; border-top: 1px solid var(--line-soft); }
.final-cta::before { display: none; }
.final-inner { display: flex; max-width: 780px; flex-direction: column; align-items: center; text-align: center; }
.final-mark { display: grid; width: 48px; height: 48px; margin-bottom: 9px; border: 1px solid #2b2b2b; border-radius: 50%; background: #121212; place-items: center; }
.final-mark img { width: 26px; height: 26px; filter: grayscale(1) brightness(1.8); object-fit: contain; }
.final-inner > p { max-width: 550px; margin: 20px auto 27px; }

.site-footer { border-top: 1px solid #1c1c1c; }
.footer-inner { display: grid; grid-template-columns: auto 1fr auto; min-height: 104px; align-items: center; gap: 40px; }
.footer-brand { display: flex; align-items: center; gap: 9px; font-size: 12px; font-weight: 700; }
.footer-brand img { width: 23px; height: 23px; filter: grayscale(1) brightness(1.8); object-fit: contain; }
.footer-inner nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; }
.footer-inner nav a, .footer-inner nav button, .copyright { color: #898989; font-size: 11px; }
.footer-inner nav a:hover, .footer-inner nav button:hover { color: #c8c8c8; }
:focus-visible { outline: 1px solid #aaa; outline-offset: 3px; }

@media (max-width: 1050px) {
  .product-header-inner { flex-wrap: wrap; padding-top: 10px; gap: 7px 16px; }
  .product-nav {
    display: flex;
    order: 3;
    width: 100%;
    padding-bottom: 9px;
    overflow-x: auto;
    scrollbar-width: none;
    overscroll-behavior-inline: contain;
  }
  .product-nav::-webkit-scrollbar { display: none; }
  .product-nav button { min-height: 40px; white-space: nowrap; }
  .hero { min-height: auto; }
  .workflow-board { grid-template-columns: 1fr; }
  .workflow-step { min-height: 275px; }
  .workflow-step + .workflow-step { border-top: 1px solid #292929; border-left: 0; }
  .step-copy { min-height: 200px; padding-top: 0; }
  .control-grid { grid-template-columns: repeat(2, 1fr); }
  .control-card:nth-child(3) { border-top: 1px solid #292929; border-left: 0; }
  .control-card:nth-child(4) { border-top: 1px solid #292929; }
  .context-inner, .developers-inner { gap: 65px; }
}

@media (max-width: 960px) {
  .section { padding: 100px 0; }
  .hero { padding-top: 75px; padding-bottom: 110px; }
  .hero-product { margin-top: 60px; }
  .split-heading, .context-inner, .developers-inner { grid-template-columns: 1fr; gap: 35px; }
  .split-heading p { max-width: 620px; }
  .context-visual { min-height: 410px; margin-top: 25px; }
  .context-visual img { min-height: 410px; }
  .product-tour { max-width: 760px; grid-template-columns: 1fr; }
  .tour-tabs { display: grid; grid-template-columns: repeat(3, 1fr); }
  .technology-grid { grid-template-columns: 1fr; }
  .technology-card { min-height: 540px; }
  .footer-inner { grid-template-columns: 1fr; padding: 31px 0; justify-items: center; gap: 20px; }
}

@media (max-width: 620px) {
  .section-inner, .product-header-inner { width: min(100% - 32px, var(--max)); }
  .product-header-inner { min-height: 64px; gap: 8px; }
  .product-brand { margin-right: auto; }
  .header-signin { display: none; }
  .page-language { display: block; width: 50px; height: 44px; padding: 0 8px; text-align: center; }
  .header-download { min-height: 44px; padding: 0 13px; }
  .section { padding: 68px 0; }
  .hero { padding-top: 52px; padding-bottom: 76px; }
  .eyebrow { min-height: 28px; margin-bottom: 22px; font-size: 11px; }
  .hero h1 { max-width: 520px; font-size: clamp(40px, 11.5vw, 54px); line-height: 1; overflow-wrap: anywhere; }
  .hero-lead { max-width: 460px; margin-top: 21px; font-size: 13px; line-height: 1.6; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; min-height: 48px; }
  .hero-product { margin-top: 42px; }
  .window-frame { padding: 4px; border-radius: 12px; }
  .window-bar { height: 30px; }
  .window-title, .window-controls { display: none; }
  .hero-slideshow { aspect-ratio: 1.42; }
  .hero-screenshot { border-radius: 7px; object-fit: contain; object-position: center top; }
  .section-heading { margin-bottom: 32px; }
  .section-heading h2, .context-copy h2, .developers-copy h2, .final-inner h2 { font-size: clamp(32px, 9.2vw, 43px); line-height: 1.04; overflow-wrap: anywhere; }
  .section-heading > p, .section-heading > div > p, .proof-side p, .developers-copy > p, .final-inner > p { font-size: 13px; }
  .workflow-board, .control-grid, .technology-card, .context-visual { border-radius: 14px; }
  .workflow-step { min-height: 0; padding: 24px; }
  .step-copy { min-height: 0; padding-top: 38px; justify-content: flex-start; }
  .step-copy h3 { font-size: 20px; }
  .control-grid { grid-template-columns: 1fr; }
  .control-card, .control-card:nth-child(n) { min-height: 195px; padding: 24px; border-top: 1px solid #292929; border-left: 0; }
  .control-card:first-child { border-top: 0; }
  .control-card h3 { margin-top: 36px; }
  .work-context { padding: 78px 0; }
  .context-visual { min-height: 270px; margin-top: 12px; }
  .context-visual img { min-height: 270px; object-position: center; }
  .tour-tabs { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); overflow: visible; gap: 6px; }
  .product-tour { max-width: 100%; }
  .tour-tab { min-width: 0; min-height: 58px; padding: 10px 6px; text-align: center; }
  .tour-tab small { display: none; }
  .tour-screen { padding: 4px; border-radius: 11px; }
  .technology-card { min-height: 460px; grid-template-rows: 235px 1fr; }
  .technology-copy { padding: 24px; }
  .technology-copy h3 { font-size: 26px; }
  .developer-tags { gap: 6px; }
  .developer-tags span { min-height: 32px; }
  .code-window { max-width: 100%; border-radius: 14px; }
  .code-window pre { min-height: 210px; padding: 24px 17px; font-size: 11px; line-height: 1.75; overscroll-behavior-inline: contain; }
  .code-top small { max-width: 65%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .code-response { padding: 11px 14px; line-height: 1.45; }
  .final-cta { padding: 82px 0; }
  .footer-inner { padding: 28px 0; text-align: center; }
  .footer-inner nav { max-width: 330px; gap: 16px 20px; }
  .footer-inner nav a, .footer-inner nav button, .copyright { min-height: 30px; display: inline-flex; align-items: center; font-size: 11px; }
}

@media (max-width: 420px) {
  .section-inner, .product-header-inner { width: min(100% - 24px, var(--max)); }
  .product-brand { font-size: 12px; }
  .product-brand img { width: 23px; height: 23px; }
  .page-language { width: 44px; }
  .header-download { padding: 0 11px; font-size: 11px; }
  .hero { padding-top: 42px; }
  .hero h1 { font-size: clamp(38px, 11.2vw, 46px); }
  .hero-actions { gap: 7px; }
  .hero-slideshow { aspect-ratio: 1.3; }
  .workflow-step, .control-card, .technology-copy { padding-right: 20px; padding-left: 20px; }
  .context-visual, .context-visual img { min-height: 235px; }
  .tour-tab { font-size: 11px; }
  .technology-card { grid-template-rows: 210px 1fr; }
  .code-window pre { font-size: 11px; }
}

@media (hover: none) {
  .context-visual:hover img,
  .technology-card:hover .technology-art img {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .hero-screenshot {
    opacity: 0;
    transform: none;
    animation: none !important;
  }

  .hero-screenshot:first-child { z-index: 1; opacity: 1; }
}
