:root {
  color-scheme: light;
  --canvas: #ffffff;
  --ink: #090909;
  --quiet: #666666;
  --soft: #f3f3f3;
  --rule: #d7d7d7;
  --content: min(1440px, calc(100vw - 96px));
  --display: "Hiragino Sans", "Yu Gothic UI", "Yu Gothic", sans-serif;
  --utility: "Arial Narrow", "Aptos Narrow", "Helvetica Neue", sans-serif;
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  background: var(--canvas);
  color: var(--ink);
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  min-width: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--display);
  font-size: 18px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: rgba(9, 9, 9, .14);
}

body::before {
  content: "";
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 2px;
  background: var(--ink);
}

html.language-gateway-open { overflow: hidden; }

.language-gateway {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: none;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: auto 1fr;
  min-width: 0;
  min-height: 100dvh;
  padding: max(24px, env(safe-area-inset-top)) max(32px, env(safe-area-inset-right)) max(24px, env(safe-area-inset-bottom)) max(32px, env(safe-area-inset-left));
  overflow: auto;
  background: var(--canvas);
  color: var(--ink);
}

.language-pending .language-gateway,
.language-gateway.is-open { display: grid; }

.language-gateway-rule {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  background: var(--ink);
}

.language-gateway-brand {
  position: relative;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 12px;
  color: inherit;
  text-decoration: none;
  font: 800 26px/1 var(--utility);
  letter-spacing: -.04em;
}

.language-gateway-brand img { border-radius: 10px; }

.language-menagerie {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.micro-stream {
  position: absolute;
  left: 0;
  display: flex;
  width: max-content;
  animation: micro-procession 42s linear infinite;
  will-change: transform;
}

.micro-stream-a { top: clamp(82px, 10vh, 122px); animation-duration: 38s; }
.micro-stream-b { top: clamp(148px, 18vh, 204px); animation-direction: reverse; animation-duration: 47s; }
.micro-stream-c { bottom: clamp(12px, 3vh, 42px); animation-duration: 44s; }

.micro-sequence {
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.4vw, 46px);
  min-width: 100vw;
  padding-right: clamp(22px, 2.4vw, 46px);
}

.micro-sequence span {
  display: grid;
  flex: 1 0 68px;
  width: 68px;
  height: 44px;
  place-items: center;
  animation: micro-bob 3.6s ease-in-out infinite alternate;
}

.micro-sequence span:nth-child(3n + 2) { animation-delay: -1.4s; }
.micro-sequence span:nth-child(3n) { animation-delay: -2.5s; }
.micro-sequence img { width: 100%; height: 38px; object-fit: contain; }

.language-pages {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(1280px, 100%);
  min-height: 0;
  min-width: 0;
  margin: 0 auto;
  overflow-x: clip;
}

.language-page {
  grid-area: 1 / 1;
  min-width: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(42px);
  transition: opacity 280ms var(--ease-out), transform 320ms var(--ease-out), visibility 0s linear 320ms;
}

.language-pages[data-page="intro"] .language-intro,
.language-pages[data-page="select"] .language-select {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
  transition-delay: 0s;
}

.language-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr);
  grid-template-rows: 1fr auto;
  align-items: center;
  column-gap: clamp(52px, 8vw, 132px);
  padding: clamp(178px, 22vh, 236px) 0 clamp(92px, 11vh, 128px);
}

.language-copy { min-width: 0; transition: opacity 130ms ease-out, transform 180ms var(--ease-out); }
.language-copy.is-changing { opacity: 0; transform: translateY(10px); }

.language-counter,
.language-name {
  margin: 0;
  font: 800 16px/1.25 var(--utility);
  letter-spacing: .14em;
  text-transform: uppercase;
}

.language-name { margin-top: 22px; color: var(--quiet); letter-spacing: .08em; }

.language-phrase {
  max-width: 760px;
  margin: 24px 0 0;
  font-size: clamp(52px, 6.2vw, 96px);
  font-weight: 800;
  line-height: .98;
  letter-spacing: -.065em;
  text-wrap: balance;
}

.language-pet-row {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: end;
  min-height: 230px;
  border-top: 1px solid var(--ink);
}

.language-pet-row span {
  display: grid;
  place-items: start center;
  min-width: 0;
  animation: language-parade 2.8s var(--ease-out) infinite alternate;
}

.language-pet-row span:nth-child(2) { animation-delay: -1.2s; }
.language-pet-row span:nth-child(3) { animation-delay: -2.1s; }
.language-pet-row img { width: min(100%, 164px); height: 118px; object-fit: contain; object-position: center top; }

@keyframes language-parade {
  from { transform: translateX(-7px); }
  to { transform: translateX(7px); }
}

.language-intro-actions {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 22px;
  padding-top: 32px;
  border-top: 1px solid var(--rule);
}

.language-primary,
.language-text-button,
.language-options button,
.language-switcher {
  border: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.language-primary {
  min-height: 54px;
  padding: 13px 22px;
  background: var(--ink);
  color: var(--canvas);
  font-weight: 800;
  transition: transform 160ms ease-out;
}

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

.language-text-button {
  min-height: 48px;
  padding: 10px 0;
  border-bottom: 1px solid currentColor;
  font-weight: 700;
}

.language-select {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(520px, 1.28fr);
  align-content: center;
  gap: clamp(48px, 8vw, 128px);
  padding: clamp(118px, 15vh, 168px) 0 clamp(68px, 8vh, 96px);
}

.language-select-heading,
.language-options,
.language-options button,
.language-options span,
.language-options small {
  min-width: 0;
}

.language-select-heading h1 {
  max-width: 560px;
  margin: 24px 0 0;
  font-size: clamp(48px, 5.4vw, 82px);
  line-height: .98;
  letter-spacing: -.06em;
  overflow-wrap: anywhere;
}

.language-select-heading > p:last-child {
  max-width: 430px;
  margin: 28px 0 0;
  color: var(--quiet);
  font-size: 16px;
}

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

.language-options button {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  width: 100%;
  min-height: 70px;
  padding: 13px 4px;
  border-bottom: 1px solid var(--rule);
  text-align: left;
  transition: transform 180ms var(--ease-out), background-color 180ms ease-out;
}

.language-options button:hover,
.language-options button:focus-visible {
  background: var(--soft);
  transform: none;
}

.language-options span { font-size: clamp(24px, 2.3vw, 34px); font-weight: 800; letter-spacing: -.035em; }
.language-options small { color: var(--quiet); font: 700 16px/1.25 var(--utility); letter-spacing: .06em; text-transform: uppercase; }

.language-cancel {
  grid-column: 2;
  justify-self: end;
  width: fit-content;
  align-self: end;
}

.language-cancel.is-hidden { display: none; }

img { display: block; max-width: 100%; }
a { color: inherit; }
button, a, summary { touch-action: manipulation; }

.skip-link {
  position: fixed;
  z-index: 200;
  top: 8px;
  left: 8px;
  padding: 12px 16px;
  background: var(--ink);
  color: var(--canvas);
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 160ms ease-out;
}

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

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

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

main:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: -3px;
}

.site-header {
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: var(--content);
  height: 88px;
  margin: 0 auto;
  border-bottom: 1px solid var(--rule);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 10px;
}

.language-switcher {
  display: grid;
  place-items: center;
  min-width: 48px;
  min-height: 48px;
  padding: 8px;
  border: 1px solid var(--rule);
  font: 800 16px/1 var(--utility);
  letter-spacing: .08em;
  transition: border-color 160ms ease-out, transform 160ms ease-out;
}

.language-switcher:hover { border-color: var(--ink); transform: translateY(-2px); }

.brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 13px;
  text-decoration: none;
  font: 800 28px/1 var(--utility);
  letter-spacing: -.04em;
}

.brand img { border-radius: 10px; }

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .04em;
}

.desktop-nav a {
  position: relative;
  min-height: 44px;
  padding: 11px 0;
  text-decoration: none;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  inset: auto 0 7px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 240ms var(--ease-out);
}

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

.header-download {
  justify-self: end;
  min-height: 48px;
  padding: 11px 18px;
  border: 1px solid var(--ink);
  text-decoration: none;
  font-size: 16px;
  font-weight: 800;
  transition: background-color 160ms ease-out, color 160ms ease-out, transform 160ms ease-out;
}

.header-download:hover {
  background: var(--ink);
  color: var(--canvas);
  transform: translateY(-2px);
}

.edge-orchestra {
  position: absolute;
  z-index: 2;
  top: 72px;
  left: 0;
  width: 100%;
  height: 164px;
  overflow: hidden;
  pointer-events: none;
}

.edge-rule {
  position: absolute;
  top: 49px;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(9, 9, 9, .9);
}

.edge-track {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  width: max-content;
  animation: edge-procession 38s linear infinite;
}

.edge-orchestra.is-paused .edge-track { animation-play-state: paused; }

.edge-sequence {
  display: flex;
  gap: 40px;
  padding-right: 40px;
}

.edge-slot {
  display: grid;
  flex: 0 0 156px;
  width: 156px;
  height: 142px;
  place-items: start center;
  padding-top: var(--edge-y, 20px);
}

.edge-slot img {
  display: block;
  width: 100%;
  height: 100px;
  object-fit: contain;
}

.edge-bat { --edge-y: 6px; }
.edge-monkey { --edge-y: 43px; }
.edge-gecko { --edge-y: 30px; }
.edge-roach { --edge-y: 31px; }
.edge-beetle { --edge-y: 29px; }
.edge-centipede { --edge-y: 24px; }
.edge-squirrel { --edge-y: 5px; }
.edge-axo { --edge-y: 27px; }
.edge-puffer { --edge-y: 29px; }

main { position: relative; z-index: 3; }

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

.hero {
  display: grid;
  grid-template-columns: minmax(560px, 1.08fr) minmax(500px, .92fr);
  align-items: center;
  gap: clamp(42px, 6vw, 104px);
  width: var(--content);
  min-height: min(780px, calc(100svh - 88px));
  margin: 0 auto;
  padding: 142px 0 60px;
}

.hero-copy { align-self: center; padding-bottom: 18px; }

.hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(62px, 5vw, 88px);
  font-weight: 800;
  line-height: .98;
  letter-spacing: -.075em;
  text-wrap: balance;
  white-space: nowrap;
}

.hero-lead {
  max-width: 630px;
  margin: 34px 0 0;
  color: #292929;
  font-size: clamp(17px, 1.2vw, 20px);
  line-height: 1.9;
  letter-spacing: .015em;
  text-wrap: pretty;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 22px;
  border: 1px solid var(--ink);
  border-radius: 0;
  font-family: var(--display);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: background-color 160ms ease-out, color 160ms ease-out, transform 160ms ease-out;
}

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

.button-primary:hover:not([aria-disabled="true"]),
.button-secondary:hover {
  transform: translateY(-3px);
}

.button-primary:hover:not([aria-disabled="true"]) { background: #303030; }
.button-secondary:hover { background: var(--ink); color: var(--canvas); }

.button-disabled,
.button[aria-disabled="true"] {
  cursor: not-allowed;
  border-color: var(--rule);
  background: var(--soft);
  color: var(--quiet);
}

.button.is-loading { position: relative; padding-left: 43px; }
.button.is-loading::before {
  content: "";
  position: absolute;
  left: 19px;
  width: 11px;
  height: 11px;
  border: 1.5px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: spin 900ms linear infinite;
}

.build-note {
  margin: 10px 0 0;
  color: var(--quiet);
  font: 600 16px/1.5 var(--utility);
  letter-spacing: .1em;
  text-transform: uppercase;
}

.hero-stage {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.stage-caption {
  position: absolute;
  top: 18px;
  left: 0;
  z-index: 2;
  font: 700 16px/1 var(--utility);
  letter-spacing: .18em;
}

.stage-edge {
  position: absolute;
  top: 72px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--ink);
}

.stage-pet {
  position: absolute;
  height: auto;
  aspect-ratio: 82 / 52;
  object-fit: contain;
}

.stage-monkey { left: 0; top: 66px; width: 178px; transform-origin: 52% 8%; }
.stage-bat { left: 40%; top: 92px; width: 126px; animation: edge-fly 5.7s ease-in-out -1.6s infinite; }
.stage-squirrel { right: 0; top: 70px; width: 184px; animation: glide 7.2s ease-in-out -.4s infinite; }
.stage-gecko { left: 4%; top: 254px; width: 146px; animation: soft-crawl 5.4s ease-in-out -.9s infinite; }
.stage-axo { left: 38%; top: 252px; width: 166px; animation: swim 6.4s ease-in-out -1.1s infinite; }
.stage-puffer { right: 5%; top: 244px; width: 136px; animation: puffer-drift 5.8s ease-in-out infinite; }
.stage-roach { left: 5%; bottom: 24px; width: 118px; animation: scuttle 3.4s ease-in-out -.6s infinite; }
.stage-beetle { left: 39%; bottom: 20px; width: 136px; animation: trundle 5.2s ease-in-out -1.7s infinite; }
.stage-centipede { right: 0; bottom: 12px; width: 174px; animation: soft-crawl 5.2s ease-in-out infinite; }

.screen-demo-section {
  padding: clamp(86px, 8vw, 132px) 0;
  color: #fff;
  background: #050505;
}

.screen-demo-shell {
  display: grid;
  grid-template-columns: minmax(400px, .9fr) minmax(520px, 1.1fr);
  align-items: center;
  gap: clamp(54px, 7vw, 116px);
}

.screen-demo-copy h2 {
  max-width: 9.5em;
  margin: 22px 0 30px;
  font-size: clamp(48px, 4.4vw, 68px);
  line-height: .98;
  letter-spacing: -.065em;
  text-wrap: balance;
}

.screen-demo-copy > p:not(.screen-demo-label) {
  max-width: 29em;
  margin: 0;
  color: #cfcfcf;
  font-size: clamp(18px, 1.35vw, 23px);
  line-height: 1.7;
}

.screen-demo-label,
.screen-demo-spec {
  font: 800 15px/1 var(--utility);
  letter-spacing: .18em;
  text-transform: uppercase;
}

.screen-demo-label { margin: 0; }

.screen-demo-spec {
  display: inline-block;
  margin-top: 40px;
  padding-top: 12px;
  border-top: 1px solid #fff;
}

.screen-demo-monitor {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  color: #050505;
  background: #fff;
  border: 3px solid #fff;
  box-shadow: 0 0 0 1px #333;
}

.screen-demo-menubar {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 45px;
  padding: 0 16px;
  color: #050505;
  background: #f2f2f2;
  border-bottom: 1px solid #050505;
}

.screen-demo-menubar span {
  width: 8px;
  height: 8px;
  background: #050505;
  border-radius: 50%;
}

.screen-demo-menubar b {
  margin-left: auto;
  font: 700 11px/1 var(--utility);
}

.screen-demo-workspace {
  display: grid;
  grid-template-columns: 24% 1fr;
  height: calc(100% - 45px);
}

.screen-demo-sidebar { border-right: 1px solid #d4d4d4; }

.screen-demo-document {
  display: grid;
  align-content: center;
  gap: 17px;
  width: 65%;
  margin: auto;
}

.screen-demo-document i {
  display: block;
  height: 6px;
  background: #e2e2e2;
}

.screen-demo-document i:nth-child(2) { width: 84%; }
.screen-demo-document i:nth-child(3) { width: 92%; }
.screen-demo-document i:nth-child(4) { width: 62%; }

.screen-demo-edge {
  position: absolute;
  z-index: 3;
  top: 44px;
  left: 0;
  right: 0;
  height: 2px;
  background: #050505;
}

.screen-demo-route {
  position: absolute;
  z-index: 4;
  top: 35px;
  left: 0;
  width: 100%;
  height: 78px;
  overflow: hidden;
  pointer-events: none;
}

.screen-demo-track {
  display: flex;
  width: 200%;
  height: 100%;
  transform: translate3d(-50%, 0, 0);
  animation: screen-demo-procession 19s linear infinite;
  will-change: transform;
}

.screen-demo-pack {
  position: relative;
  flex: 0 0 50%;
  height: 100%;
}

.screen-demo-rider {
  position: absolute;
  top: 0;
  display: block;
  width: clamp(54px, 6.2vw, 68px);
  aspect-ratio: 82 / 52;
}

.screen-demo-rider-monkey { left: 7%; top: 6px; }
.screen-demo-rider-gecko { left: 43%; top: 7px; width: clamp(58px, 6.7vw, 74px); }
.screen-demo-rider-beetle { left: 78%; top: 7px; width: clamp(54px, 6.2vw, 68px); }

.screen-demo-rider .screen-demo-pet,
.screen-demo-rider .motion-pet {
  display: block;
  width: 100%;
  height: 100%;
}

.screen-demo-zoom {
  position: absolute;
  z-index: 5;
  right: 14px;
  bottom: 14px;
  width: clamp(138px, 16vw, 172px);
  min-height: 108px;
  overflow: hidden;
  color: #050505;
  background: #fff;
  border: 1px solid #050505;
  box-shadow: 6px 6px 0 #050505;
}

.screen-demo-zoom-label {
  display: block;
  padding: 7px 9px 6px;
  font: 800 10px/1 var(--utility);
  letter-spacing: .13em;
  text-transform: uppercase;
  border-bottom: 1px solid #050505;
}

.screen-demo-zoom-pet,
.screen-demo-zoom .motion-pet {
  display: block;
  width: 112px;
  height: auto;
  margin: -16px auto 1px;
  aspect-ratio: 82 / 52;
}

.screen-demo-status {
  position: absolute;
  left: 18px;
  bottom: 16px;
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 9px 12px;
  color: #fff;
  background: #050505;
  font: 700 12px/1 var(--utility);
  letter-spacing: .12em;
  text-transform: uppercase;
}

.screen-demo-status strong { font-size: 14px; }

@keyframes screen-demo-procession {
  from { transform: translate3d(-50%, 0, 0); }
  to { transform: translate3d(0, 0, 0); }
}

.reaction-section {
  padding: 100px 0 82px;
  border-top: 1px solid var(--rule);
  content-visibility: auto;
  contain-intrinsic-size: auto 1000px;
}

.section-intro {
  display: grid;
  grid-template-columns: .42fr .9fr 1fr;
  align-items: start;
  gap: 42px;
  padding-bottom: 62px;
}

.section-label {
  margin: 0;
  font: 800 clamp(24px, 1.8vw, 28px)/1.2 var(--utility);
  letter-spacing: .12em;
  text-transform: uppercase;
}

.section-intro h2,
.animal-heading h2,
.privacy-statement h2,
.download-heading h2,
.faq-heading h2 {
  margin: 0;
  font-size: clamp(46px, 5.2vw, 82px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -.065em;
  text-wrap: balance;
}

.section-intro > p:last-child,
.animal-heading > p {
  max-width: 24em;
  margin: 0;
  color: #333;
  font-size: clamp(20px, 1.45vw, 24px);
  line-height: 1.65;
  text-wrap: pretty;
}

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

.reaction-row {
  display: grid;
  grid-template-columns: minmax(350px, .9fr) minmax(360px, 1fr) 190px;
  align-items: center;
  gap: 42px;
  min-height: 218px;
  padding: 32px 0;
  border-bottom: 1px solid var(--rule);
  overflow: hidden;
}

.reaction-title { display: flex; align-items: center; gap: 22px; }
.reaction-title h3 { display: flex; flex-wrap: wrap; column-gap: .24em; margin: 0; font-size: clamp(23px, 2.1vw, 34px); line-height: 1.25; letter-spacing: -.035em; }
.reaction-title h3 span { white-space: nowrap; }
.reaction-row > p { max-width: 600px; margin: 0; color: #333; line-height: 1.85; }

.reaction-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font: 700 24px/1 var(--utility);
}

.reaction-bars { gap: 4px; }
.reaction-bars i { display: block; width: 3px; background: var(--ink); }
.reaction-bars i:nth-child(1) { height: 12px; }
.reaction-bars i:nth-child(2) { height: 24px; }
.reaction-bars i:nth-child(3) { height: 17px; }

.reaction-arrow::before {
  content: "";
  width: 17px;
  height: 17px;
  border-top: 2px solid var(--ink);
  border-left: 2px solid var(--ink);
  transform: translateY(5px) rotate(45deg);
}

.reaction-arrow::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 25px;
  background: var(--ink);
  transform: translateY(6px);
}

.reaction-arrow { position: relative; }
.reaction-pet { justify-self: end; object-fit: contain; }
.reaction-pet-scene {
  position: relative;
  justify-self: end;
  width: 190px;
  height: 154px;
  overflow: hidden;
}
.reaction-bat-scene {
  align-self: stretch;
  height: auto;
  min-height: 154px;
  margin-block: -32px;
}
.reaction-bat {
  position: absolute;
  /* The claw curve's measured minimum is 0.421 logical px below the viewBox
     edge. Pulling the image up keeps that ink inside the section's single
     1 px rule without drawing a second, overlapping rule. */
  top: -1.45px;
  right: 0;
  transform-origin: 50% 0;
  animation: reaction-bat-hang 4.8s ease-in-out infinite;
}
.reaction-beetle { animation: horn-nod 4.6s ease-in-out infinite; }
.reaction-hide-scene {
  height: 154px;
  padding: 0;
  border-top: 0;
  border-right: 0;
  border-bottom: 0;
  border-left: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
  touch-action: manipulation;
  appearance: none;
}
.reaction-hide-scene:focus-visible { outline: 3px solid currentColor; outline-offset: 4px; }
.reaction-hide-edge {
  position: absolute;
  top: 18px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--ink);
  z-index: 2;
}
.reaction-hide-clip {
  position: absolute;
  top: 18px;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}
.reaction-roach {
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 148px;
  margin-left: 0;
  transform-origin: 58% 50%;
  animation: none;
}
.reaction-hide-scene.is-retreating .reaction-roach {
  animation: escape-up 4.8s linear 1;
}

.animal-section {
  padding: 126px 0 118px;
  overflow: hidden;
  border-top: 1px solid var(--ink);
  content-visibility: auto;
  contain-intrinsic-size: auto 960px;
}

.animal-heading {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: end;
  gap: 64px;
  padding-bottom: 78px;
}

.animal-heading .section-label { margin-bottom: 24px; }

.animal-runway-viewport {
  --runway-cell: clamp(168px, 13vw, 220px);
  width: 100%;
  overflow: hidden;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.animal-runway-track {
  display: flex;
  width: max-content;
  will-change: transform;
}

.animal-runway-viewport.is-ready .animal-runway-track {
  animation: animal-runway-slide 54s linear infinite;
}

.animal-runway-viewport.is-paused .animal-runway-track,
.animal-runway-viewport:hover .animal-runway-track,
.animal-runway-viewport:focus-within .animal-runway-track {
  animation-play-state: paused;
}

.animal-runway {
  display: grid;
  grid-template-columns: repeat(9, var(--runway-cell));
  flex: 0 0 auto;
  width: max-content;
  margin: 0;
  padding: 0;
  list-style: none;
}

.animal-runway li {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 250px;
  padding: 30px 22px 18px;
  border-right: 1px solid var(--rule);
}

.animal-runway li:first-child { border-left: 1px solid var(--rule); }
.animal-runway .animal-monkey { padding-top: 0; }
.animal-runway .animal-monkey .motion-pet {
  width: calc(100% + 44px);
  height: auto;
  aspect-ratio: 82 / 52;
  margin: -10px -22px 0;
}
.animal-runway img { width: 100%; height: 160px; object-fit: contain; transition: transform 320ms var(--ease-out); }
.animal-runway li:hover img { transform: translateY(-9px) rotate(-2deg); }
.animal-runway span { min-width: 0; font-size: 16px; font-weight: 700; letter-spacing: .02em; overflow-wrap: anywhere; }
.animal-free span::after { content: ""; display: inline-block; width: 7px; height: 7px; margin-left: 8px; border-radius: 50%; background: var(--ink); }

.appearance-section {
  padding: 126px 0 0;
  overflow: hidden;
  border-top: 1px solid var(--ink);
  content-visibility: auto;
  contain-intrinsic-size: auto 760px;
}

.appearance-heading {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: end;
  gap: 64px;
  padding-bottom: 72px;
}

.appearance-heading .section-label { margin-bottom: 24px; }
.appearance-heading h2 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(46px, 5.2vw, 82px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -.065em;
  text-wrap: balance;
}
.appearance-heading > p {
  max-width: 530px;
  margin: 0;
  color: #333;
  font-size: 17px;
  line-height: 1.9;
  text-wrap: pretty;
}

.appearance-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: min(var(--content), calc(100% - 40px));
  min-height: 272px;
  margin: 0 auto;
  border: 1px solid #090909;
}

.appearance-pane {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  align-items: center;
  min-width: 0;
  min-height: 272px;
  padding: 24px clamp(22px, 3.2vw, 52px) 28px;
  overflow: hidden;
}
.appearance-pane + .appearance-pane { border-left: 1px solid #090909; }
.appearance-light { color: #090909; background: #fff; }
.appearance-dark { color: #fff; background: #090909; }
.appearance-dark img { filter: invert(1); }
.appearance-mode {
  position: relative;
  z-index: 2;
  width: fit-content;
  font: 800 clamp(18px, 1.45vw, 24px)/1.25 var(--utility);
  letter-spacing: -.02em;
}
.appearance-pets {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: clamp(12px, 1.5vw, 22px);
  width: 100%;
  min-width: 0;
  max-width: 680px;
  padding-inline: 0;
  margin: 0 auto;
}
.appearance-pets img {
  justify-self: center;
  width: 100%;
  max-width: 100%;
  max-height: 150px;
  height: auto;
  object-fit: contain;
  transform-box: fill-box;
  transform-origin: center;
}
.appearance-pets img:nth-child(1) { animation: appearance-hang 4.8s ease-in-out infinite; }
.appearance-pets img:nth-child(2) { animation: appearance-step 3.6s ease-in-out -.7s infinite; }
.appearance-pets img:nth-child(3) {
  transform-origin: 50% 0;
  animation: appearance-bat-roost 4.2s ease-in-out -1.2s infinite;
}

.privacy-section {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 100px;
  padding: 136px 0 150px;
  border-top: 1px solid var(--rule);
  content-visibility: auto;
  contain-intrinsic-size: auto 900px;
}

.privacy-statement .section-label { margin-bottom: 30px; }
.privacy-lead { max-width: 700px; margin: 34px 0 0; color: #262626; font-size: 20px; line-height: 1.9; text-wrap: pretty; }

.privacy-facts { margin: 70px 0 0; border-top: 1px solid var(--ink); }
.privacy-facts div { display: grid; grid-template-columns: .8fr 1.2fr; gap: 24px; padding: 21px 0; border-bottom: 1px solid var(--rule); }
.privacy-facts dt { color: var(--quiet); font-size: 16px; }
.privacy-facts dd { margin: 0; font-weight: 700; }
.privacy-pet { position: absolute; left: 28%; bottom: 24px; object-fit: contain; transform: rotate(-3deg); animation: soft-crawl 6.8s ease-in-out infinite; }

.download-section {
  padding: 136px 0 122px;
  border-top: 1px solid var(--ink);
  content-visibility: auto;
  contain-intrinsic-size: auto 1100px;
}

.download-heading { display: grid; grid-template-columns: .34fr 1fr; gap: 40px; margin-bottom: 76px; }

.pricing-summary {
  display: grid;
  grid-template-columns: minmax(250px, .82fr) minmax(340px, 1.18fr);
  width: min(100%, 900px);
  margin: 0 0 64px auto;
  border: 1px solid var(--ink);
}

.pricing-item {
  display: grid;
  grid-template-columns: 1fr;
  align-content: center;
  gap: 11px;
  min-height: 132px;
  padding: 24px 30px 25px;
  background: #f4f2ec;
}

.pricing-item + .pricing-item { border-left: 1px solid var(--ink); }
.pricing-item-paid { color: #fff; background: var(--ink); }
.pricing-tier {
  font: 800 13px/1 var(--utility);
  letter-spacing: .14em;
  text-transform: uppercase;
}
.pricing-value { font: 800 clamp(34px, 3.4vw, 52px)/.95 var(--utility); letter-spacing: -.055em; }
.pricing-value:lang(en),
.pricing-value:lang(fr),
.pricing-value:lang(de),
.pricing-value:lang(it) {
  font-variant-numeric: lining-nums tabular-nums;
  letter-spacing: .008em;
  word-spacing: .1em;
}
.pricing-detail { max-width: 32ch; color: #3c3c3c; font-size: 16px; line-height: 1.5; }
.pricing-item-paid .pricing-detail { color: #d9d9d9; }

.mobile-break { display: none; }
.platform-list { border-top: 1px solid var(--ink); }
.platform-row { display: grid; grid-template-columns: .52fr 1.1fr auto; align-items: center; gap: 50px; min-height: 198px; padding: 34px 0; border-bottom: 1px solid var(--rule); }
.platform-name { display: flex; align-items: center; gap: 20px; }
.platform-icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 62px;
  height: 62px;
  border-radius: 16px;
  color: #090909;
  background: #f2efe7;
}
.platform-icon svg { display: block; width: 43px; height: 43px; }
.platform-icon-mac svg { width: 46px; height: 46px; }
.platform-name h3 { margin: 0; font: 800 clamp(30px, 3vw, 46px)/1 var(--utility); letter-spacing: -.04em; }
.platform-copy p {
  max-width: 650px;
  margin: 0;
  font-size: 18px;
  line-height: 1.8;
  text-wrap: pretty;
  word-break: auto-phrase;
}
.platform-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 2px .55em;
  max-width: none !important;
  margin-top: 8px !important;
  color: var(--quiet);
  font: 600 clamp(12px, 1.12vw, 16px)/1.55 var(--utility) !important;
  letter-spacing: .055em;
  text-transform: uppercase;
}
.platform-meta-part {
  white-space: nowrap;
  word-break: keep-all;
}
.download-caution { margin: 22px 0 0; color: var(--quiet); font-size: 16px; }
.download-caution.is-error { color: var(--ink); font-weight: 700; }

.faq-section {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 80px;
  padding: 128px 0 140px;
  border-top: 1px solid var(--rule);
  content-visibility: auto;
  contain-intrinsic-size: auto 1000px;
}

.faq-heading .section-label { margin-bottom: 28px; }
.faq-list { border-top: 1px solid var(--ink); }
.faq-list details { border-bottom: 1px solid var(--rule); }
.faq-list summary { position: relative; min-height: 70px; padding: 22px 52px 22px 0; cursor: pointer; font-size: 18px; font-weight: 700; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::before,
.faq-list summary::after { content: ""; position: absolute; top: 34px; right: 6px; width: 18px; height: 1px; background: var(--ink); transition: transform 200ms var(--ease-out); }
.faq-list summary::after { transform: rotate(90deg); }
.faq-list details[open] summary::after { transform: rotate(0deg); }
.faq-list details p { max-width: 720px; margin: 0; padding: 0 52px 28px 0; color: #333; line-height: 1.9; }

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 30px;
  width: var(--content);
  min-height: 132px;
  margin: 0 auto;
  border-top: 1px solid var(--ink);
}

.footer-brand { font-size: 22px; }
.site-footer p { margin: 0; text-align: center; font-size: 16px; }
.footer-status { justify-self: end; color: var(--quiet); font: 600 16px/1.55 var(--utility) !important; letter-spacing: .07em; text-transform: uppercase; }

.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity 720ms var(--ease-out), transform 720ms var(--ease-out); }
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }

@keyframes edge-fly {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-4deg); }
  34% { transform: translate3d(16px, -7px, 0) rotate(2deg); }
  68% { transform: translate3d(7px, 5px, 0) rotate(-1deg); }
}

@keyframes hang-sway {
  0%, 100% { transform: rotate(-2.5deg) translateY(0); }
  50% { transform: rotate(3deg) translateY(3px); }
}

@keyframes soft-crawl {
  0%, 100% { transform: translate3d(-7px, 0, 0); }
  50% { transform: translate3d(13px, -2px, 0); }
}

@keyframes scuttle {
  0%, 100% { transform: translate3d(-8px, 0, 0) rotate(-1deg); }
  25% { transform: translate3d(4px, -1px, 0) rotate(1deg); }
  50% { transform: translate3d(16px, 0, 0) rotate(-1deg); }
  75% { transform: translate3d(7px, -1px, 0) rotate(1deg); }
}

@keyframes trundle {
  0%, 100% { transform: translate3d(-5px, 0, 0) rotate(-1deg); }
  50% { transform: translate3d(8px, -1px, 0) rotate(1.5deg); }
}

@keyframes glide {
  0%, 100% { transform: translate3d(-9px, 3px, 0) rotate(-3deg); }
  48% { transform: translate3d(13px, -8px, 0) rotate(4deg); }
}

@keyframes swim {
  0%, 100% { transform: translate3d(-8px, 2px, 0) rotate(-1deg); }
  52% { transform: translate3d(12px, -6px, 0) rotate(2deg); }
}

@keyframes puffer-drift {
  0%, 100% { transform: translate3d(-2px, 2px, 0) rotate(-1deg); }
  55% { transform: translate3d(3px, -3px, 0) rotate(1deg); }
}

@keyframes horn-nod {
  0%, 100% { transform: rotate(-1deg) translateY(0); }
  42% { transform: rotate(4deg) translateY(2px); }
  58% { transform: rotate(-3deg) translateY(-2px); }
}

@keyframes escape-up {
  0%, 100% { opacity: 1; transform: translate3d(0, 0, 0) rotate(0deg); }
  4% { opacity: 1; transform: translate3d(-2px, -5px, 0) rotate(-24deg); }
  12% { opacity: 1; transform: translate3d(2px, -18px, 0) rotate(-58deg); }
  25% { opacity: 1; transform: translate3d(-2px, -70px, 0) rotate(-84deg); }
  39% { opacity: 1; transform: translate3d(0, -182px, 0) rotate(-86deg); }
  40%, 65% { opacity: 0; transform: translate3d(0, -182px, 0) rotate(-86deg); }
  66% { opacity: 0; transform: translate3d(0, -182px, 0) rotate(84deg); }
  67% { opacity: 1; transform: translate3d(0, -170px, 0) rotate(84deg); }
  76% { opacity: 1; transform: translate3d(-2px, -104px, 0) rotate(86deg); }
  87% { opacity: 1; transform: translate3d(2px, -42px, 0) rotate(70deg); }
  96% { opacity: 1; transform: translate3d(-1px, -10px, 0) rotate(28deg); }
}

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

@keyframes edge-procession {
  to { transform: translate3d(-50%, 0, 0); }
}

@keyframes micro-procession {
  to { transform: translate3d(-50%, 0, 0); }
}

@keyframes micro-bob {
  from { transform: translate3d(0, -2px, 0) rotate(-1deg); }
  to { transform: translate3d(0, 3px, 0) rotate(1.5deg); }
}

@keyframes animal-runway-slide {
  to { transform: translate3d(-50%, 0, 0); }
}

@keyframes appearance-procession {
  from { transform: translate3d(-16px, 0, 0); }
  to { transform: translate3d(18px, 0, 0); }
}

@keyframes appearance-procession-mobile {
  from { transform: translate3d(-3px, 0, 0); }
  to { transform: translate3d(3px, 0, 0); }
}

/* Product motion is rendered from the exact fixed-topology clips shipped by
   the Windows and macOS apps. These SVGs replace the static pet images while
   retaining the original layout dimensions and local foreground colour. */
.motion-sprite-root {
  position: fixed;
  width: 0;
  height: 0;
  overflow: hidden;
  pointer-events: none;
}

.motion-pet {
  display: block;
  color: var(--ink);
  --motion-eye: var(--canvas);
  overflow: visible;
  pointer-events: none;
}

.micro-sequence .motion-pet { width: 100%; height: 38px; }

.appearance-dark .motion-pet {
  color: #fff;
  --motion-eye: #090909;
  filter: none;
}

.language-pet-row .motion-pet { width: min(100%, 164px); height: 118px; }
.edge-slot .motion-pet { width: 100%; height: 100px; }
.animal-runway .motion-pet { width: 100%; height: 160px; transition: transform 320ms var(--ease-out); }
.animal-runway li:hover .motion-pet { transform: translateY(-9px) rotate(-2deg); }
.appearance-pets .motion-pet {
  justify-self: center;
  width: 100%;
  max-width: 100%;
  max-height: 150px;
  height: auto;
}

/* The previous whole-image bobbing made articulated animals look pulled by an
   invisible force. Internal limbs/wings now carry the motion; only purposeful
   scene travel such as the auto-runway remains on the outer wrapper. */
.stage-pet.motion-pet,
.reaction-bat.motion-pet,
.reaction-beetle.motion-pet,
.privacy-pet.motion-pet,
.appearance-pets .motion-pet {
  animation: none !important;
}

@media (max-width: 720px) {
  .language-pet-row .motion-pet { height: 76px; }
  .edge-slot .motion-pet { height: 72px; }
  .animal-runway .motion-pet { height: 145px; }
}

@keyframes appearance-hang {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-1deg); }
  50% { transform: translate3d(0, -5px, 0) rotate(1.5deg); }
}

@keyframes appearance-bat-roost {
  0%, 100% { transform: scale3d(.985, 1, 1); }
  50% { transform: scale3d(1.035, .965, 1); }
}

@keyframes reaction-bat-hang {
  0%, 100% { transform: scale3d(1, 1, 1); }
  38% { transform: scale3d(1.035, .975, 1); }
  68% { transform: scale3d(.975, 1.025, 1); }
}

@keyframes appearance-step {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0); }
  45% { transform: translate3d(8px, -2px, 0) rotate(-2deg); }
}

@keyframes appearance-wing {
  0%, 100% { transform: translate3d(0, 0, 0) scale(.98); }
  50% { transform: translate3d(0, -4px, 0) scale(1.02); }
}

@media (max-width: 1100px) {
  :root { --content: min(100% - 56px, 1000px); }
  .language-intro { grid-template-columns: minmax(0, 1fr) minmax(340px, .78fr); column-gap: 48px; }
  .language-select { grid-template-columns: minmax(250px, .72fr) minmax(420px, 1.28fr); gap: 32px; }
  .hero { grid-template-columns: 1fr; gap: 52px; padding-top: 156px; }
  .hero-copy { max-width: 850px; }
  .hero-stage { min-height: 600px; }
  .screen-demo-shell { grid-template-columns: 1fr; }
  .screen-demo-copy { max-width: 780px; }
  .screen-demo-monitor { width: min(100%, 820px); }
  .section-intro { grid-template-columns: .32fr 1fr; }
  .section-intro > p:last-child { grid-column: 2; }
  .reaction-row { grid-template-columns: 1fr 1fr 150px; gap: 26px; }
  .privacy-section { gap: 58px; }
  .platform-row { grid-template-columns: .65fr 1.2fr; }
  .platform-row .button { grid-column: 2; justify-self: start; }
}

@media (max-width: 900px) {
  .appearance-strip {
    grid-template-columns: 1fr;
    width: calc(100% - 28px);
    min-height: 0;
  }
  .appearance-pane {
    min-height: 260px;
    padding: 20px clamp(18px, 4vw, 34px) 22px;
  }
  .appearance-pane + .appearance-pane {
    border-top: 1px solid #090909;
    border-left: 0;
  }
}

@media (max-width: 760px) {
  :root { --content: min(100% - 32px, 640px); }
  html { scroll-padding-top: 76px; }
  [id] { scroll-margin-top: 76px; }
  .language-gateway { padding: max(18px, env(safe-area-inset-top)) 16px max(18px, env(safe-area-inset-bottom)); }
  .language-gateway-brand { font-size: 22px; }
  .language-gateway-brand img { width: 36px; height: 36px; }
  .language-pages { width: 100%; }
  .micro-stream-a { top: 68px; animation-duration: 28s; }
  .micro-stream-b { top: 150px; bottom: auto; display: flex; animation-duration: 34s; }
  .micro-stream-c { top: 232px; bottom: auto; display: flex; animation-duration: 31s; }
  .micro-sequence { gap: 10px; min-width: 230vw; padding-right: 10px; }
  .micro-sequence span { flex-basis: 90px; width: 90px; height: 78px; }
  .micro-sequence img { height: 76px; }
  .micro-sequence .motion-pet { height: 76px; }
  .language-intro { grid-template-columns: 1fr; grid-template-rows: auto auto auto; align-content: center; gap: 30px; padding: 126px 0 78px; }
  .language-phrase { max-width: 620px; margin-top: 18px; font-size: clamp(42px, 13vw, 70px); }
  .language-name { margin-top: 16px; }
  .language-pet-row { min-height: 150px; }
  .language-pet-row img { height: 92px; }
  .language-intro-actions { grid-column: 1; flex-wrap: wrap; padding-top: 22px; }
  .language-select { grid-template-columns: 1fr; align-content: start; gap: 34px; padding: 320px 0 78px; }
  .language-select-heading h1 { margin-top: 18px; font-size: clamp(42px, 12vw, 64px); }
  .language-select-heading > p:last-child { margin-top: 18px; }
  .language-options button { min-height: 68px; padding: 13px 4px; }
  .language-options button:hover,
  .language-options button:focus-visible { transform: none; }
  .language-options span { font-size: 24px; }
  .language-cancel { grid-column: 1; justify-self: start; }
  .site-header { grid-template-columns: 1fr auto; height: 74px; }
  .brand { font-size: 23px; gap: 10px; }
  .brand img { width: 36px; height: 36px; }
  .desktop-nav { display: none; }
  .header-actions { gap: 6px; }
  .language-switcher { min-width: 42px; min-height: 44px; }
  .header-download { min-height: 44px; padding: 9px 12px; font-size: 16px; }
  .edge-orchestra { top: 58px; height: 132px; }
  .edge-rule { top: 42px; }
  .edge-track { animation-duration: 31s; }
  .edge-sequence { gap: 22px; padding-right: 22px; }
  .edge-slot { flex-basis: 110px; width: 110px; height: 116px; }
  .edge-slot img { height: 72px; }
  .edge-bat { --edge-y: 5px; }
  .edge-monkey { --edge-y: 36px; }
  .edge-gecko, .edge-roach, .edge-beetle, .edge-puffer { --edge-y: 25px; }
  .edge-centipede, .edge-axo { --edge-y: 21px; }
  .edge-squirrel { --edge-y: 4px; }
  .hero { min-height: auto; padding: 132px 0 70px; }
  .hero h1 { font-size: clamp(50px, 15vw, 78px); line-height: 1.02; letter-spacing: -.07em; }
  .hero h1 { white-space: normal; }
  .hero-line-mobile { display: block; white-space: nowrap; }
  .hero h1 br { display: none; }
  .hero-lead { margin-top: 25px; font-size: 17px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-stage {
    min-height: 452px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: 110px 112px 100px;
    gap: 16px 4px;
    padding: 78px 12px 18px;
  }
  .hero-stage .stage-pet {
    position: relative;
    inset: auto;
    max-width: 100%;
    margin: 0;
    place-self: center;
  }
  .hero-stage .stage-monkey { grid-column: 1; grid-row: 1; width: 104px; align-self: start; margin-top: -12px; }
  .stage-bat { grid-column: 2; grid-row: 1; width: 82px; }
  .stage-squirrel { grid-column: 3; grid-row: 1; width: 100px; }
  .stage-gecko { grid-column: 1; grid-row: 2; width: 102px; }
  .stage-axo { grid-column: 2; grid-row: 2; width: 106px; }
  .stage-puffer { grid-column: 3; grid-row: 2; width: 88px; }
  .stage-roach { grid-column: 1; grid-row: 3; width: 82px; }
  .stage-beetle { grid-column: 2; grid-row: 3; width: 88px; }
  .stage-centipede { grid-column: 3; grid-row: 3; width: 104px; }
  .screen-demo-section { padding: 78px 0 84px; }
  .screen-demo-shell { gap: 42px; }
  .screen-demo-copy h2 { max-width: 9em; font-size: clamp(42px, 13vw, 64px); }
  .screen-demo-copy > p:not(.screen-demo-label) { font-size: 17px; }
  .screen-demo-spec { margin-top: 28px; }
  .screen-demo-monitor { width: 100%; min-height: 180px; }
  .screen-demo-menubar { height: 34px; padding: 0 11px; }
  .screen-demo-edge { top: 33px; }
  .screen-demo-workspace { height: calc(100% - 34px); }
  .screen-demo-route { top: 26px; height: 64px; }
  .screen-demo-rider { width: 52px; }
  .screen-demo-rider-monkey { top: 4px; }
  .screen-demo-rider-gecko { top: 6px; width: 57px; }
  .screen-demo-rider-beetle { top: 6px; width: 52px; }
  .screen-demo-zoom { right: 9px; bottom: 9px; width: 112px; min-height: 82px; box-shadow: 4px 4px 0 #050505; }
  .screen-demo-zoom-label { padding: 5px 6px 4px; font-size: 8px; }
  .screen-demo-zoom-pet,
  .screen-demo-zoom .motion-pet { width: 78px; margin-top: -4px; }
  .screen-demo-status { left: 9px; bottom: 9px; gap: 7px; max-width: calc(100% - 142px); padding: 7px 9px; font-size: 9px; }
  .screen-demo-status strong { font-size: 11px; }
  .reaction-section, .animal-section, .appearance-section, .privacy-section, .download-section, .faq-section { padding-top: 92px; padding-bottom: 92px; }
  .section-intro, .animal-heading, .appearance-heading, .privacy-section, .download-heading, .faq-section { grid-template-columns: 1fr; gap: 28px; }
  .section-intro > p:last-child { grid-column: 1; }
  .section-intro h2, .animal-heading h2, .appearance-heading h2, .privacy-statement h2, .faq-heading h2 { font-size: clamp(44px, 13vw, 68px); }
  .download-heading h2 { font-size: clamp(31px, 10vw, 46px); line-height: 1.05; }
  .mobile-break { display: block; }
  .reaction-row { grid-template-columns: 1fr; gap: 22px; min-height: 0; padding: 34px 0; }
  .reaction-pet { justify-self: start; width: 132px; height: 84px; }
  .reaction-pet-scene { justify-self: stretch; width: 100%; }
  .reaction-roach { width: 132px; margin-left: 0; }
  .reaction-bat-scene {
    height: 112px;
    min-height: 112px;
    margin: 6px 0 0;
    border-top: 1px solid var(--ink);
  }
  .reaction-bat { top: -1.1px; right: auto; left: 0; }
  .animal-heading { padding-bottom: 48px; }
  .animal-runway-viewport { --runway-cell: 176px; }
  .animal-runway li { min-height: 220px; padding: 24px 16px 16px; }
  .animal-runway img { height: 145px; }
  .animal-runway .animal-monkey .motion-pet {
    width: calc(100% + 32px);
    height: auto;
    aspect-ratio: 82 / 52;
    margin: -10px -16px 0;
  }
  .appearance-section { padding-bottom: 0; }
  .appearance-heading { padding-bottom: 48px; }
  .appearance-strip { grid-template-columns: 1fr; width: calc(100% - 28px); min-height: 0; }
  .appearance-pane { min-height: 224px; padding: 20px 16px 22px; }
  .appearance-pane + .appearance-pane { border-top: 1px solid #090909; border-left: 0; }
  .appearance-mode { font-size: 18px; }
  .appearance-pets {
    width: 100%;
    min-width: 0;
    gap: 12px;
    padding-inline: 4px 14px;
  }
  .appearance-pets img:nth-child(1),
  .appearance-pets img:nth-child(2),
  .appearance-pets img:nth-child(3) { width: 100%; max-width: 100%; }
  .appearance-pets img:nth-child(3) { max-width: 100%; }
  .pricing-summary { grid-template-columns: 1fr; width: 100%; margin: 0 0 40px; }
  .pricing-item { min-height: 112px; padding: 21px 20px 22px; gap: 8px; }
  .pricing-item + .pricing-item { border-top: 1px solid var(--ink); border-left: 0; }
  .pricing-detail { font-size: 16px; }
  .privacy-section { display: grid; }
  .privacy-lead { font-size: 17px; }
  .privacy-facts { margin-top: 18px; }
  .privacy-facts div { grid-template-columns: 1fr; gap: 4px; }
  .privacy-pet { display: none; }
  .platform-row { grid-template-columns: 1fr; gap: 24px; padding: 34px 0; }
  .platform-row .button { grid-column: 1; width: 100%; }
  .faq-list summary { font-size: 16px; }
  .site-footer { grid-template-columns: 1fr; gap: 16px; padding: 30px 0; text-align: left; }
  .site-footer p { text-align: left; }
  .footer-status { justify-self: start; }
}

@media (max-width: 480px) {
  .language-gateway-brand { font-size: 20px; }
  .language-intro { padding-top: 116px; gap: 22px; }
  .language-phrase { font-size: clamp(38px, 12.5vw, 56px); line-height: 1; }
  .language-pet-row { min-height: 124px; }
  .language-pet-row img { height: 76px; }
  .language-intro-actions { align-items: stretch; flex-direction: column; gap: 8px; }
  .language-primary, .language-text-button { width: 100%; }
  .language-select { padding-top: 328px; }
  .language-select-heading h1 { font-size: clamp(38px, 11vw, 52px); }
  .language-options small { font-size: 16px; }
  .header-download { display: none; }
  .hero { padding-top: 112px; }
  .hero h1 { font-size: clamp(40px, 12.5vw, 50px); line-height: .99; letter-spacing: -.06em; }
  .hero-line-mobile { white-space: normal; }
  html:lang(fr) .hero h1,
  html:lang(de) .hero h1,
  html:lang(it) .hero h1 {
    max-width: 100%;
    font-size: clamp(36px, 10.7vw, 43px);
    letter-spacing: -.045em;
    overflow-wrap: anywhere;
  }
  .hero-lead { margin-top: 18px; font-size: 17px; line-height: 1.75; }
  .hero-actions { margin-top: 20px; }
  .hero-actions .button { min-height: 50px; }
}

@media (max-width: 360px) {
  .pricing-value:lang(en) { font-size: 29px; }
}

/* Browser zoom and OS text scaling can make a 360px device expose fewer than
   320 CSS pixels. Keep the gateway usable there instead of clipping the
   heading or the translated language labels off the right edge. */
@media (max-width: 320px) {
  .language-select-heading h1 {
    font-size: clamp(28px, 11vw, 34px);
    letter-spacing: -.04em;
  }
  .language-options button {
    grid-template-columns: minmax(0, 1fr);
    gap: 4px;
  }
  .language-options small {
    justify-self: start;
    font-size: 12px;
    white-space: normal;
  }
}

@media (max-width: 640px) and (max-height: 700px) {
  .language-gateway {
    padding: max(12px, env(safe-area-inset-top)) max(14px, env(safe-area-inset-right)) max(12px, env(safe-area-inset-bottom)) max(14px, env(safe-area-inset-left));
  }
  .language-gateway-brand { font-size: 18px; }
  .language-gateway-brand img { width: 32px; height: 32px; }
  .language-select { gap: 16px; padding: 224px 0 18px; }
  .language-select-heading h1 { margin-top: 8px; font-size: clamp(32px, 10vw, 42px); line-height: 1; }
  .language-select-heading > p:last-child { margin-top: 10px; font-size: 14px; line-height: 1.55; }
  .language-options button { min-height: 52px; padding: 8px 4px; }
  .language-options span { font-size: 22px; }
  .language-options small { font-size: 12px; }
  .micro-stream-a { top: 52px; }
  .micro-stream-b { top: 104px; bottom: auto; display: flex; }
  .micro-stream-c { top: 156px; bottom: auto; display: flex; }
  .micro-sequence span { flex-basis: 66px; width: 66px; height: 46px; }
  .micro-sequence img { height: 43px; }
  .micro-sequence .motion-pet { height: 43px; }
}

@media (orientation: landscape) and (max-height: 520px) {
  .language-gateway {
    padding: max(10px, env(safe-area-inset-top)) max(18px, env(safe-area-inset-right)) max(10px, env(safe-area-inset-bottom)) max(18px, env(safe-area-inset-left));
  }
  .language-gateway-brand { font-size: 18px; }
  .language-gateway-brand img { width: 30px; height: 30px; }
  .language-select { grid-template-columns: minmax(180px, .7fr) minmax(360px, 1.3fr); gap: 16px; padding: 8px 0 2px; }
  .language-select-heading h1 { margin-top: 8px; font-size: clamp(30px, 5vw, 42px); }
  .language-select-heading > p:last-child { margin-top: 10px; font-size: 13px; line-height: 1.45; }
  .language-options button { min-height: 42px; padding: 3px 4px; }
  .language-options span { font-size: 21px; }
  .language-options small { font-size: 11px; }
  .micro-stream-a { top: 46px; }
  .micro-stream-b, .micro-stream-c { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  img[src$="pufferfish.svg"] {
    content: url("assets/pets/pufferfish-static.svg");
  }

  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .edge-track { transform: none; }
  .edge-sequence-copy { display: none; }
  .micro-stream { position: static; display: flex; transform: none; animation: none; }
  .language-menagerie { display: grid; align-content: start; gap: 4px; padding-top: 68px; padding-bottom: 0; }
  .micro-sequence-copy { display: none; }
  .micro-sequence { min-width: 100%; justify-content: space-around; gap: 8px; }
  .animal-runway-track { transform: none; animation: none !important; }
  .animal-runway-copy { display: none; }
  .animal-runway-viewport { overflow-x: auto; }
  .screen-demo-track { width: 100%; transform: none; animation: none !important; }
  .screen-demo-pack { flex-basis: 100%; }
  .screen-demo-pack + .screen-demo-pack { display: none; }
  .appearance-pets, .appearance-pets img { transform: none; animation: none; }
  .language-page, .language-copy, .language-options button { transform: none; }
  .language-pet-row span { animation: none; }
  .reaction-hide-scene.is-retreating .reaction-roach {
    animation: none !important;
    opacity: 0;
  }
}

@media (min-width: 761px) and (max-height: 820px) {
  .micro-stream-a { top: 62px; }
  .micro-stream-b,
  .micro-stream-c { display: none; }
}

.motion-dropping-mark {
  opacity: 0;
  pointer-events: none;
  transform-box: fill-box;
  transform-origin: center;
}

.motion-dropping-mark.is-active {
  animation: motion-rare-dropping 1.4s cubic-bezier(.28, .02, .52, 1) both;
}

@keyframes motion-rare-dropping {
  0%, 12% { opacity: 0; transform: translateY(-1px) scale(.25); }
  20% { opacity: 1; transform: translateY(0) scale(1.04); }
  68% { opacity: 1; transform: translateY(8px) rotate(8deg) scale(1); }
  84% { opacity: .9; transform: translateY(11px) rotate(-4deg) scale(1, .9); }
  100% { opacity: 0; transform: translateY(13px) rotate(0) scale(1.08, .68); }
}

@media (prefers-reduced-motion: reduce) {
  .motion-dropping-mark,
  .motion-dropping-mark.is-active { animation: none !important; opacity: 0; }
}
