:root {
  color-scheme: dark;
  --ink-950: #07101e;
  --ink-900: #0a1424;
  --ink-850: #0e192b;
  --ink-800: #121e31;
  --ink-750: #17243a;
  --line: rgba(132, 158, 204, 0.2);
  --line-strong: rgba(110, 145, 214, 0.38);
  --text: #f6f8fc;
  --muted: #a7b3c9;
  --faint: #75839d;
  --blue: #4b7eff;
  --blue-bright: #6c97ff;
  --gold: #f1b84a;
  --green: #64dda0;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --content: 1280px;
  --header-height: 76px;
  font-family: "Segoe UI Variable Display", "Segoe UI Variable", "Segoe UI", Inter, system-ui, sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--ink-950);
  color: var(--text);
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(rgba(78, 119, 197, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(78, 119, 197, 0.035) 1px, transparent 1px),
    var(--ink-950);
  background-size: 40px 40px;
  mask-image: linear-gradient(to bottom, black 0, transparent 62rem);
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(circle at 76% 12%, rgba(65, 105, 187, 0.12), transparent 30rem),
    radial-gradient(circle at 18% 25%, rgba(31, 72, 143, 0.08), transparent 26rem);
}

a {
  color: inherit;
}

img,
svg {
  display: block;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--text);
  color: var(--ink-950);
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-height);
  border-bottom: 1px solid var(--line);
  background: rgba(7, 16, 30, 0.88);
  backdrop-filter: blur(18px);
}

.site-header__inner,
.site-footer {
  width: min(calc(100% - 48px), var(--content));
  margin: 0 auto;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: var(--text);
  font-size: 1.22rem;
  font-weight: 760;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand img {
  object-fit: contain;
  image-rendering: auto;
}

.site-nav {
  display: flex;
  gap: clamp(18px, 3vw, 38px);
  align-items: center;
}

.site-nav a {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 620;
  text-decoration: none;
  transition: color 150ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.hero {
  position: relative;
  display: flex;
  min-height: calc(100vh - var(--header-height));
  flex-direction: column;
  justify-content: center;
  padding: clamp(52px, 8vw, 104px) max(24px, calc((100vw - var(--content)) / 2));
  border-bottom: 1px solid var(--line);
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.84fr) minmax(580px, 1.35fr);
  gap: clamp(42px, 6vw, 86px);
  align-items: center;
  width: 100%;
  max-width: var(--content);
  margin: auto;
}

.hero__copy {
  position: relative;
  z-index: 2;
}

.hero h1 {
  max-width: 12.6ch;
  margin: 0;
  font-size: clamp(3.35rem, 5vw, 5.35rem);
  font-weight: 720;
  letter-spacing: -0.058em;
  line-height: 0.98;
}

.hero__copy > p {
  max-width: 34rem;
  margin: 30px 0 0;
  color: #bdc7d9;
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  line-height: 1.68;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  align-items: center;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  gap: 11px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font: inherit;
  font-size: 1rem;
  font-weight: 720;
  line-height: 1;
  text-decoration: none;
  transition: transform 150ms ease, background 150ms ease, border-color 150ms ease;
}

.button svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.button-primary {
  background: var(--blue);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.2), 0 12px 36px rgba(35, 84, 196, 0.22);
  color: white;
}

a.button-primary:hover,
a.button-primary:focus-visible {
  background: #5c89ff;
  transform: translateY(-2px);
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.82;
}

.release-note {
  color: var(--muted);
  font-size: 0.88rem;
}

.text-link {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  margin-top: 24px;
  color: var(--blue-bright);
  font-weight: 680;
  text-decoration: none;
}

.text-link svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.text-link:hover,
.text-link:focus-visible {
  color: #8aabff;
}

.product-stage {
  position: relative;
  min-width: 0;
  padding-bottom: 46px;
}

.product-window {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  background: var(--ink-900);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.35);
}

.product-window__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 56px;
  padding: 0 17px;
  border-bottom: 1px solid var(--line);
  background: #0b1525;
}

.product-window__brand {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.78rem;
}

.product-window__brand img {
  image-rendering: pixelated;
}

.product-window__brand span {
  margin-left: 6px;
  padding-left: 12px;
  border-left: 1px solid var(--line);
  color: var(--muted);
}

.product-window__tabs {
  display: flex;
  gap: 8px;
  align-items: center;
  color: var(--faint);
  font-size: 0.69rem;
}

.product-window__tabs span {
  padding: 7px 9px;
  border-radius: 6px;
}

.product-window__tabs .is-active {
  border: 1px solid rgba(91, 135, 236, 0.36);
  background: rgba(75, 126, 255, 0.14);
  color: var(--text);
}

.product-window__body {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(230px, 0.9fr);
  gap: 12px;
  padding: 14px;
}

.create-panel,
.preview-panel {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: rgba(17, 30, 50, 0.72);
}

.create-panel {
  padding: 14px;
}

.panel-heading {
  display: flex;
  gap: 8px;
  align-items: baseline;
  margin-bottom: 10px;
}

.panel-heading strong {
  font-size: 0.84rem;
}

.panel-heading span,
.style-row,
.prompt-preview,
.handoff-line {
  color: var(--muted);
  font-size: 0.61rem;
}

.style-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid rgba(78, 126, 255, 0.66);
  border-radius: 8px;
  background: rgba(18, 34, 59, 0.75);
  color: #d7def0;
}

.swatches {
  display: inline-flex;
  gap: 3px;
}

.swatches i {
  width: 9px;
  height: 9px;
  border-radius: 2px;
  background: var(--blue);
}

.swatches i:nth-child(2) { background: #dce6fb; }
.swatches i:nth-child(3) { background: #96a8c6; }
.swatches i:nth-child(4) { background: var(--gold); }
.swatches i:nth-child(5) { background: #c85746; }

.prompt-preview {
  display: block;
  margin-top: 11px;
}

.prompt-preview > span:first-child {
  display: block;
  margin-bottom: 5px;
  color: #e4e9f4;
  font-weight: 650;
}

.prompt-preview__field {
  display: block;
  min-height: 54px;
  padding: 9px;
  border: 1px solid var(--line-strong);
  border-radius: 7px;
  background: #111c2f;
  color: #8d9ab2;
  line-height: 1.45;
}

.type-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
  margin-top: 10px;
}

.type-tile {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  padding: 5px;
  border: 1px solid rgba(112, 139, 189, 0.13);
  border-radius: 7px;
  background: #0d1728;
  color: var(--muted);
  font-size: 0.54rem;
}

.type-tile.is-selected {
  border-color: rgba(86, 132, 242, 0.75);
  background: rgba(60, 105, 210, 0.13);
  color: var(--text);
}

.type-tile img {
  width: 58%;
  max-height: 42px;
  object-fit: contain;
  image-rendering: pixelated;
}

.handoff-line {
  margin: 10px 0;
  color: #83d5a6;
  line-height: 1.4;
}

.generate-button {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 13px;
  border-radius: 7px;
  background: var(--blue);
  color: white;
  font-size: 0.66rem;
  font-weight: 720;
}

.preview-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 15px;
}

.preview-panel__focus {
  display: grid;
  flex: 1;
  place-items: center;
  min-height: 240px;
}

.preview-panel__focus img {
  width: min(62%, 170px);
  object-fit: contain;
  image-rendering: pixelated;
}

.take-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
}

.take-strip img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #0b1628;
  image-rendering: pixelated;
}

.take-strip img:first-child {
  border-color: var(--blue);
}

.product-stage__mascot {
  position: absolute;
  bottom: -16px;
  left: -68px;
  width: clamp(130px, 16vw, 210px);
  filter: drop-shadow(0 18px 14px rgba(0, 0, 0, 0.38));
  image-rendering: auto;
}

.section-cue {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  align-self: center;
  margin-top: clamp(44px, 7vh, 84px);
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 650;
  text-decoration: none;
}

.section-cue span {
  color: var(--blue-bright);
}

.section {
  width: min(calc(100% - 48px), var(--content));
  margin: 0 auto;
  padding: clamp(84px, 10vw, 142px) 0;
}

.section-heading h2,
.lanes__intro h2,
.download h2 {
  margin: 0;
  font-size: clamp(2.55rem, 4vw, 4.15rem);
  font-weight: 700;
  letter-spacing: -0.052em;
  line-height: 1.05;
}

.section-heading {
  text-align: center;
}

.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 46px;
  margin: 68px 0 0;
  padding: 0;
  list-style: none;
}

.steps::before {
  position: absolute;
  top: 22px;
  right: 13%;
  left: 13%;
  height: 1px;
  content: "";
  background: var(--line-strong);
}

.steps li {
  position: relative;
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 18px;
}

.step-number {
  position: relative;
  z-index: 2;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--blue);
  border-radius: 8px;
  background: var(--ink-950);
  color: var(--blue-bright);
  font-size: 1.3rem;
  font-weight: 760;
}

.steps h3,
.lane-row h3 {
  margin: 5px 0 10px;
  font-size: 1.35rem;
  letter-spacing: -0.025em;
}

.steps p,
.lane-row p,
.lanes__intro > p,
.download p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

.handoff-rail {
  display: grid;
  grid-template-columns: 0.65fr 1.2fr 1.6fr 1.15fr 0.55fr;
  gap: 0;
  align-items: stretch;
  margin-top: 64px;
  padding: 18px 0;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: rgba(12, 24, 42, 0.78);
}

.handoff-rail > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 0 18px;
  border-right: 1px solid var(--line);
}

.handoff-rail > div:last-child {
  border: 0;
}

.handoff-rail span {
  margin-bottom: 8px;
  color: var(--faint);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.handoff-rail p {
  margin: 0;
  color: var(--blue-bright);
  font-family: Consolas, monospace;
  font-size: 0.72rem;
  line-height: 1.5;
}

.handoff-rail__takes > div,
.handoff-rail__exports > div {
  display: flex;
  gap: 7px;
}

.handoff-rail__takes img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #0b1628;
  image-rendering: pixelated;
}

.handoff-rail__exports b {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--muted);
  font-size: 0.57rem;
}

.handoff-rail__status {
  flex-direction: row !important;
  gap: 8px;
  align-items: center;
  color: var(--green);
}

.handoff-rail__status i {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-style: normal;
}

.lanes {
  display: grid;
  grid-template-columns: minmax(260px, 0.6fr) minmax(0, 1.4fr);
  gap: clamp(56px, 8vw, 116px);
  border-top: 1px solid var(--line);
}

.lanes__intro {
  align-self: start;
}

.lanes__intro > p {
  max-width: 23rem;
  margin-top: 26px;
}

.engine-list {
  display: flex;
  gap: 14px;
  margin-top: 36px;
  color: var(--blue-bright);
  font-family: Consolas, monospace;
  font-weight: 700;
}

.engine-list i {
  color: var(--faint);
  font-style: normal;
}

.lane-list {
  min-width: 0;
}

.lane-row {
  display: grid;
  grid-template-columns: 78px minmax(200px, 0.82fr) minmax(280px, 1.18fr);
  gap: 24px;
  align-items: center;
  min-height: 148px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.lane-row:first-child {
  border-top: 1px solid var(--line);
}

.lane-row__icon {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
}

.lane-row__icon img {
  width: 68px;
  height: 68px;
  object-fit: contain;
  image-rendering: pixelated;
}

.lane-row__icon svg {
  width: 68px;
  height: 68px;
  overflow: visible;
  fill: none;
  stroke: var(--blue-bright);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.waveform-icon svg {
  width: 82px;
}

.lane-gallery,
.mesh-preview {
  display: grid;
  grid-template-columns: repeat(5, minmax(48px, 1fr));
  gap: 8px;
}

.lane-gallery img,
.mesh-preview span {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  padding: 7px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--ink-900);
}

.lane-gallery img,
.mesh-preview img {
  image-rendering: pixelated;
}

.audio-preview {
  position: relative;
  min-width: 0;
  padding: 12px 14px 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--ink-900);
}

.audio-preview svg {
  width: 100%;
  height: 56px;
  fill: none;
  stroke: var(--blue-bright);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.audio-preview span {
  position: absolute;
  right: 14px;
  bottom: 9px;
  color: var(--faint);
  font-size: 0.62rem;
  letter-spacing: 0.05em;
}

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

.mesh-preview span {
  display: grid;
  place-items: center;
}

.mesh-preview span:nth-child(2) img {
  transform: scaleX(0.88) rotateY(22deg);
}

.mesh-preview span:nth-child(3) img {
  transform: scaleX(0.72);
}

.mesh-preview img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.texture-grid {
  background:
    linear-gradient(90deg, rgba(87, 130, 225, 0.2) 1px, transparent 1px),
    linear-gradient(rgba(87, 130, 225, 0.2) 1px, transparent 1px),
    #0b1628 !important;
  background-size: 12px 12px !important;
}

.download {
  position: relative;
  display: grid;
  overflow: hidden;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 64px;
  align-items: center;
  width: min(calc(100% - 48px), var(--content));
  margin-bottom: 90px;
  padding: clamp(64px, 8vw, 100px);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background: var(--ink-900);
}

.download::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(rgba(74, 120, 209, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74, 120, 209, 0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(90deg, transparent 35%, black);
}

.download__copy,
.download__actions {
  position: relative;
  z-index: 2;
}

.download p {
  margin-top: 22px;
}

.download__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.download__actions > span {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.85rem;
}

.download__actions .text-link {
  margin-top: 24px;
}

.download__mascot {
  position: absolute;
  right: -30px;
  bottom: -100px;
  width: 280px;
  opacity: 0.34;
  image-rendering: auto;
}

.site-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 36px 0 52px;
  border-top: 1px solid var(--line);
}

.brand--footer {
  font-size: 1rem;
}

.site-footer p,
.site-footer__meta {
  color: var(--faint);
  font-size: 0.78rem;
}

.site-footer p {
  margin: 12px 0 0;
}

.site-footer__meta {
  display: flex;
  gap: 8px;
  flex-direction: column;
  align-items: flex-end;
}

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

@media (max-width: 1120px) {
  .hero {
    min-height: auto;
  }

  .hero__grid {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 42px;
  }

  .hero h1 {
    font-size: clamp(3rem, 5vw, 4.3rem);
  }

  .product-stage__mascot {
    left: -42px;
  }

  .product-window__tabs span:nth-child(-n + 2) {
    display: none;
  }

  .handoff-rail {
    grid-template-columns: 0.7fr 1.3fr 1.6fr 1.2fr;
  }

  .handoff-rail__status {
    display: none;
  }

  .handoff-rail__exports {
    border-right: 0 !important;
  }

  .lanes {
    grid-template-columns: 1fr;
  }

  .lanes__intro {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 24px 56px;
    align-items: end;
  }

  .lanes__intro > p {
    margin: 0;
  }

  .engine-list {
    grid-column: 1 / -1;
    margin-top: 0;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 68px;
  }

  .site-header__inner,
  .site-footer,
  .section,
  .download {
    width: min(calc(100% - 32px), var(--content));
  }

  .site-nav {
    gap: 18px;
  }

  .site-nav a:first-child {
    display: none;
  }

  .hero {
    padding-right: 16px;
    padding-left: 16px;
  }

  .hero__grid {
    grid-template-columns: 1fr;
  }

  .hero__copy {
    max-width: 680px;
  }

  .hero h1 {
    max-width: 13.2ch;
    font-size: clamp(3.1rem, 9vw, 5rem);
  }

  .product-stage {
    width: min(100%, 720px);
    justify-self: center;
  }

  .product-stage__mascot {
    right: -20px;
    left: auto;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 34px;
    max-width: 620px;
    margin-right: auto;
    margin-left: auto;
  }

  .steps::before {
    top: 22px;
    right: auto;
    bottom: 22px;
    left: 22px;
    width: 1px;
    height: auto;
  }

  .handoff-rail {
    grid-template-columns: 1fr 1fr;
  }

  .handoff-rail > div {
    min-height: 94px;
    border-bottom: 1px solid var(--line);
  }

  .handoff-rail > div:nth-child(2) {
    border-right: 0;
  }

  .handoff-rail__takes,
  .handoff-rail__exports {
    border-bottom: 0 !important;
  }

  .lane-row {
    grid-template-columns: 72px 1fr;
  }

  .lane-gallery,
  .audio-preview,
  .mesh-preview {
    grid-column: 1 / -1;
  }

  .download {
    grid-template-columns: 1fr;
    padding: 56px 42px;
  }

  .download__actions {
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .brand {
    font-size: 1.05rem;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .site-nav a:nth-child(2) {
    display: none;
  }

  .hero {
    padding-top: 54px;
    padding-bottom: 48px;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(2.65rem, 13.2vw, 4rem);
  }

  .hero__copy > p {
    margin-top: 24px;
    font-size: 1.02rem;
  }

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

  .button {
    width: 100%;
  }

  .product-window__bar {
    min-height: 50px;
  }

  .product-window__brand span,
  .product-window__tabs {
    display: none;
  }

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

  .preview-panel {
    display: none;
  }

  .product-stage__mascot {
    right: -10px;
    bottom: -34px;
    width: 128px;
  }

  .section-cue {
    margin-top: 54px;
  }

  .section {
    padding-top: 78px;
    padding-bottom: 78px;
  }

  .section-heading {
    text-align: left;
  }

  .section-heading h2,
  .lanes__intro h2,
  .download h2 {
    font-size: clamp(2.35rem, 11vw, 3.4rem);
  }

  .handoff-rail {
    grid-template-columns: 1fr;
  }

  .handoff-rail > div {
    border-right: 0;
  }

  .handoff-rail__takes {
    border-bottom: 1px solid var(--line) !important;
  }

  .lanes__intro {
    display: block;
  }

  .lanes__intro > p {
    margin-top: 22px;
  }

  .engine-list {
    margin-top: 28px;
  }

  .lane-row {
    grid-template-columns: 58px 1fr;
    gap: 16px;
  }

  .lane-row__icon {
    width: 54px;
    height: 54px;
  }

  .lane-row__icon img,
  .lane-row__icon svg {
    width: 54px;
    height: 54px;
  }

  .lane-gallery {
    grid-template-columns: repeat(5, minmax(44px, 1fr));
    gap: 5px;
  }

  .lane-gallery img {
    padding: 4px;
  }

  .download {
    margin-bottom: 46px;
    padding: 46px 24px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 28px;
  }

  .site-footer__meta {
    align-items: flex-start;
  }
}

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

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