:root {
  --studio: #f4f6f7;
  --paper: #ffffff;
  --ink: #111214;
  --muted: #5c626a;
  --line: #d4d8dc;
  --sky: #8ed8ff;
  --sky-deep: #086d9f;
  --command: #0b0c0e;
  --command-panel: #14161a;
  --command-elevated: #1b1e23;
  --command-ink: #f2f3f5;
  --command-muted: #aeb3bc;
  --vermilion: #f2542d;
  --vermilion-light: #ff7a52;
  --focus: #1479ad;
  --stage-radius: clamp(1.4rem, 3.8vw, 3.4rem);
  --page-gutter: clamp(1rem, 4vw, 4rem);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 1.5rem;
}

body {
  margin: 0;
  background: var(--studio);
  color: var(--ink);
  font-family: "Avenir Next", Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-180%);
  transition: transform 160ms var(--ease-out);
}

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

.site-header {
  width: min(100%, 100rem);
  margin: 0 auto;
  padding: 1.25rem var(--page-gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 2.75rem;
  aspect-ratio: 1;
  border-radius: 0.68rem;
  background: var(--ink);
  color: var(--paper);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-mark > span {
  position: absolute;
  top: 0.42rem;
  right: 0.42rem;
  width: 0.38rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--vermilion);
}

.brand-name {
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2.4rem);
  font-size: 0.9rem;
  font-weight: 600;
}

.site-nav a {
  min-width: 2.75rem;
  min-height: 2.75rem;
  padding: 0.55rem 0.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.site-nav a:hover {
  border-bottom-color: currentColor;
}

.intro {
  width: min(calc(100% - (2 * var(--page-gutter))), 92rem);
  min-height: calc(100svh - 6rem);
  margin: 0 auto;
  padding: clamp(3.5rem, 8vw, 8.5rem) 0 clamp(4rem, 7vw, 7rem);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(28rem, 1.1fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 8rem);
}

.intro-copy {
  position: relative;
  z-index: 1;
}

.company-line {
  margin: 0 0 1.35rem;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.intro h1,
.company-heading h2,
.not-found-main h1 {
  margin: 0;
  max-width: 10ch;
  font-size: clamp(3.5rem, 7.6vw, 6rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.intro h1 span {
  color: var(--sky-deep);
}

.intro-summary {
  max-width: 36rem;
  margin: 2rem 0 0;
  color: #3f454c;
  font-size: clamp(1.05rem, 1.65vw, 1.35rem);
  line-height: 1.5;
}

.intro-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.35rem;
  margin-top: 2rem;
}

.button {
  min-height: 3.25rem;
  padding: 0.82rem 1.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  border-radius: 0.8rem;
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition:
    transform 180ms var(--ease-out),
    background-color 180ms var(--ease-out),
    color 180ms var(--ease-out);
}

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

.button:active {
  transform: translateY(0);
}

.button-dark {
  background: var(--ink);
  color: var(--paper);
}

.button-dark:hover {
  background: #2a2d31;
}

.button-light {
  background: var(--paper);
  color: var(--ink);
}

.button-light:hover {
  background: #e8f7ff;
}

.button-command {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: var(--command-elevated);
  color: var(--command-ink);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.button-command:hover {
  background: #242831;
}

.text-link {
  min-height: 2.75rem;
  padding: 0.6rem 0.15rem;
  display: inline-flex;
  align-items: center;
  font-size: 0.94rem;
  font-weight: 700;
}

.release-board {
  min-height: 36rem;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(12rem, 0.82fr);
  grid-template-rows: 1fr;
  gap: clamp(0.75rem, 1.4vw, 1.2rem);
  transform: rotate(1.4deg);
  transform-origin: center;
}

.release-tile {
  position: relative;
  min-height: 100%;
  padding: clamp(1.25rem, 2.5vw, 2rem);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-radius: clamp(1.35rem, 2.3vw, 2.25rem);
  color: white;
  text-decoration: none;
  isolation: isolate;
  box-shadow: 0 1.25rem 3.5rem rgba(17, 18, 20, 0.14);
  transition:
    transform 180ms var(--ease-out),
    box-shadow 180ms var(--ease-out);
}

.release-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: inherit;
  pointer-events: none;
}

.release-tile > picture {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.release-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (hover: hover) {
  .release-tile:hover {
    transform: translateY(-0.2rem);
    box-shadow: 0 1.5rem 4rem rgba(17, 18, 20, 0.18);
  }
}

.release-tile:active {
  transform: translateY(0);
}

.release-tile-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(7, 13, 25, 0.02) 30%, rgba(7, 13, 25, 0.88) 100%);
}

.release-ordivum {
  background: var(--command);
}

.release-tile-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.55rem;
}

.release-tile-copy strong {
  font-size: clamp(2rem, 3.8vw, 3.6rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.release-tile-copy > span:last-child {
  max-width: 17rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.92rem;
}

.release-state {
  color: rgba(255, 255, 255, 0.78);
  font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 0.66rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ordivum-orbit {
  position: absolute;
  top: clamp(2rem, 5vw, 4rem);
  left: 50%;
  width: min(70%, 16rem);
  aspect-ratio: 1;
  border: clamp(1.15rem, 2.2vw, 1.85rem) solid #f2f3f5;
  border-radius: 50%;
  transform: translateX(-50%);
}

.ordivum-orbit i {
  position: absolute;
  top: -1.8rem;
  right: 8%;
  width: clamp(2rem, 4vw, 3.4rem);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--vermilion);
}

.studio-strip {
  margin: 0;
  padding: 1.05rem var(--page-gutter);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.5rem, 7vw, 7rem);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: #444a51;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  list-style: none;
  text-align: center;
  text-transform: uppercase;
}

.work-stack {
  width: min(calc(100% - (2 * var(--page-gutter))), 100rem);
  margin: 0 auto;
  padding: clamp(4rem, 7vw, 7rem) 0;
  display: grid;
  gap: clamp(1.5rem, 3vw, 3rem);
}

.product-stage {
  position: relative;
  min-height: min(55rem, calc(100svh - 3rem));
  overflow: hidden;
  border-radius: var(--stage-radius);
}

.product-stage-inner {
  position: relative;
  z-index: 2;
  min-height: inherit;
  padding: clamp(2rem, 6vw, 6rem);
}

.animativity-stage {
  background: #0b1b32;
  color: white;
}

.animativity-stage > picture {
  position: absolute;
  inset: 0;
}

.animativity-backdrop,
.animativity-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.animativity-backdrop {
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
}

.animativity-scrim {
  background:
    linear-gradient(90deg, rgba(4, 10, 24, 0.91) 0%, rgba(4, 10, 24, 0.64) 43%, rgba(4, 10, 24, 0.04) 78%),
    linear-gradient(0deg, rgba(4, 10, 24, 0.55), transparent 45%);
}

.animativity-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}

.product-identity {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.product-icon {
  width: clamp(4.5rem, 8vw, 6.5rem);
  height: auto;
  flex: 0 0 auto;
}

.animativity-icon {
  filter: drop-shadow(0 0.7rem 1.4rem rgba(4, 10, 24, 0.22));
}

.product-status {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: rgba(255, 255, 255, 0.82);
  font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 0.69rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-status > span {
  width: 0.48rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--sky);
}

.product-copy {
  width: 100%;
  min-width: 0;
  max-width: 39rem;
}

.product-copy h2 {
  margin: 0 0 1rem;
  font-size: clamp(3.7rem, 8vw, 6rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
  overflow-wrap: anywhere;
}

.product-copy > p:not(.product-lead) {
  max-width: 38rem;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.45vw, 1.18rem);
}

.product-lead {
  margin: 0;
  font-size: clamp(1.25rem, 2.3vw, 2rem);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.product-facts {
  margin: 2rem 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  list-style: none;
}

.product-facts li {
  padding: 0.52rem 0.72rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 0.7rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.76rem;
  font-weight: 700;
}

.ordivum-stage {
  background: var(--command);
  color: var(--command-ink);
}

.ordivum-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(29rem, 1.22fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
}

.ordivum-copy {
  max-width: 37rem;
}

.ordivum-copy .product-identity {
  margin-bottom: clamp(3.5rem, 8vw, 7rem);
}

.ordivum-status {
  color: var(--command-muted);
}

.ordivum-status > span {
  background: var(--vermilion);
}

.ordivum-copy > p:not(.product-lead) {
  color: var(--command-muted);
}

.ordivum-facts li {
  border-color: rgba(255, 255, 255, 0.13);
  color: #d9dce1;
}

.command-preview {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1rem;
  background: var(--command-panel);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    1.6rem 2rem 4.5rem rgba(0, 0, 0, 0.34);
  transform: rotate(1.8deg);
}

.command-preview::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 0.28rem;
  background: var(--vermilion);
}

.command-header,
.command-progress,
.command-footer {
  padding: clamp(1.25rem, 2.5vw, 2rem);
}

.command-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.command-header > div {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.command-header strong {
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  letter-spacing: -0.03em;
}

.command-kicker,
.command-progress span,
.command-footer,
.live-state {
  color: #9096a0;
  font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 0.66rem;
  letter-spacing: 0.06em;
}

.live-state {
  display: inline-flex;
  align-items: center;
  gap: 0.48rem;
  color: var(--vermilion-light);
}

.live-state i {
  width: 0.48rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--vermilion);
}

.command-progress strong {
  margin-top: 0.4rem;
  display: block;
  font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: clamp(2.7rem, 5vw, 4.5rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.command-progress strong small {
  color: #9ca2ab;
  font-size: 0.25em;
  font-weight: 500;
  letter-spacing: 0;
}

.progress-track {
  height: 0.24rem;
  margin-top: 1.35rem;
  overflow: hidden;
  background: #2a2d33;
}

.progress-track span {
  display: block;
  width: 67%;
  height: 100%;
  background: var(--vermilion);
}

.command-list {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.command-row {
  min-height: 5rem;
  padding: 1rem clamp(1.25rem, 2.5vw, 2rem);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.command-row:last-child {
  border-bottom: 0;
}

.command-row.current {
  background: rgba(242, 84, 45, 0.08);
}

.set-state {
  display: grid;
  place-items: center;
  width: 1.8rem;
  aspect-ratio: 1;
  border: 1px solid #626873;
  border-radius: 0.36rem;
  color: #b9bec6;
  font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 0.72rem;
}

.complete .set-state {
  border-color: var(--vermilion);
  background: var(--vermilion);
  color: #170501;
}

.current .set-state {
  border-color: var(--vermilion);
  color: var(--vermilion-light);
}

.command-row > span:nth-child(2) {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.command-row strong {
  overflow: hidden;
  font-size: 0.92rem;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.command-row small {
  margin-top: 0.12rem;
  color: #858b94;
  font-size: 0.72rem;
}

.command-row b {
  color: #d5d8dd;
  font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
}

.command-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  text-transform: uppercase;
}

.company-section {
  width: min(calc(100% - (2 * var(--page-gutter))), 88rem);
  margin: 0 auto;
  padding: clamp(5rem, 10vw, 10rem) 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.75fr);
  gap: clamp(3rem, 10vw, 10rem);
  align-items: end;
}

.company-heading h2 {
  max-width: 11ch;
  font-size: clamp(3.3rem, 7vw, 5.8rem);
}

.company-body {
  padding-bottom: 0.35rem;
}

.company-body p {
  max-width: 37rem;
  margin: 0 0 2rem;
  color: #454b53;
  font-size: clamp(1.05rem, 1.65vw, 1.32rem);
}

.site-footer {
  padding: clamp(3rem, 6vw, 5rem) var(--page-gutter) 1.5rem;
  background: var(--ink);
  color: var(--paper);
}

.footer-top,
.footer-links,
.legal-line {
  width: min(100%, 88rem);
  margin-right: auto;
  margin-left: auto;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: clamp(3rem, 7vw, 6rem);
}

.footer-top > p {
  margin: 0;
  color: #bdc2c8;
  font-size: clamp(1rem, 2vw, 1.4rem);
}

.brand-mark-light {
  background: var(--paper);
  color: var(--ink);
}

.footer-links {
  padding: 1.25rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-links a {
  min-width: 2.75rem;
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  color: #e2e5e8;
  font-size: 0.88rem;
  font-weight: 600;
}

.footer-links a:hover {
  color: var(--paper);
}

.legal-line {
  padding-top: 1.4rem;
  display: grid;
  grid-template-columns: auto auto minmax(18rem, 1fr);
  gap: 1rem 2.5rem;
  color: #aeb4bb;
  font-size: 0.72rem;
}

.legal-line p {
  margin: 0;
}

.legal-line p:last-child {
  text-align: right;
}

.legal-page {
  background: var(--studio);
}

.legal-layout {
  width: min(calc(100% - (2 * var(--page-gutter))), 82rem);
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 8rem) 0 clamp(6rem, 10vw, 10rem);
  display: grid;
  grid-template-columns: minmax(16rem, 0.62fr) minmax(0, 1fr);
  gap: clamp(3rem, 9vw, 9rem);
  align-items: start;
}

.legal-aside {
  position: sticky;
  top: 2rem;
}

.legal-aside h1 {
  margin: 0;
  font-size: clamp(3.8rem, 7vw, 6rem);
  line-height: 0.93;
  letter-spacing: -0.04em;
}

.legal-aside > p:last-child {
  margin: 1.5rem 0 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.legal-content {
  max-width: 44rem;
}

.legal-lead {
  margin: 0 0 4rem;
  font-size: clamp(1.3rem, 2vw, 1.65rem);
  line-height: 1.45;
  letter-spacing: -0.02em;
}

.legal-content h2 {
  margin: 3.25rem 0 0.8rem;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.legal-content p {
  margin: 0.8rem 0;
  color: #474d55;
}

.legal-content a {
  font-weight: 600;
}

.legal-footer {
  padding-top: 1.5rem;
}

.not-found-page {
  min-height: 100svh;
  display: grid;
  grid-template-rows: auto 1fr;
}

.not-found-main {
  width: min(calc(100% - (2 * var(--page-gutter))), 70rem);
  margin: 0 auto;
  padding: clamp(5rem, 12vw, 10rem) 0;
  align-self: center;
}

.not-found-main h1 {
  max-width: 12ch;
}

.not-found-main > p:not(.company-line) {
  max-width: 35rem;
  margin: 2rem 0;
  color: var(--muted);
  font-size: 1.15rem;
}

@media (prefers-reduced-motion: no-preference) {
  .animativity-backdrop {
    animation: spatial-drift 18s ease-in-out infinite alternate;
  }

  @keyframes spatial-drift {
    from {
      transform: scale(1.02) translate3d(-0.25%, 0, 0);
    }
    to {
      transform: scale(1.045) translate3d(0.45%, -0.3%, 0);
    }
  }
}

@media (max-width: 68rem) {
  .intro {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .intro-copy {
    max-width: 48rem;
  }

  .release-board {
    min-height: 32rem;
    transform: none;
  }

  .ordivum-layout {
    grid-template-columns: 1fr;
  }

  .ordivum-copy {
    max-width: 45rem;
  }

  .ordivum-copy .product-identity {
    margin-bottom: 3rem;
  }

  .command-preview {
    width: min(100%, 48rem);
    margin: 0 auto;
    transform: none;
  }

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

  .company-body {
    max-width: 43rem;
  }
}

@media (max-width: 47rem) {
  .site-header {
    align-items: flex-start;
  }

  .site-nav {
    gap: 1rem;
  }

  .intro {
    padding-top: 3.5rem;
  }

  .release-board {
    min-height: 42rem;
    grid-template-columns: 1fr;
    grid-template-rows: 1.15fr 0.85fr;
  }

  .ordivum-orbit {
    top: 50%;
    left: auto;
    right: 2rem;
    width: 8.5rem;
    border-width: 1rem;
    transform: translateY(-50%);
  }

  .ordivum-orbit i {
    top: -1.35rem;
    width: 2.2rem;
  }

  .studio-strip {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.55rem 1.4rem;
    white-space: normal;
  }

  .product-stage {
    min-height: auto;
  }

  .product-stage-inner {
    min-height: 46rem;
  }

  .animativity-backdrop {
    object-position: 63% center;
  }

  .animativity-scrim {
    background:
      linear-gradient(0deg, rgba(4, 10, 24, 0.94) 0%, rgba(4, 10, 24, 0.54) 72%, rgba(4, 10, 24, 0.12) 100%);
  }

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

  .ordivum-layout {
    padding-bottom: 2rem;
  }

  .command-preview {
    font-size: 0.92rem;
  }

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

  .command-row b {
    grid-column: 2;
    margin-top: -0.6rem;
    color: #aeb4bc;
  }

  .command-footer {
    flex-direction: column;
  }

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

  .legal-line {
    grid-template-columns: 1fr;
  }

  .legal-line p:last-child {
    text-align: left;
  }

  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-aside {
    position: static;
  }
}

@media (max-width: 25rem) {
  .brand-name {
    display: none;
  }

  .site-nav {
    font-size: 0.82rem;
  }

  .intro h1,
  .company-heading h2,
  .not-found-main h1 {
    font-size: clamp(3rem, 16vw, 4rem);
  }

  .product-copy h2 {
    font-size: clamp(2.65rem, 13.5vw, 3.35rem);
  }

  .product-stage-inner {
    padding: 1.5rem;
  }

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

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

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