@font-face {
  font-family: "Plex";
  src: url("/assets/fonts/ibm-plex-sans-regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Plex";
  src: url("/assets/fonts/ibm-plex-sans-medium.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Plex";
  src: url("/assets/fonts/ibm-plex-sans-semibold.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Plex Mono";
  src: url("/assets/fonts/ibm-plex-mono-regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

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

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

:root {
  --ink: #101315;
  --paper: #f2f3ee;
  --white: #fcfcf8;
  --arc: #315cff;
  --gauge: #737a76;
  --steel: #a7ada8;
  --line: #ced2cc;
  --display: "Plex", "Noto Armenian", Arial, sans-serif;
  --armenian: "Noto Armenian", "Plex", Arial, sans-serif;
  --mono: "Plex Mono", ui-monospace, monospace;
  --frame: min(1440px, calc(100vw - 64px));
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, transparent calc(50% - .5px), rgba(16, 19, 21, .035) 50%, transparent calc(50% + .5px)),
    var(--paper);
  font-family: var(--armenian);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

html[lang="en"] body {
  font-family: var(--display);
}

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

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

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

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

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

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

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

.site-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(242, 243, 238, .94);
}

.site-header.is-stuck {
  position: sticky;
  top: 0;
  backdrop-filter: blur(14px);
}

.nav {
  min-height: 76px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: max-content;
  font-family: var(--display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: .12em;
}

.wordmark-mark {
  width: 25px;
  height: 25px;
}

.wordmark-mark .signal {
  fill: var(--arc);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.nav-links a:not(.language-link) {
  position: relative;
  padding-block: 8px;
}

.nav-links a:not(.language-link)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .22s ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.language-link {
  display: grid;
  place-items: center;
  min-width: 38px;
  height: 38px;
  border: 1px solid var(--ink);
}

.menu-toggle {
  display: none;
  appearance: none;
  border: 0;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.hero {
  display: grid;
  grid-template-columns: minmax(360px, .84fr) minmax(520px, 1.16fr);
  min-height: min(860px, calc(100vh - 76px));
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.hero-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(52px, 7vw, 104px) clamp(32px, 5vw, 76px) 34px;
  border-right: 1px solid var(--line);
}

.eyebrow,
.section-label,
.stage-label,
.capability-code,
.process-index,
.contact-label {
  margin: 0;
  color: var(--gauge);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.eyebrow::before,
.section-label::before,
.contact-label::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 1px;
  margin: 0 10px 3px 0;
  background: currentColor;
}

.hero h1 {
  max-width: 680px;
  margin: 48px 0 26px;
  font-family: var(--armenian);
  font-size: clamp(54px, 6vw, 96px);
  font-weight: 700;
  line-height: .98;
  letter-spacing: -.055em;
  overflow-wrap: anywhere;
}

html[lang="en"] .hero h1 {
  font-family: var(--display);
  font-size: clamp(64px, 6vw, 92px);
  font-weight: 600;
}

html[lang="hy"] .hero h1 {
  font-size: clamp(48px, 4.8vw, 72px);
  letter-spacing: -.04em;
}

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

.hero-lede {
  max-width: 560px;
  margin: 0;
  color: #4f5652;
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: stretch;
  gap: 10px;
  margin-top: 38px;
}

.action-primary,
.action-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 54px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .035em;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}

.action-primary {
  color: var(--white);
  background: var(--ink);
}

.action-secondary {
  background: transparent;
}

.action-primary:hover,
.action-primary:focus-visible {
  background: var(--arc);
  border-color: var(--arc);
}

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

.action-primary:hover,
.action-secondary:hover {
  transform: translateY(-2px);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 64px 0 0;
  padding: 22px 0 0;
  border-top: 1px solid var(--line);
}

.hero-proof div {
  min-width: 0;
}

.hero-proof dt {
  margin: 0 0 5px;
  color: var(--gauge);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-proof dd {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.motion-stage {
  --shift-x: 0px;
  --shift-y: 0px;
  position: relative;
  min-height: 680px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(rgba(255, 255, 255, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .055) 1px, transparent 1px),
    var(--ink);
  background-size: 48px 48px;
  isolation: isolate;
  min-width: 0;
}

.motion-stage::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 62%;
  aspect-ratio: 1;
  top: 13%;
  right: -18%;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 50%;
  box-shadow: 0 0 0 50px rgba(255, 255, 255, .018), 0 0 0 110px rgba(255, 255, 255, .012);
}

.stage-top,
.stage-bottom {
  position: absolute;
  z-index: 3;
  right: 28px;
  left: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.stage-top {
  top: 25px;
}

.stage-bottom {
  bottom: 24px;
}

.stage-label {
  color: rgba(252, 252, 248, .58);
}

.stage-state {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(252, 252, 248, .76);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.stage-state::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--arc);
  box-shadow: 0 0 0 5px rgba(49, 92, 255, .18);
}

.stage-word {
  position: absolute;
  z-index: -1;
  top: 11%;
  left: 3%;
  color: rgba(255, 255, 255, .04);
  font-family: var(--display);
  font-size: clamp(96px, 13vw, 210px);
  font-weight: 600;
  line-height: .8;
  letter-spacing: -.075em;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  user-select: none;
}

.kinematic {
  position: absolute;
  width: 94%;
  max-width: none;
  right: -2%;
  bottom: 7%;
  transform: translate(var(--shift-x), var(--shift-y));
  transition: transform .5s cubic-bezier(.2, .8, .2, 1);
}

.kinematic-grid {
  stroke: rgba(255, 255, 255, .09);
  stroke-width: 1;
}

.arm-shadow {
  fill: none;
  stroke: #050607;
  stroke-width: 48;
  stroke-linecap: square;
  stroke-linejoin: bevel;
}

.arm {
  fill: none;
  stroke: #d6dad5;
  stroke-width: 34;
  stroke-linecap: square;
  stroke-linejoin: bevel;
}

.arm-highlight {
  fill: none;
  stroke: #ffffff;
  stroke-width: 1;
  opacity: .54;
}

.joint-outer {
  fill: #101315;
  stroke: #d6dad5;
  stroke-width: 13;
}

.joint-inner {
  fill: none;
  stroke: rgba(255, 255, 255, .22);
  stroke-width: 1;
}

.joint-core {
  fill: var(--arc);
}

.motion-path {
  fill: none;
  stroke: var(--arc);
  stroke-width: 3;
  stroke-dasharray: 8 8;
  stroke-dashoffset: 180;
  animation: draw-path 2.1s cubic-bezier(.35, 0, .15, 1) .35s forwards;
}

.motion-ghost {
  fill: none;
  stroke: rgba(49, 92, 255, .2);
  stroke-width: 22;
}

.motion-echo path,
.motion-echo circle {
  fill: none;
  stroke: rgba(214, 218, 213, .13);
}

.motion-echo path {
  stroke-width: 17;
  stroke-linecap: square;
  stroke-linejoin: bevel;
}

.motion-echo circle {
  stroke-width: 8;
}

.motion-echo-far {
  opacity: .48;
}

.motion-echo-near {
  opacity: .72;
}

.motion-echo-future {
  opacity: .6;
}

.tool {
  fill: var(--arc);
  stroke: #fff;
  stroke-width: 2;
}

.gripper-wrist,
.gripper-palm,
.gripper-finger,
.gripper-pin {
  fill: var(--arc);
  stroke: #fff;
  stroke-width: 2;
  stroke-linejoin: bevel;
}

.gripper-pin {
  stroke-width: 1.5;
}

.kinematic text {
  fill: rgba(255, 255, 255, .65);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .08em;
}

.spin-ring {
  transform-box: fill-box;
  transform-origin: center;
  animation: spin 16s linear infinite;
}

@keyframes draw-path {
  to { stroke-dashoffset: 0; }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.stage-coordinates {
  color: rgba(252, 252, 248, .58);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .08em;
}

.stage-caption {
  max-width: 270px;
  margin: 0;
  color: rgba(252, 252, 248, .78);
  font-size: 12px;
  line-height: 1.45;
  text-align: right;
}

.scope-rail {
  border-block: 1px solid var(--line);
  background: var(--white);
}

.scope-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
}

.scope-list li {
  min-height: 86px;
  padding: 24px 26px;
  border-left: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.scope-list li:last-child {
  border-right: 1px solid var(--line);
}

.scope-list span {
  display: block;
  margin-bottom: 8px;
  color: var(--arc);
  font-size: 9px;
}

.section {
  padding-block: clamp(90px, 11vw, 160px);
}

.section-head {
  display: grid;
  grid-template-columns: .65fr 1.35fr;
  gap: 40px;
  margin-bottom: clamp(52px, 7vw, 90px);
}

.section-title {
  max-width: 820px;
  margin: 0;
  font-size: clamp(38px, 5vw, 72px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -.045em;
  overflow-wrap: anywhere;
}

html[lang="en"] .section-title {
  font-family: var(--display);
  font-weight: 600;
}

.section-title .quiet {
  color: var(--steel);
}

.capabilities {
  border-top: 1px solid var(--ink);
}

.capability {
  display: grid;
  grid-template-columns: .38fr .9fr 1.15fr 82px;
  align-items: center;
  gap: 28px;
  min-height: 156px;
  border-bottom: 1px solid var(--line);
  transition: color .25s ease, background .25s ease;
}

.capability:hover {
  color: var(--white);
  background: var(--ink);
}

.capability-code {
  transition: color .25s ease;
}

.capability:hover .capability-code {
  color: #9eb1ff;
}

.capability h3 {
  margin: 0;
  font-size: clamp(22px, 2.6vw, 38px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -.035em;
  overflow-wrap: anywhere;
}

html[lang="en"] .capability h3 {
  font-family: var(--display);
  font-weight: 500;
}

.capability p {
  max-width: 610px;
  margin: 0;
  color: var(--gauge);
  font-size: 15px;
  transition: color .25s ease;
}

.capability:hover p {
  color: rgba(252, 252, 248, .7);
}

.capability-symbol {
  width: 64px;
  height: 64px;
  justify-self: end;
  color: var(--ink);
  transition: color .25s ease, transform .25s ease;
}

.capability:hover .capability-symbol {
  color: var(--arc);
  transform: rotate(8deg);
}

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

.system-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  border-inline: 1px solid rgba(255, 255, 255, .15);
  min-width: 0;
}

.brands,
.process {
  padding: clamp(54px, 7vw, 94px);
  min-width: 0;
}

.brands {
  border-right: 1px solid rgba(255, 255, 255, .15);
}

.system-section .section-label {
  color: rgba(255, 255, 255, .46);
}

.brands h2,
.process h2 {
  margin: 36px 0 16px;
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.045em;
  overflow-wrap: anywhere;
}

html[lang="en"] .brands h2,
html[lang="en"] .process h2 {
  font-family: var(--display);
  font-weight: 600;
}

.brands-intro {
  max-width: 520px;
  margin: 0;
  color: rgba(252, 252, 248, .58);
}

.brand-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 72px;
  border-block: 1px solid rgba(255, 255, 255, .18);
}

.brand-list span {
  padding: 30px 10px;
  border-right: 1px solid rgba(255, 255, 255, .18);
  font-family: var(--display);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 600;
  letter-spacing: -.03em;
  text-align: center;
}

.brand-list span:last-child {
  border-right: 0;
}

.process-list {
  margin: 44px 0 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, .16);
}

.process-index {
  color: #9eb1ff;
}

.process-list strong {
  display: block;
  margin-bottom: 7px;
  font-size: 17px;
}

.process-list p {
  margin: 0;
  color: rgba(252, 252, 248, .58);
  font-size: 14px;
}

.contact-section {
  background: var(--white);
}

.contact-shell {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  border: 1px solid var(--ink);
  clip-path: polygon(0 0, calc(100% - 34px) 0, 100% 34px, 100% 100%, 34px 100%, 0 calc(100% - 34px));
}

.contact-main {
  min-width: 0;
  padding: clamp(50px, 8vw, 110px);
  border-right: 1px solid var(--ink);
}

.contact-main h2 {
  max-width: 900px;
  margin: 40px 0 48px;
  font-size: clamp(44px, 7vw, 102px);
  font-weight: 700;
  line-height: .98;
  letter-spacing: -.06em;
  overflow-wrap: anywhere;
}

html[lang="en"] .contact-main h2 {
  font-family: var(--display);
  font-weight: 600;
}

.contact-main h2 span {
  color: var(--arc);
}

.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--ink);
  font-family: var(--display);
  font-size: clamp(18px, 2.1vw, 30px);
  font-weight: 500;
}

.contact-email::after {
  content: "↗";
  color: var(--arc);
}

.contact-details {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 54px;
  margin: 0;
  padding: clamp(50px, 6vw, 78px);
  background: var(--paper);
}

.contact-details div {
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.contact-details dt {
  margin-bottom: 9px;
  color: var(--gauge);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.contact-details dd {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
  min-height: 108px;
}

.footer-note {
  margin: 0;
  color: var(--gauge);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2, .8, .2, 1);
}

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

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

@media (max-width: 980px) {
  :root {
    --frame: min(100% - 36px, 760px);
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-copy {
    min-height: 680px;
    border-right: 0;
  }

  .motion-stage {
    min-height: 680px;
    border-top: 1px solid var(--line);
  }

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

  .capability {
    grid-template-columns: .34fr 1fr 1.35fr 70px;
  }

  .system-grid,
  .contact-shell {
    grid-template-columns: 1fr;
  }

  .brands {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .15);
  }

  .contact-main {
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }

  .contact-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 720px) {
  :root {
    --frame: calc(100% - 24px);
  }

  .nav {
    min-height: 66px;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    gap: 9px;
  }

  .menu-toggle::before {
    content: "";
    width: 8px;
    height: 8px;
    background: var(--arc);
  }

  .nav-links {
    position: absolute;
    top: 66px;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 0 12px 12px;
    border-bottom: 1px solid var(--ink);
    background: var(--paper);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity .18s ease, transform .18s ease;
  }

  .nav-links.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a {
    padding: 18px 8px !important;
    border-bottom: 1px solid var(--line);
  }

  .nav-links .language-link {
    justify-content: start;
    border: 0;
  }

  .hero-copy {
    min-height: 650px;
    padding: 48px 22px 26px;
  }

  .hero h1 {
    margin-top: 40px;
    font-size: clamp(48px, 14vw, 68px);
  }

  html[lang="en"] .hero h1 {
    font-size: clamp(42px, 14vw, 64px);
  }

  html[lang="en"] .hero h1 span {
    white-space: nowrap;
  }

  html[lang="hy"] .hero h1 {
    font-size: clamp(46px, 12vw, 58px);
  }

  .hero-actions {
    flex-direction: column;
  }

  .action-primary,
  .action-secondary {
    width: 100%;
  }

  .hero-proof {
    grid-template-columns: 1fr 1fr;
    margin-top: 48px;
  }

  .hero-proof div:last-child {
    grid-column: 1 / -1;
  }

  .motion-stage {
    min-height: 510px;
  }

  .kinematic {
    width: 105%;
    right: 0;
    bottom: 11%;
  }

  .stage-top,
  .stage-bottom {
    right: 18px;
    left: 18px;
  }

  .stage-caption {
    max-width: 200px;
    font-size: 10px;
  }

  .scope-list {
    grid-template-columns: 1fr 1fr;
  }

  .scope-list li {
    min-height: 76px;
    padding: 19px;
    border-bottom: 1px solid var(--line);
  }

  .scope-list li:nth-child(even) {
    border-right: 1px solid var(--line);
  }

  .section {
    padding-block: 92px;
  }

  .capability {
    grid-template-columns: 1fr 58px;
    gap: 13px 18px;
    padding: 28px 0;
  }

  .capability-code,
  .capability p {
    grid-column: 1;
  }

  .capability h3 {
    grid-column: 1;
    font-size: 27px;
  }

  .capability p {
    font-size: 14px;
  }

  .capability-symbol {
    grid-column: 2;
    grid-row: 1 / span 3;
    align-self: center;
    width: 52px;
    height: 52px;
  }

  .brands,
  .process {
    padding: 58px 24px;
  }

  .brand-list {
    margin-top: 46px;
  }

  .brand-list span {
    padding: 24px 4px;
    font-size: 22px;
  }

  .contact-shell {
    clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 22px 100%, 0 calc(100% - 22px));
  }

  .contact-main {
    padding: 58px 24px;
  }

  .contact-main h2 {
    margin: 34px 0 40px;
    font-size: clamp(42px, 13vw, 64px);
  }

  html[lang="hy"] .contact-main h2 {
    font-size: clamp(36px, 10vw, 46px);
    letter-spacing: -.04em;
  }

  .contact-email {
    font-size: 17px;
  }

  .contact-details {
    display: flex;
    padding: 44px 24px 58px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-block: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
