:root {
  --black: #070707;
  --white: #ffffff;
  --acid: #c5ffae;
}

@font-face {
  font-family: "F37 Moon";
  src: url("assets/fonts/F37MoonTrial-Regular.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "F37 Moon";
  src: url("assets/fonts/F37MoonTrial-Bold.otf") format("opentype");
  font-style: normal;
  font-weight: 900;
  font-display: swap;
}

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

@font-face {
  font-family: "Saans Mono";
  src: url("assets/fonts/SaansMono-TRIAL-Medium.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--black);
  color: var(--white);
  font-family:
    "Saans Mono",
    "Roboto Mono",
    "SFMono-Regular",
    Consolas,
    "Liberation Mono",
    monospace;
  /* clip, not hidden: overflow-x hidden turns html/body into scroll
     containers, which disables position: sticky everywhere on the page. */
  overflow-x: clip;
}

body {
  margin: 0;
  overflow-x: clip;
}

button {
  font: inherit;
}

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

.site-menu {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.5rem;
  color: var(--black);
  font-size: 0.75rem;
  line-height: 1;
  pointer-events: none;
}

.site-menu__status,
.site-menu__actions,
.site-menu__nav,
.site-menu__icon {
  pointer-events: auto;
}

.site-menu__status {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  min-width: 5rem;
  font-family:
    "Saans Mono",
    "Roboto Mono",
    "SFMono-Regular",
    Consolas,
    monospace;
  font-size: 0.75rem;
  font-weight: 500;
  white-space: nowrap;
}

.site-menu__dot {
  width: 0.25rem;
  height: 0.25rem;
  border-radius: 50%;
  background: currentColor;
}

.site-menu__actions {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.site-menu__nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 4.875rem;
  min-width: 0;
  height: 3.375rem;
  overflow: hidden;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: inset 0 -1px 4px rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: width 180ms ease;
}

.site-menu.is-menu-open .site-menu__nav {
  width: min(40.7vw, 36.625rem);
  min-width: 28rem;
}

.site-menu__nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-width: 0;
  padding: 0 1.125rem;
  opacity: 0;
  pointer-events: none;
  color: currentColor;
  font-family:
    "Saans Mono",
    "Roboto Mono",
    "SFMono-Regular",
    Consolas,
    monospace;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.site-menu__label-preview {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family:
    "Saans Mono",
    "Roboto Mono",
    "SFMono-Regular",
    Consolas,
    monospace;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  pointer-events: none;
  transition: opacity 120ms ease;
}

.site-menu.is-menu-open .site-menu__label-preview {
  opacity: 0;
  visibility: hidden;
}

.site-menu.is-menu-open .site-menu__nav a {
  flex: 1 1 auto;
  order: 0;
  opacity: 1;
  pointer-events: auto;
}

.site-menu__icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.375rem;
  height: 3.375rem;
  padding: 0;
  border: 0;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: inset 0 -1px 4px rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  cursor: pointer;
}

.site-menu__mark {
  position: relative;
  display: block;
  width: 10.65px;
  height: 9.77px;
}

.site-menu__mark span {
  position: absolute;
  width: 3.4px;
  height: 3.4px;
  min-width: 3.4px;
  min-height: 3.4px;
  border-radius: 50%;
  background: currentColor;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.site-menu__mark span:nth-child(1) {
  top: 0;
  left: 3.63px;
}

.site-menu__mark span:nth-child(2) {
  top: 6.37px;
  left: 0;
}

.site-menu__mark span:nth-child(3) {
  top: 6.37px;
  left: 7.25px;
}

.site-menu.is-dot-swapping .site-menu__mark span:nth-child(1) {
  animation: dotSwapTop 620ms cubic-bezier(0.45, 0, 0.2, 1) 1 both;
}

.site-menu.is-dot-swapping .site-menu__mark span:nth-child(2) {
  animation: dotSwapLeft 620ms cubic-bezier(0.45, 0, 0.2, 1) 1 both;
}

.site-menu.is-dot-swapping .site-menu__mark span:nth-child(3) {
  animation: dotSwapRight 620ms cubic-bezier(0.45, 0, 0.2, 1) 1 both;
}

@keyframes dotSwapTop {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(3.62px, 6.37px, 0);
  }
}

@keyframes dotSwapLeft {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(3.63px, -6.37px, 0);
  }
}

@keyframes dotSwapRight {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(-7.25px, 0, 0);
  }
}

.site-menu a:focus-visible,
.site-menu button:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: -6px;
}

.home-page {
  min-height: 100%;
  background: #f4f4f4;
}

.home-main {
  background: #f4f4f4;
}

.home-sequence {
  position: relative;
  min-height: 115svh;
  overflow: clip;
  background: #f4f4f4;
}

.home-intro,
.home-system {
  position: sticky;
  top: 0;
  width: 100%;
  min-height: 100svh;
}

.home-intro {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 9, 20, 0.18), rgba(0, 0, 0, 0), rgba(5, 9, 20, 0.18)),
    url("assets/home-intro-bg.png") center / cover no-repeat;
}

.home-intro__text {
  position: sticky;
  top: 0;
  z-index: 3;
  min-height: 100svh;
  margin-top: -100svh;
  color: var(--white);
  font-family:
    "Saans Mono",
    "Roboto Mono",
    "SFMono-Regular",
    Consolas,
    monospace;
  font-weight: 500;
  pointer-events: none;
}

.home-intro__edge,
.home-intro__question {
  position: absolute;
  top: 48.98%;
  right: clamp(1.25rem, 1.16vw, 1.25rem);
  left: clamp(1.25rem, 1.16vw, 1.25rem);
  margin: 0;
  font-size: clamp(0.875rem, 1.0417vw, 1.125rem);
  line-height: 1.25;
  text-transform: none;
}

.home-intro__edge {
  display: flex;
  justify-content: space-between;
  font-size: clamp(0.75rem, 0.81vw, 0.875rem);
  opacity: 0;
  animation: home-edge-in 700ms ease forwards;
  animation-delay: 200ms;
}

.home-intro__question {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  font-size: clamp(0.875rem, 1.0417vw, 1.125rem);
}

.home-letters {
  margin-left: 40.17%;
  white-space: nowrap;
}

.home-letters:last-child {
  justify-self: start;
  margin-right: 0;
  margin-left: 36.73%;
}

.home-letter {
  display: inline-block;
  opacity: 0;
  transform-origin: 50% 70%;
}

.home-letter.is-home-letter-visible {
  opacity: 1;
}

.home-letter.is-home-letter-glitching {
  animation: home-letter-glitch 110ms steps(2, end) infinite;
}

.home-letter-space {
  display: inline-block;
  width: 0.58em;
}

.home-symbols {
  position: sticky;
  top: 0;
  z-index: 2;
  min-height: 100svh;
  margin-top: -100svh;
  color: var(--acid);
  font-family:
    "Sudo Var",
    "Saans Mono",
    "Roboto Mono",
    "SFMono-Regular",
    Consolas,
    monospace;
  font-size: clamp(0.5rem, 0.694vw, 0.75rem);
  font-weight: 400;
  line-height: 1;
  pointer-events: none;
}

.home-symbols span {
  position: absolute;
  top: var(--y);
  left: var(--x);
  width: min-content;
  white-space: pre;
  transform: scaleX(0.74);
  transform-origin: top left;
}

.home-symbols i {
  display: inline-block;
  font-style: normal;
  opacity: 0;
  transform: translate3d(
    calc(var(--symbol-tx, 0) + var(--symbol-enter-x, 0)),
    calc(var(--symbol-ty, 0) + var(--symbol-enter-y, 0.65rem)),
    0
  );
  transition:
    opacity 80ms linear,
    transform 140ms steps(2, end);
}

.home-symbols i.is-symbol-active {
  opacity: 1;
  transform: translate3d(var(--symbol-tx, 0), var(--symbol-ty, 0), 0);
}

.home-symbols i.is-symbol-glitching {
  animation: home-letter-glitch 110ms steps(2, end) infinite;
}

.home-system {
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin-top: -100svh;
  padding: clamp(2.5rem, 3.7vw, 4rem);
  background: #f4f4f4;
  color: var(--black);
  font-family:
    "Saans Mono",
    "Roboto Mono",
    "SFMono-Regular",
    Consolas,
    monospace;
  font-size: clamp(0.75rem, 0.93vw, 1rem);
  font-weight: 500;
  line-height: 1.25;
  transform: translateY(100%);
  animation: home-system-in 1.6s cubic-bezier(0.62, 0.05, 0, 1) forwards;
  animation-delay: 2.2s;
}

.home-system__mark {
  position: absolute;
  top: 39.98%;
  left: 50%;
  width: clamp(3.25rem, 4.99vw, 5.4rem);
  height: auto;
  transform: translate(-50%, -50%);
}

.home-system__readout {
  display: grid;
  grid-template-columns: 20.875% 23.5% 18.1875% 17.4375%;
  column-gap: 6.6667%;
  width: 100%;
  max-width: 100rem;
  margin: 0 auto 4rem;
}

.home-system__readout div,
.home-system__footer {
  min-width: 0;
}

.home-system__readout p,
.home-system__footer p {
  margin: 0;
}

.home-system__readout div {
  text-align: right;
}

.home-system__readout div:first-child {
  justify-self: start;
  width: max-content;
  max-width: 100%;
}

.home-system__footer {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 100rem;
  margin: 0 auto;
}

.home-reacts {
  min-height: auto;
  background: var(--black);
}

.reveal__inner.home-reacts__inner {
  align-items: flex-start;
  justify-content: flex-start;
  padding: 6.5rem clamp(1.25rem, 3.7vw, 4rem) 9.75rem;
}

.home-reacts__text {
  width: min(100%, 97rem);
  font-family:
    "F37 Moon",
    "Helvetica Neue",
    Arial,
    sans-serif;
  font-size: clamp(2.25rem, 3.125vw, 3.375rem);
  font-weight: 700;
  line-height: 1.185185;
  text-align: left;
}

.home-reacts__text .reveal__indent {
  display: inline-block;
  width: min(8.51vw, 9.1875rem);
}

.home-product {
  display: grid;
  grid-template-columns: minmax(18rem, 28.75rem) minmax(20rem, 36rem) minmax(17rem, 26.5rem);
  grid-template-rows: auto 1fr;
  align-items: start;
  column-gap: clamp(2rem, 4.7vw, 5.25rem);
  min-height: auto;
  padding: 0 clamp(1.25rem, 3.7vw, 4rem) 7.625rem;
  background: var(--black);
  color: var(--white);
}

.home-product__tags {
  display: flex;
  grid-column: 1;
  grid-row: 1;
  align-self: start;
  flex-wrap: wrap;
  gap: 0.625rem 0.75rem;
  max-width: 24.75rem;
}

.home-product__tags span {
  display: inline-flex;
  align-items: center;
  min-height: 2.25rem;
  padding: 0.625rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0.4375rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.06);
  box-shadow:
    inset 0 0 12px rgba(255, 255, 255, 0.12),
    0 0 12px rgba(255, 255, 255, 0.08);
  color: var(--acid);
  font-family:
    "Saans Mono",
    "Roboto Mono",
    "SFMono-Regular",
    Consolas,
    monospace;
  font-size: clamp(0.6875rem, 0.78vw, 0.8125rem);
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}

.home-product__figure {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: start;
  justify-self: center;
  width: min(100%, 36rem);
  margin: 0;
  perspective: 80rem;
}

.home-product__figure img {
  width: 100%;
  height: auto;
  clip-path: inset(3% 6.4% 3% 5% round 0.5rem);
  transform-origin: 50% 50%;
  transform-style: preserve-3d;
  animation: home-product-spin 14s linear infinite;
}

@keyframes home-product-spin {
  to {
    transform: rotateY(360deg);
  }
}

.home-product__copy {
  grid-column: 3;
  grid-row: 2;
  align-self: end;
  display: grid;
  gap: 4rem;
  padding-bottom: 0;
}

.home-product__copy p {
  width: 100%;
  max-width: 26.5rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-family:
    "Saans Mono",
    "Roboto Mono",
    "SFMono-Regular",
    Consolas,
    monospace;
  font-size: clamp(0.875rem, 1.04vw, 1.125rem);
  font-weight: 500;
  line-height: 1.22;
}

.home-product__copy a {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  color: var(--white);
  font-family:
    "Saans Mono",
    "Roboto Mono",
    "SFMono-Regular",
    Consolas,
    monospace;
  font-size: clamp(1rem, 1.25vw, 1.375rem);
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
}

.home-product__copy a:hover,
.home-product__copy a:focus-visible {
  color: var(--acid);
}

.home-process {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: auto auto auto;
  column-gap: clamp(1.5rem, 3.7vw, 4rem);
  row-gap: clamp(2rem, 2.546vw, 2.75rem);
  min-height: 100svh;
  padding: clamp(5rem, 7.06vw, 7.625rem) clamp(1.25rem, 3.7vw, 4rem);
  background: #f1f0ef;
  color: var(--black);
  font-family:
    "Saans Mono",
    "Roboto Mono",
    "SFMono-Regular",
    Consolas,
    monospace;
  font-weight: 500;
}

.home-process__item {
  display: grid;
  grid-template-columns: 1fr;
  align-content: start;
  min-width: 0;
}

.home-process__item--detection {
  grid-column: 1 / 4;
  grid-template-columns: 34.625% minmax(0, 1fr) clamp(17.25rem, 21%, 21.5rem);
  column-gap: 1.5%;
}

.home-process__item--encoding {
  grid-column: 1 / 4;
  grid-template-columns: minmax(0, 1fr) 22.25% 34.625%;
  column-gap: 1.5%;
}

.home-process__item--capture {
  grid-column: 1 / 4;
  grid-template-columns: 34.625% minmax(0, 1fr) 20.1875%;
  column-gap: 1.5%;
}

.home-process__visual {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  margin: 0;
  overflow: hidden;
  border-radius: 0.5rem;
  background: #f1f0ef;
}

.home-process__item--encoding .home-process__visual {
  grid-column: 3;
}

.home-process__item--capture .home-process__visual {
  grid-column: 1;
}

.home-process__visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-process__visual img + img {
  position: absolute;
  inset: 0;
  z-index: 2;
  height: 100%;
  opacity: 0;
  object-fit: cover;
  transition: opacity 1200ms cubic-bezier(0.22, 1, 0.36, 1);
}

.home-process__visual.has-character-reveal > img:first-child {
  visibility: hidden;
}

.home-process__character-reveal {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
}

.home-process__item.is-process-active .home-process__visual img + img {
  opacity: 1;
}

.home-process__item h2,
.home-process__item p {
  margin: 0;
  font-size: clamp(0.875rem, 1.0417vw, 1.125rem);
  line-height: 1.2222;
}

.home-process__item h2 {
  grid-column: 2;
  align-self: start;
}

.home-process__item p {
  grid-column: 3;
  max-width: 24rem;
  align-self: start;
}

.home-process__item--encoding h2 {
  grid-column: 1;
  grid-row: 1;
  align-self: start;
}

.home-process__item--encoding p {
  grid-column: 2;
  grid-row: 1;
  align-self: start;
}

.home-process__item--capture p {
  grid-column: 3;
}

.home-memory-transition {
  position: relative;
  z-index: 2;
  min-height: 200svh;
  background: #070707;
}

.home-memory-transition__stage {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
  background: #070707;
}

.home-memory {
  position: absolute;
  inset: 0;
  z-index: 1;
  min-height: 100%;
  background: #070707;
  color: rgba(255, 255, 255, 0.5);
}

.home-memory .home-memory__inner {
  align-items: flex-start;
  justify-content: flex-start;
  height: 100%;
  padding: clamp(5rem, 7.06vw, 7.625rem) clamp(1.25rem, 3.7vw, 4rem);
}

.home-memory__text {
  width: 100%;
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-family:
    "F37 Moon",
    "Arial Black",
    "Helvetica Neue",
    Arial,
    sans-serif;
  font-size: clamp(2rem, 3.125vw, 3.375rem);
  font-weight: 900;
  line-height: 1.185185;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  overflow-wrap: break-word;
  white-space: normal;
}

.home-memory__text .reveal__char {
  color: rgba(255, 255, 255, 0.5);
}

.home-memory__text .reveal__char.is-active {
  color: var(--white);
}

.home-system-index {
  --home-system-image-offset: 50svh;
  --home-system-text-cover: 0;
  position: absolute;
  inset: 0;
  z-index: 2;
  min-height: 0;
  background: transparent;
  color: #070707;
  pointer-events: none;
}

.home-system-index__stage {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  height: 100svh;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  background: transparent;
}

.home-system-index__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100svh;
  min-height: 0;
  padding: clamp(3.5rem, 3.7vw, 4rem);
  background: #f1f0ef;
  color: #070707;
  transform: translateY(calc((1 - var(--home-system-text-cover)) * 100%));
  transition:
    background-color 220ms ease,
    color 220ms ease;
  will-change: transform;
  pointer-events: auto;
}

.home-system-index__inner:hover,
.home-system-index__inner:focus-within {
  background: #070707;
  color: #f1f0ef;
}

.home-system-index__top,
.home-system-index__list,
.home-system-index__copy {
  transition: opacity 220ms ease;
}

.home-system-index__inner:hover .home-system-index__top,
.home-system-index__inner:hover .home-system-index__list,
.home-system-index__inner:hover .home-system-index__copy,
.home-system-index__inner:focus-within .home-system-index__top,
.home-system-index__inner:focus-within .home-system-index__list,
.home-system-index__inner:focus-within .home-system-index__copy {
  opacity: 0;
}

.home-system-index__discover {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--white);
  font-family:
    "Saans Mono",
    "Roboto Mono",
    "SFMono-Regular",
    Consolas,
    monospace;
  font-size: clamp(1.125rem, 1.273vw, 1.375rem);
  font-weight: 500;
  line-height: normal;
  text-decoration: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.home-system-index__discover img {
  width: 0.78rem;
  height: 0.78rem;
  transform: rotate(135.05deg);
}

.home-system-index__inner:hover .home-system-index__discover,
.home-system-index__inner:focus-within .home-system-index__discover {
  opacity: 1;
  pointer-events: auto;
}

.home-system-index__discover:focus-visible {
  outline: 1px solid var(--white);
  outline-offset: -0.75rem;
}

.home-system-index__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  gap: 2rem;
  font-family:
    "Saans Mono",
    "Roboto Mono",
    "SFMono-Regular",
    Consolas,
    monospace;
  font-size: clamp(1.125rem, 1.27vw, 1.375rem);
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
}

.home-system-index__top p {
  margin: 0;
}

.home-system-index__top p:last-child {
  color: #757575;
  letter-spacing: 0.091em;
  transition: color 220ms ease;
}

.home-system-index__inner:hover .home-system-index__top p:last-child,
.home-system-index__inner:focus-within .home-system-index__top p:last-child {
  color: rgba(241, 240, 239, 0.58);
}

.home-system-index__list {
  display: grid;
  gap: 1.5rem;
  width: min(100%, 17.55rem);
  margin: 0;
  padding: 0;
  list-style: none;
  font-family:
    "Saans Mono",
    "Roboto Mono",
    "SFMono-Regular",
    Consolas,
    monospace;
  font-size: clamp(1.125rem, 1.27vw, 1.375rem);
  font-weight: 500;
  line-height: normal;
  text-transform: capitalize;
}

.home-system-index__copy {
  width: 100%;
  margin: 0;
  color: #757575;
  font-family:
    "F37 Moon",
    Arial,
    sans-serif;
  font-size: clamp(0.9375rem, 0.98vw, 1.0625rem);
  font-weight: 700;
  line-height: 1.56;
  letter-spacing: 0.01em;
  text-transform: lowercase;
  transition: color 220ms ease;
}

.home-system-index__inner:hover .home-system-index__copy,
.home-system-index__inner:focus-within .home-system-index__copy {
  color: rgba(241, 240, 239, 0.58);
}

.home-system-index__figure {
  transform: translateY(var(--home-system-image-offset));
  height: 100svh;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: #2e342f;
  will-change: transform;
}

.home-system-index__figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom center;
  transform: scaleX(-1);
}

.home-remember {
  display: grid;
  place-items: center;
  min-height: 100svh;
  padding: clamp(6rem, 7.1vw, 7.625rem) clamp(1.25rem, 3.7vw, 4rem);
  overflow: hidden;
  background: #070707;
  color: #c5ffae;
}

.home-remember__stage {
  position: relative;
  width: min(100%, 100rem);
  height: clamp(22rem, 29.2vw, 31.5rem);
}

.home-remember h2 {
  position: absolute;
  inset: 0;
  margin: 0;
  color: #1b1b1b;
  font-family:
    "F37 Moon",
    Arial,
    sans-serif;
  font-size: clamp(5rem, 8.56vw, 9.25rem);
  font-weight: 700;
  line-height: 1.135;
  letter-spacing: 0;
  text-transform: uppercase;
}

.home-remember h2 > span {
  position: absolute;
  display: block;
  overflow: hidden;
  white-space: nowrap;
}

.home-remember h2 > span:nth-child(1) {
  top: 0;
  left: 0;
}

.home-remember h2 > span:nth-child(2) {
  top: 31.5%;
  left: 52.7%;
}

.home-remember h2 > span:nth-child(3) {
  bottom: 0;
  left: 0;
}

.home-remember__label {
  position: absolute;
  z-index: 1;
  display: block;
  overflow: hidden;
  padding-left: 1.125rem;
  margin: 0;
  color: #c5ffae;
  font-family:
    "Saans Mono",
    "Roboto Mono",
    "SFMono-Regular",
    Consolas,
    monospace;
  font-size: clamp(0.875rem, 1.273vw, 1.375rem);
  font-weight: 400;
  line-height: normal;
  text-transform: none;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 140ms linear;
}

.home-remember__label.is-green-active {
  opacity: 1;
  visibility: visible;
}

.home-remember__label::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background: currentColor;
  transform: translateY(-50%);
}

.scramble-char,
.scramble-space {
  display: inline-block;
}

.scramble-char {
  width: 0.6em;
  opacity: 0;
  text-align: center;
}

.scramble-char.is-visible {
  opacity: 1;
}

.scramble-char.is-scrambling-char {
  animation: scramble-slot 76ms steps(2, end) infinite;
}

.scramble-space {
  width: 0.6em;
}

@keyframes scramble-slot {
  0%,
  100% {
    transform: translateY(-0.1em);
  }

  50% {
    transform: translateY(0.1em);
  }
}

.home-remember__label--detection {
  top: 6.15%;
  left: 69.7%;
}

.home-remember__label--mapping {
  top: 44.6%;
  left: 6.1%;
}

.home-remember__label--spikes {
  right: 0;
  bottom: 26.2%;
}

.company-page {
  background: #070707;
  color: var(--white);
}

.company-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #11191b;
  color: var(--white);
}

.company-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

.company-hero__guide {
  position: absolute;
  z-index: 1;
  background: rgba(255, 255, 255, 0.34);
  pointer-events: none;
}

.company-hero__guide--x {
  top: 35.75%;
  right: 0;
  left: 0;
  height: 1px;
}

.company-hero__guide--y {
  top: 0;
  bottom: 0;
  left: 81.48%;
  width: 1px;
}

.company-hero__marker {
  position: absolute;
  top: 35.75%;
  left: 81.48%;
  z-index: 2;
  width: 1.125rem;
  height: 1.0625rem;
  max-width: none;
  transform: translate(-50%, -50%);
}

.company-hero__coords {
  position: absolute;
  top: 10.9%;
  left: 3.7%;
  z-index: 2;
  display: grid;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.5);
  font-family:
    "Saans Mono",
    "Roboto Mono",
    "SFMono-Regular",
    Consolas,
    monospace;
  font-size: clamp(0.75rem, 0.81vw, 0.875rem);
  font-weight: 500;
}

.company-hero__copy {
  position: absolute;
  bottom: 7.4%;
  left: 3.53%;
  z-index: 2;
  color: var(--white);
  text-align: left;
}

.company-hero__eyebrow {
  display: block;
  margin: 0 0 1.15rem;
  font-family:
    "Saans Mono",
    "Roboto Mono",
    "SFMono-Regular",
    Consolas,
    monospace;
  font-size: clamp(0.875rem, 1.04vw, 1.125rem);
  font-weight: 500;
  line-height: 1.2;
  text-transform: none;
}

.company-hero__copy h1 {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: max-content;
  max-width: 100%;
  margin: 0;
  font-family:
    "F37 Moon",
    "Arial Black",
    Arial,
    sans-serif;
  font-size: clamp(2.75rem, 3.7vw, 4rem);
  font-weight: 700;
  line-height: 1.156;
  text-align: right;
  text-transform: uppercase;
}

.company-hero__first-line {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.company-hero__play {
  position: absolute;
  top: 41.2%;
  left: 68.7%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 3.375rem;
  padding: 0 0.875rem;
  border: 0;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: inset 0 -1px 6px rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-family:
    "Saans Mono",
    "Roboto Mono",
    "SFMono-Regular",
    Consolas,
    monospace;
  font-size: clamp(0.75rem, 0.81vw, 0.875rem);
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  cursor: pointer;
}

.company-hero__play.is-following-pointer {
  transform: translate(-50%, -50%);
  will-change: top, left;
}

@media (hover: hover) and (pointer: fine) {
  .company-hero__play {
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease;
  }

  .company-hero__play.is-pointer-active {
    opacity: 1;
    pointer-events: auto;
  }
}

body.is-company-video-open {
  overflow: hidden;
}

.company-video-modal {
  display: none;
  position: relative;
  width: 100vw;
  max-width: none;
  height: 100dvh;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: #070707;
  color: var(--white);
  overflow: hidden;
}

.company-video-modal[open] {
  display: block;
}

.company-video-modal::backdrop {
  background: #070707;
}

.company-video-modal__header {
  position: absolute;
  top: 4rem;
  left: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 0 0 auto;
  width: 100%;
  padding: 0 4rem;
  font-family:
    "Saans Mono",
    "Roboto Mono",
    "SFMono-Regular",
    Consolas,
    monospace;
  font-size: clamp(1rem, 1.39vw, 1.5rem);
  font-weight: 500;
  line-height: 1.1667;
  letter-spacing: 0.03125rem;
}

.company-video-modal__time {
  font: inherit;
}

.company-video-modal__video {
  display: block;
  width: 100%;
  height: 100%;
  background: #070707;
  object-fit: contain;
}

.company-video-modal__close {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--white);
  font: inherit;
  cursor: pointer;
}

.company-video-modal__close:hover,
.company-video-modal__close:focus-visible {
  color: var(--acid);
}

.company-principles-track {
  position: relative;
  z-index: 1;
  height: 200svh;
  background: #070707;
}

.company-principles {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100svh;
  padding: 0 clamp(3.5rem, 3.7vw, 4rem) clamp(3.5rem, 3.7vw, 4rem);
  background: #070707;
  color: var(--white);
}

.company-principles__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  max-width: 100rem;
  gap: clamp(4rem, 8vw, 8.5rem);
}

.company-principles__list {
  display: grid;
  gap: 0.875rem;
  margin: 0;
  padding: 0;
  list-style: none;
  font-family:
    "Saans Mono",
    "Roboto Mono",
    "SFMono-Regular",
    Consolas,
    monospace;
  text-transform: uppercase;
}

.company-principles__list li {
  display: flex;
  align-items: baseline;
  gap: 0.125rem;
  color: rgba(255, 255, 255, 0.3);
  transition: color 180ms linear;
}

.company-principles__list li.is-active {
  color: #c5ffae;
}

.company-principles__list span {
  flex: 0 0 0.85rem;
  font-size: clamp(0.5rem, 0.58vw, 0.625rem);
  font-weight: 500;
  line-height: 1;
}

.company-principles__list strong {
  font-size: clamp(2.25rem, min(3.125vw, 4.83vh), 3.375rem);
  font-weight: 500;
  line-height: 1;
}

.company-principles__copy {
  flex: 0 0 auto;
  min-width: 0;
  width: max-content;
  margin: 0;
  padding-top: 0.3rem;
  font-family:
    "Saans Mono",
    "Roboto Mono",
    "SFMono-Regular",
    Consolas,
    monospace;
  font-size: clamp(1.125rem, 1.39vw, 1.5rem);
  font-weight: 500;
  line-height: 1.1667;
  letter-spacing: 0.020833em;
  white-space: nowrap;
}

.company-vision {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: clamp(5rem, 7.06vw, 7.625rem);
  min-height: 100svh;
  padding: clamp(5rem, 7.06vw, 7.625rem) clamp(1.25rem, 3.7vw, 4rem);
  background: #f1f0ef;
  color: #070707;
}

.company-vision__header {
  display: grid;
  gap: 1.125rem;
  width: 100%;
}

.company-vision__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  font-family:
    "Saans Mono",
    "Roboto Mono",
    "SFMono-Regular",
    Consolas,
    monospace;
  font-size: clamp(0.875rem, 1.04vw, 1.125rem);
  font-weight: 500;
  line-height: 1.56;
  letter-spacing: 0.028em;
}

.company-vision__meta p {
  margin: 0;
}

.company-vision__meta p:first-child {
  text-transform: uppercase;
}

.company-vision__rule {
  width: 100%;
  height: 1px;
  background: rgba(7, 7, 7, 0.28);
}

.company-vision__copy {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: clamp(3rem, 6vw, 6rem);
}

.company-vision__copy h2 {
  width: min(100%, 36.7rem);
  margin: 0;
  font-family:
    "F37 Moon",
    Arial,
    sans-serif;
  font-size: clamp(2.5rem, 3.125vw, 3.375rem);
  font-weight: 700;
  line-height: 1.13;
}

.company-vision__copy p {
  margin: 0;
  text-align: right;
  font-family:
    "F37 Moon",
    Arial,
    sans-serif;
  font-size: clamp(1.125rem, 1.39vw, 1.5rem);
  font-weight: 400;
  line-height: 1.17;
}

.company-vision__figure {
  width: 100%;
  aspect-ratio: 1600 / 1009;
  margin: 0;
  overflow: hidden;
  background: #070707;
}

.company-vision__figure img {
  display: block;
  width: 112.05%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: translateX(-8.35%);
}

.company-contact {
  position: relative;
  z-index: 3;
  min-height: 35.5rem;
  padding: clamp(5rem, 7.06vw, 7.625rem) clamp(1.25rem, 3.7vw, 4rem);
  background: #f1f0ef;
  color: #070707;
}

.company-contact__inner {
  display: grid;
  gap: clamp(3rem, 3.7vw, 4rem);
  width: 100%;
  max-width: 100rem;
  margin: 0 auto;
}

.company-contact p {
  margin: 0;
  font-family:
    "Saans Mono",
    "Roboto Mono",
    "SFMono-Regular",
    Consolas,
    monospace;
  font-size: clamp(0.875rem, 1.04vw, 1.125rem);
  font-weight: 500;
  line-height: 1.2;
  text-transform: uppercase;
}

.company-contact h2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  margin: 0;
  font-family:
    "F37 Moon",
    "Arial Black",
    Arial,
    sans-serif;
  font-size: clamp(4rem, 6.48vw, 7rem);
  font-weight: 700;
  line-height: 1.09;
  text-transform: uppercase;
}

.company-contact__button {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 3.375rem;
  border-radius: 0.5rem;
  background: #070707;
  box-shadow: inset 0 -1px 6px rgba(255, 255, 255, 0.2);
  color: #c5ffae;
  font-family:
    "Saans Mono",
    "Roboto Mono",
    "SFMono-Regular",
    Consolas,
    monospace;
  font-size: clamp(0.75rem, 0.81vw, 0.875rem);
  font-weight: 500;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

@keyframes home-edge-in {
  to {
    opacity: 1;
  }
}

@keyframes home-letter-glitch {
  0%,
  100% {
    transform: translateY(0) scaleY(1);
  }

  50% {
    transform: translateY(-0.08em) scaleY(1.28);
  }
}

@keyframes home-system-in {
  to {
    transform: translateY(0);
  }
}

.hero {
  position: relative;
  display: flex;
  min-height: 100svh;
  overflow: hidden;
  background: #263836;
}

.hero__image {
  position: absolute;
  top: 50%;
  left: 50%;
  width: max(100vw, calc(100svh * 1728 / 1117));
  height: max(100svh, calc(100vw * 1117 / 1728));
  object-fit: fill;
  transform: translate(-50%, -50%);
}

.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  padding: clamp(6rem, 11.5vw, 13.875rem) clamp(1.25rem, 3.7vw, 4rem)
    clamp(1.5rem, 3.2vw, 4rem);
}

.hero__title {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: max-content;
  max-width: 100%;
  margin: 0;
  color: var(--white);
  font-family:
    "F37 Moon",
    "Arial Black",
    "Helvetica Neue",
    Arial,
    sans-serif;
  font-size: clamp(2.25rem, 3.35vw, 4rem);
  font-weight: 900;
  line-height: 1.15625;
  letter-spacing: 0;
  text-align: right;
  text-transform: uppercase;
}

.hero__title span {
  display: block;
  white-space: nowrap;
}

.hero__footer {
  display: grid;
  gap: clamp(1.25rem, 1.85vw, 2rem);
  width: 100%;
}

.hero__rule {
  width: 100%;
  border-top: 2px dotted rgba(255, 255, 255, 0.72);
}

.hero__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.hero__features {
  display: flex;
  flex-wrap: nowrap;
  gap: clamp(1.5rem, 4vw, 4.75rem);
  width: auto;
  min-width: 0;
  margin: 0;
  padding: 0;
  color: var(--white);
  font-size: clamp(0.6875rem, 0.9vw, 1.125rem);
  line-height: 1.333;
  list-style: none;
  white-space: nowrap;
}

.hero__features li {
  flex: 0 0 auto;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(2.25rem, 3vw, 3.25rem);
  padding: clamp(0.625rem, 0.8vw, 0.875rem) clamp(1.25rem, 1.85vw, 2rem);
  border-radius: 0.5rem;
  background: var(--acid);
  box-shadow: inset 0 -1px 6px rgba(255, 255, 255, 0.2);
  color: var(--black);
  font-size: clamp(0.75rem, 0.9vw, 1.125rem);
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
}

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

.reveal {
  min-height: auto;
  background: var(--black);
  color: rgba(255, 255, 255, 0.5);
}

.reveal__inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: clamp(2.5rem, 4.2vw, 4.5rem) clamp(1.25rem, 3.7vw, 4rem);
}

.reveal__text {
  width: 100%;
  margin: 0;
  font-family:
    "F37 Moon",
    "Arial Black",
    "Helvetica Neue",
    Arial,
    sans-serif;
  font-size: clamp(1.75rem, 2.65vw, 3.375rem);
  font-weight: 900;
  line-height: 1.185185;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  white-space: nowrap;
}

.reveal__indent {
  display: inline-block;
  width: clamp(7.25rem, 11.1vw, 12rem);
}

.reveal__char {
  color: rgba(255, 255, 255, 0.5);
  transition: color 120ms linear;
}

.reveal__char.is-active {
  color: var(--white);
}

.reveal--product .reveal__inner {
  align-items: center;
  justify-content: center;
  padding: clamp(5.5rem, 8.47vw, 7.625rem) clamp(1.5rem, 4.44vw, 4rem);
}

.reveal--product .reveal__text {
  font-size: clamp(2rem, 3.45vw, 3.125rem);
  line-height: 1.185185;
  letter-spacing: 0.01em;
}

.reveal--product .reveal__indent {
  width: clamp(5rem, 8.75vw, 9.5rem);
}

.reveal--os .reveal__inner {
  justify-content: flex-start;
  padding: clamp(5rem, 7.06vw, 7.625rem) clamp(1.25rem, 3.7vw, 4rem)
    clamp(7rem, 10.76vw, 11.625rem);
}

.reveal--os .reveal__text {
  font-size: clamp(1.75rem, 3.125vw, 3.375rem);
  line-height: 1.185185;
}

.reveal--os .reveal__indent {
  width: clamp(4.25rem, 7.25vw, 7.65rem);
}

.reveal--os {
  position: relative;
  z-index: 1;
}

.reveal--os .reveal__inner {
  position: relative;
  z-index: 1;
}

.os-return {
  position: relative;
  z-index: 2;
  min-height: 100svh;
}

.os-return__stage {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 100svh;
  overflow: hidden;
  padding: clamp(2rem, 3.7vw, 4rem);
  color: var(--white);
}

.os-return__image {
  position: absolute;
  top: -0.05%;
  left: -5.32%;
  width: 106.57%;
  max-width: none;
  height: 132.86%;
  object-fit: cover;
}

.os-return__content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
  gap: 2rem;
}

.reveal--os.home-memory .reveal__inner.home-memory__inner {
  align-items: flex-start;
  justify-content: flex-start;
  height: 100%;
  padding: clamp(5rem, 7.06vw, 7.625rem) clamp(1.25rem, 3.7vw, 4rem);
  background: #070707;
}

.reveal--os.home-memory .reveal__text.home-memory__text {
  width: 100%;
  max-width: none;
  font-family:
    "F37 Moon",
    "Arial Black",
    "Helvetica Neue",
    Arial,
    sans-serif;
  font-size: clamp(2rem, 3.125vw, 3.375rem);
  font-weight: 900;
  line-height: 1.185185;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  overflow-wrap: break-word;
  white-space: normal;
}

.os-return__title {
  width: min(100%, clamp(22rem, 31.6vw, 34.125rem));
  margin: 0;
  font-family:
    "F37 Moon",
    "Arial Black",
    "Helvetica Neue",
    Arial,
    sans-serif;
  font-size: clamp(2.5rem, 3.7vw, 4rem);
  font-weight: 900;
  line-height: 1.15625;
  text-align: left;
  text-transform: uppercase;
}

.os-return__title span {
  display: block;
}

.os-return__title span:first-child {
  text-align: right;
}

.os-foundations {
  position: sticky;
  top: 0;
  z-index: 3;
  min-height: 100svh;
  padding: clamp(5rem, 7.06vw, 7.625rem) clamp(1.25rem, 3.7vw, 4rem);
  background: var(--black);
  color: var(--white);
}

.os-foundations__inner {
  display: grid;
  grid-template-columns: 27.8125% 25.3125% 25.3125%;
  justify-content: space-between;
  width: min(100%, 100rem);
  min-height: clamp(22rem, 25.52vw, 27.5625rem);
  margin: 0 auto;
}

.os-foundation-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: clamp(22rem, 25.52vw, 27.5625rem);
}

.os-foundation-card + .os-foundation-card::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -21.2963%;
  width: 1px;
  background: rgba(255, 255, 255, 0.2);
  content: "";
}

.os-foundation-card h2 {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-family:
    "Saans Mono",
    "Roboto Mono",
    "SFMono-Regular",
    Consolas,
    monospace;
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  font-weight: 500;
  line-height: 1.555556;
  text-transform: uppercase;
}

.os-foundation-card h2 span {
  display: block;
  color: var(--acid);
}

.os-foundation-card p {
  width: 100%;
  margin: 0;
  font-family:
    "F37 Moon",
    "Helvetica Neue",
    Arial,
    sans-serif;
  font-size: clamp(0.9375rem, 1.04vw, 1.125rem);
  font-weight: 400;
  line-height: 1.555556;
}

.os-memory-lab {
  position: relative;
  z-index: 4;
  min-height: 100svh;
  padding: clamp(4rem, 5.9vw, 7.625rem) clamp(1.25rem, 3.7vw, 4rem);
  padding-top: clamp(3rem, 3.7vw, 4rem);
  background: var(--black);
  color: var(--white);
}

.os-memory-lab__inner {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: min(100%, 100rem);
  margin: 0 auto;
}

.os-memory-lab__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0 1.5rem;
}

.os-memory-tabs {
  display: flex;
  gap: 0.75rem;
}

.os-memory-tabs button,
.os-memory-date {
  border: 0;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  font-family:
    "F37 Moon",
    "Helvetica Neue",
    Arial,
    sans-serif;
  font-size: 0.875rem;
}

.os-memory-tabs button {
  padding: 0.875rem;
  cursor: pointer;
}

.os-memory-tabs button.is-active {
  outline: 0.5px solid rgba(255, 255, 255, 0.82);
}

.os-memory-date {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem;
  border-radius: 0;
  background: transparent;
  text-transform: capitalize;
  cursor: pointer;
}

.os-memory-date-wrap {
  position: relative;
}

.os-memory-date img:last-child {
  transition: transform 160ms ease;
}

.os-memory-date[aria-expanded="true"] img:last-child {
  transform: rotate(180deg);
}

.os-memory-date__menu {
  position: absolute;
  top: calc(100% + 0.375rem);
  right: 0;
  z-index: 5;
  min-width: 100%;
  margin: 0;
  padding: 0.375rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.5rem;
  background: #101010;
  list-style: none;
}

.os-memory-date__menu button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
  padding: 0.625rem 0.875rem;
  border: 0;
  border-radius: 0.375rem;
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
  font-family:
    "F37 Moon",
    "Helvetica Neue",
    Arial,
    sans-serif;
  font-size: 0.875rem;
  text-align: left;
  white-space: nowrap;
  cursor: pointer;
}

.os-memory-date__menu button:disabled {
  color: rgba(255, 255, 255, 0.38);
  cursor: default;
}

.os-memory-date__status {
  color: rgba(255, 255, 255, 0.28);
  font-family:
    "Saans Mono",
    "Roboto Mono",
    "SFMono-Regular",
    Consolas,
    monospace;
  font-size: 0.6875rem;
  text-transform: uppercase;
}

.os-memory-date__menu button:hover,
.os-memory-date__menu button:focus-visible {
  outline: none;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.os-memory-date__menu button[aria-selected="true"] {
  color: #c5ffae;
}

.os-memory-date__menu button:disabled:hover {
  background: transparent;
  color: rgba(255, 255, 255, 0.38);
}

.os-memory-date img:first-child {
  width: 1.5rem;
  height: 1.5rem;
}

.os-memory-date img:last-child {
  width: 1.125rem;
  height: 1.125rem;
}

.os-memory-separator {
  width: 100%;
  height: 0;
  margin: 0.5rem 0 3.375rem;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.os-memory-pane {
  display: none;
}

.os-memory-pane.is-active {
  display: block;
}

.os-memory-lab__label {
  margin: 0 0 1.5rem;
  padding: 0 1.5rem;
  color: rgba(255, 255, 255, 0.5);
  font-family:
    "Saans Mono",
    "Roboto Mono",
    "SFMono-Regular",
    Consolas,
    monospace;
  font-size: 1.125rem;
  font-weight: 500;
  text-transform: capitalize;
}

.os-memory-grid {
  --memory-dashboard-height: clamp(39rem, 40.75vw, 41.25rem);
  display: grid;
  grid-template-columns: clamp(24.5rem, 28vw, 28.75rem) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.os-memory-grid--empty {
  min-height: 35rem;
  place-items: center;
  border-radius: 1.375rem;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.55);
  font-family:
    "F37 Moon",
    "Helvetica Neue",
    Arial,
    sans-serif;
}

.os-video-card,
.os-metric-card,
.os-sound-card,
.os-weather-strip {
  border-radius: 1.375rem;
  background: rgba(255, 255, 255, 0.05);
}

.os-video-card {
  position: relative;
  display: flex;
  height: var(--memory-dashboard-height);
  min-height: 0;
  overflow: hidden;
  padding: 1.5rem;
  border-radius: 1.375rem;
  background: #07315f;
}

.os-video-card--whale {
  background:
    url("assets/m2os-poster-whale.jpg") center / cover no-repeat,
    #07315f;
}

.os-video-card__time {
  width: 3.6875rem;
}

.os-video-card__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.os-video-card__audio {
  display: none;
}

.os-video-card__play,
.os-video-card__volume {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.os-video-card__play {
  position: relative;
  width: 1.375rem;
  height: 1.375rem;
}

.os-video-card__play-icon {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.os-video-card__play-icon--pause {
  display: none;
  padding: 0.25rem;
}

.os-video-card[data-video-playing] .os-video-card__play-icon--play {
  display: none;
}

.os-video-card[data-video-playing] .os-video-card__play-icon--pause {
  display: block;
}

.os-video-card--street {
  background:
    url("assets/m2os-poster-street.jpg") center / cover no-repeat,
    #090816;
}

.os-video-card--studio {
  background: url("assets/m2os-poster-studio.jpg") center / cover no-repeat #b4bea0;
}

.os-video-card::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(3, 36, 73, 0.1));
  content: "";
}

.os-video-card__media {
  position: absolute;
  inset: 0;
}

.os-video-card__topline,
.os-video-card__preview {
  display: flex;
  align-items: center;
}

.os-video-card__topline {
  position: relative;
  z-index: 1;
  gap: 0.5rem;
  padding: 1.5rem 1.5rem 0;
  font-family:
    "Saans Mono",
    "Roboto Mono",
  monospace;
  font-size: 0.75rem;
}

.os-video-card__topline img {
  width: 1.375rem;
  height: 1.375rem;
}

.os-video-card__preview {
  margin-left: auto;
  gap: 0.375rem;
  font-family:
    "F37 Moon",
    "Helvetica Neue",
    Arial,
    sans-serif;
}

.os-video-card__preview img {
  width: 0.25rem;
  height: 0.25rem;
}

.os-significance {
  /* Curve placement within the graph, from Figma (whale defaults; per-memory
     variants override). --sig-w is a fraction of the graph width. */
  --sig-left: 7.09%;
  --sig-top: 1.3125rem;
  --sig-w: 0.9267;
  --sig-h: 5.088rem;
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  height: 18.6875rem;
  border-radius: 0.75rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(1px);
}

/* Each memory's curve keeps its exact Figma placement; the colored segment
   images below complete the line where the grey base path has gaps. On the
   shared 25s time axis a shorter memory's curve ends before the right edge. */
.os-significance--street {
  --sig-left: 9.01%;
  --sig-top: 1.6rem;
  --sig-w: 0.7261;
  --sig-h: 4.725rem;
}

.os-significance--studio {
  --sig-left: 7.09%;
  --sig-top: 2.83rem;
  --sig-w: 0.8028;
  --sig-h: 3.379rem;
}

/* Colored sections of the significance line (bright green + white) that fill
   the gaps in the grey base curve, plus the acid dots marking section ends. */
.os-significance__seg {
  position: absolute;
}

.os-significance__seg--flip {
  transform: scaleY(-1);
}

.os-significance__dot {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 1.32px;
  background: #c5ffae;
}

.os-significance p,
.os-metric-card p {
  margin: 0;
  font-family:
    "F37 Moon",
    "Helvetica Neue",
    Arial,
    sans-serif;
  font-size: 1.125rem;
}

.os-significance p {
  color: rgba(255, 255, 255, 0.5);
}

.os-significance strong,
.os-metric-card h3 {
  margin: 0;
  font-family:
    "F37 Moon",
    "Helvetica Neue",
    Arial,
    sans-serif;
  font-weight: 400;
}

.os-significance strong {
  display: block;
  font-size: 3.375rem;
  letter-spacing: 0.02em;
}

.os-significance strong span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.5rem;
}

.os-significance__graph {
  position: relative;
  height: 7.375rem;
  margin-top: 1.5rem;
  overflow: visible;
}

.os-significance__trace {
  position: absolute;
  inset: 0;
  overflow: visible;
  clip-path: inset(-20% 100% -20% -2%);
  pointer-events: none;
}

.os-significance__line,
.os-significance__bars {
  position: absolute;
}

.os-significance__line {
  right: 0;
  left: 0;
  height: 1px;
  border-top: 1px dashed rgba(255, 255, 255, 0.28);
}

.os-significance__line--one { top: 0; }
.os-significance__line--two { top: 1.75rem; }
.os-significance__line--three { top: 3.5rem; }
.os-significance__line--four { top: 5.625rem; }
.os-significance__line--five { top: 7.375rem; }

.os-significance__bars {
  top: 3.5rem;
  left: 0;
  width: 100%;
  height: 0.375rem;
}

.os-significance__curve-svg {
  position: absolute;
  left: var(--sig-left);
  top: var(--sig-top);
  width: calc(var(--sig-w) * 100%);
  height: var(--sig-h);
  transform: scaleY(-1);
  overflow: visible;
  pointer-events: none;
}

.os-significance__curve-svg[data-sig-flip="false"] {
  transform: none;
}

.os-significance__times,
.os-chart-times {
  display: flex;
  justify-content: space-between;
  font-family:
    "Saans Mono",
    "Roboto Mono",
  monospace;
  font-size: 0.75rem;
}

.os-significance__times {
  margin-top: 0.7rem;
}

.os-memory-stack {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 1.08fr) minmax(16rem, 1.36fr);
  grid-template-rows: minmax(0, 1.68fr) 7.125rem minmax(0, 1fr);
  gap: 1.5rem;
  height: var(--memory-dashboard-height);
  min-height: var(--memory-dashboard-height);
  min-width: 0;
}

.os-memory-row {
  display: contents;
}

.os-memory-row--bottom {
  display: contents;
}

.os-metric-card--wide,
.os-weather-strip {
  grid-column: 1 / 3;
}

.os-metric-card--wide {
  grid-row: 1;
}

.os-metric-card--heart {
  grid-column: 3;
  grid-row: 1;
}

.os-weather-strip {
  grid-row: 2;
}

.os-memory-row--bottom .os-sound-card:first-child {
  grid-column: 1;
  grid-row: 3;
}

.os-memory-row--bottom .os-sound-card:nth-child(2) {
  grid-column: 2;
  grid-row: 3;
}

.os-metric-card--temp {
  grid-column: 3;
  grid-row: 2 / 4;
}

.os-metric-card,
.os-weather-strip {
  padding: 1.5rem;
}

.os-sound-card {
  padding: 1.375rem 1.5rem;
}

.os-metric-card {
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.os-metric-card--wide,
.os-metric-card--heart,
.os-metric-card--temp {
  height: 100%;
  min-height: 0;
}

.os-metric-card h3 {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
}

.os-metric-card h3 strong {
  font-size: 3.375rem;
  font-weight: 400;
  line-height: 0.95;
}

.os-metric-card h3 span {
  font-size: 1.5rem;
}

.os-breath-chart,
.os-heart-chart,
.os-temp-chart {
  position: relative;
  /* Cards are flex columns: the chart sits at the bottom so its time scale
     stays inside the card even when the grid rows shrink on small screens. */
  margin-top: auto;
  padding-top: 1.25rem;
  font-family:
    "Saans Mono",
    "Roboto Mono",
    monospace;
  font-size: 0.75rem;
}

.os-heart-chart {
  margin-bottom: 1.0625rem;
}

.os-breath-chart img,
.os-heart-chart img,
.os-temp-chart img {
  display: block;
}

.os-breath-chart__plot {
  position: relative;
  width: 100%;
  height: clamp(6rem, 7.2vw, 7.5rem);
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.72);
  font-family:
    "Saans Mono",
    "Roboto Mono",
    monospace;
  font-size: 0.75rem;
  line-height: 1;
}

.os-breath-chart__scale {
  position: absolute;
  right: 0;
  color: var(--white);
  transform: translateY(-50%);
  pointer-events: none;
}

.os-breath-chart__scale--top {
  top: 5.8%;
}

.os-breath-chart__scale--bottom {
  top: 85.8%;
}

.os-breath-chart__axis {
  position: absolute;
  left: 0;
  right: 6.3%;
  top: 60%;
  height: 0;
  border-top: 1px dashed rgba(255, 255, 255, 0.5);
  pointer-events: none;
}

.os-breath-chart__baseline {
  display: block;
  width: 100%;
  height: 0;
  margin-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  pointer-events: none;
}

.os-breath-chart__times {
  display: flex;
  justify-content: space-between;
  margin-top: clamp(0.65rem, 1.33vw, 1.4375rem);
  color: var(--white);
  pointer-events: none;
}

.os-breath-chart__tooltip {
  position: absolute;
  left: var(--active-x, 50%);
  top: calc(var(--active-top, 20%) - 1.4rem);
  color: rgba(255, 255, 255, 0.5);
  transform: translateX(-50%);
  pointer-events: none;
  opacity: 0;
  white-space: nowrap;
}

.os-breath-chart__plot.is-default-visible .os-breath-chart__tooltip {
  opacity: 1;
}

.os-br-column {
  position: absolute;
  left: var(--x);
  top: 0;
  bottom: 0;
  width: 0.5rem;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  transform: translateX(-50%);
  pointer-events: none;
}

.os-br-cell {
  position: absolute;
  left: 50%;
  top: var(--cell-y);
  width: 6px;
  height: 6px;
  border-radius: 1.32px;
  background: #66835a;
  transform: translateX(-50%);
}

.os-br-cell--g {
  background: #777777;
}

.os-br-cell--m {
  background: #66835a;
}

.os-br-cell--a {
  background: #c5ffae;
}

.os-br-column.is-default > .os-br-cell--terminal {
  box-shadow:
    0 0 0.35rem rgba(197, 255, 174, 0.85),
    0 0 0.8rem rgba(197, 255, 174, 0.45);
}

.os-heart-chart__plot {
  position: relative;
  width: min(100%, 23.375rem);
  height: clamp(6.75rem, 8.7vw, 9rem);
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.72);
  font-family:
    "Saans Mono",
    "Roboto Mono",
    monospace;
  font-size: 0.75rem;
  line-height: 1;
}

.os-heart-chart__scale {
  position: absolute;
  right: 0;
  color: var(--white);
  transform: translateY(-50%);
  pointer-events: none;
}

.os-heart-chart__scale--top {
  top: 4.9%;
}

.os-heart-chart__scale--bottom {
  top: 81.9%;
}

.os-heart-chart__axis {
  position: absolute;
  left: 0;
  right: 0;
  top: 94.4%;
  height: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  pointer-events: none;
}

.os-heart-chart__active-line {
  position: absolute;
  left: var(--active-x, 52%);
  top: var(--active-y, 28%);
  height: calc(94.4% - var(--active-y, 28%));
  width: 0;
  border-left: 1px dashed rgba(255, 255, 255, 0.45);
  transform: translateX(-50%);
  pointer-events: none;
}

.os-heart-chart__times {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 0.3125rem);
  height: 0.75rem;
  color: var(--white);
  pointer-events: none;
}

.os-heart-chart__times span {
  position: absolute;
  left: var(--x);
  top: 0;
  transform: translateX(-50%);
  white-space: nowrap;
}

.os-bpm-point {
  position: absolute;
  top: var(--y);
  left: var(--x);
  width: clamp(1rem, 3.2vw, 1.3rem);
  height: clamp(1rem, 3.2vw, 1.3rem);
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.os-bpm-point::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 0.125rem;
  background: #c5ffae;
  content: "";
  transform: translate(-50%, -50%);
}

.os-bpm-point::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2.5rem;
  height: 2.5rem;
  background: radial-gradient(
    circle,
    rgba(197, 255, 174, 0.55) 0%,
    rgba(197, 255, 174, 0.18) 35%,
    rgba(197, 255, 174, 0) 70%
  );
  content: "";
  opacity: 0;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.os-bpm-point span {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 0.375rem);
  color: rgba(255, 255, 255, 0.75);
  font-family:
    "Saans Mono",
    "Roboto Mono",
    monospace;
  font-size: 0.75rem;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%);
  white-space: nowrap;
}

.os-bpm-point.is-default::after,
.os-bpm-point.is-default span {
  opacity: 1;
}

.os-temp-chart__plot {
  position: relative;
  width: min(100%, 25rem);
  height: clamp(7.25rem, 10.4vw, 9.375rem);
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.72);
  font-family:
    "Saans Mono",
    "Roboto Mono",
    monospace;
  font-size: 0.75rem;
  line-height: 1;
}

.os-temp-chart__grid,
.os-temp-chart__axis {
  position: absolute;
  left: 0;
  right: 0;
  top: var(--y);
  height: 0;
  border-top: 1px dashed rgba(255, 255, 255, 0.3);
  pointer-events: none;
}

.os-temp-chart__axis {
  right: 6.75%;
  border-top-style: solid;
  border-top-color: rgba(255, 255, 255, 0.5);
}

.os-temp-chart__level {
  position: absolute;
  right: 0;
  top: var(--y);
  color: var(--white);
  transform: translateY(-50%);
  white-space: nowrap;
  pointer-events: none;
}

.os-temp-chart__curve {
  position: absolute;
  pointer-events: none;
}

.os-temp-chart__times {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0.75rem;
  pointer-events: none;
  color: var(--white);
}

.os-temp-chart__times span {
  position: absolute;
  left: var(--x);
  top: 0;
  transform: translateX(-50%);
  white-space: nowrap;
}

.os-temp-point {
  position: absolute;
  top: var(--y);
  left: var(--x);
  width: 1.75rem;
  height: 1.75rem;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.os-temp-point::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 0.125rem;
  background: #6c8960;
  content: "";
  transform: translate(-50%, -50%);
}

.os-temp-point::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2.5rem;
  height: 2.5rem;
  background: radial-gradient(
    circle,
    rgba(197, 255, 174, 0.55) 0%,
    rgba(197, 255, 174, 0.18) 35%,
    rgba(197, 255, 174, 0) 70%
  );
  content: "";
  opacity: 0;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.os-temp-point span {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 0.05rem);
  color: rgba(255, 255, 255, 0.75);
  font-family:
    "Saans Mono",
    "Roboto Mono",
    monospace;
  font-size: 0.75rem;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%);
  white-space: nowrap;
}

.os-temp-point.is-default::before {
  background: #c5ffae;
}

.os-temp-point.is-default::after,
.os-temp-point.is-default span {
  opacity: 1;
}

.os-weather-strip {
  display: grid;
  /* Compact metric columns (102px in Figma) keep the four readings evenly
     spaced; the flexible last column holds the void before the icon. */
  grid-template-columns: repeat(4, minmax(0, 6.375rem)) minmax(2.5rem, 1fr);
  column-gap: clamp(0.75rem, 1.3vw, 1.375rem);
  align-items: end;
  height: 100%;
  min-height: 0;
}

.os-weather-strip div {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: space-between;
  min-height: 3.125rem;
  gap: 0.625rem;
  min-width: 0;
}

.os-weather-strip span,
.os-weather-strip strong,
.os-sound-card footer,
.os-sound-card p {
  font-family:
    "F37 Moon",
    "Helvetica Neue",
    Arial,
    sans-serif;
}

.os-weather-strip span,
.os-sound-card footer {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
}

.os-weather-strip strong {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
}

.os-weather-strip strong img {
  flex: 0 0 auto;
  width: 1.375rem;
  height: 1.375rem;
}

.os-weather-strip strong .os-weather-strip__air-icon {
  width: 1.125rem;
  height: 0.9375rem;
}

.os-weather-strip__sun {
  display: block;
  align-self: end;
  justify-self: end;
  min-height: 0;
  width: 2.6575rem;
  height: 1.5rem;
  max-width: none;
  /* Figma's strip uses 18px side padding vs our 24px card padding. */
  margin-right: -0.375rem;
}

.os-weather-strip__sun--moon {
  width: 3.47rem;
  height: 3.43rem;
  /* The moon export bleeds ~17px of glow on its right; pull further so the
     visible moon body right-aligns with the other panes' icons. */
  margin-right: -1.4rem;
  margin-bottom: -0.7rem;
}

.os-weather-strip__suncloud {
  position: relative;
  display: block;
  align-self: end;
  justify-self: end;
  width: 2.348rem;
  height: 1.71rem;
}

.os-weather-strip__suncloud img {
  position: absolute;
  display: block;
  max-width: none;
}

.os-weather-strip__suncloud-sun {
  top: -0.316rem;
  left: -0.339rem;
  width: 1.643rem;
  height: 1.643rem;
}

.os-weather-strip__suncloud-cloud {
  top: 0.339rem;
  left: 0.155rem;
  width: 2.193rem;
  height: 1.372rem;
}

.os-sound-card {
  display: flex;
  flex-direction: column;
  /* space-between absorbs row-height differences across viewports without
     crushing the fixed-height wave row. */
  justify-content: space-between;
  height: 100%;
  min-height: 0;
}

.os-sound-card > div,
.os-sound-card p,
.os-sound-card footer {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin: 0;
}

.os-sound-card > div {
  font-family:
    "F37 Moon",
    "Helvetica Neue",
    Arial,
    sans-serif;
  font-size: 1.125rem;
}

.os-sound-card > div:first-of-type img {
  flex: 0 1 4.5rem;
  width: clamp(3.75rem, 4.2vw, 4.5rem);
  height: 1.625rem;
  min-width: 0;
}

.os-sound-card__wave {
  position: relative;
  width: 100%;
  height: 1.5625rem;
}

.os-sound-card__wave-img {
  position: absolute;
  inset: 0;
  display: block;
  max-width: none;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.os-sound-card--street-primary .os-sound-card__wave-img {
  transform: translateY(-5px);
}

/* Highlighted segment: translucent acid box with 3px edge bars, per Figma. */
.os-sound-card__seg {
  position: absolute;
  top: 50%;
  left: var(--seg-left, 0%);
  right: var(--seg-right, 100%);
  height: 1.5rem;
  background: rgba(197, 255, 174, 0.1);
  transform: translateY(-50%);
  pointer-events: none;
}

.os-sound-card__seg::before,
.os-sound-card__seg::after {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 3px;
  background: rgba(197, 255, 174, 0.6);
  content: "";
}

.os-sound-card__seg::before {
  left: 0;
}

.os-sound-card__seg::after {
  right: 0;
}

.os-sound-card__wave-playhead {
  position: absolute;
  left: var(--playhead-x, 0%);
  top: -0.2rem;
  bottom: -0.2rem;
  width: 1px;
  background: rgba(197, 255, 174, 0.9);
  box-shadow: 0 0 4px rgba(197, 255, 174, 0.7);
  transform: translateX(-50%);
  opacity: 0;
  pointer-events: none;
  transition:
    left 80ms linear,
    opacity 200ms ease;
}

.os-sound-card[data-sound-playing] .os-sound-card__wave-playhead {
  opacity: 1;
}

.os-sound-card__play {
  position: relative;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  width: 1.375rem;
  height: 1.375rem;
  flex-shrink: 0;
}

.os-sound-card__play-icon {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.os-sound-card__play-icon--pause {
  display: none;
  padding: 0.2rem;
}

.os-sound-card[data-sound-playing] .os-sound-card__play-icon--play {
  display: none;
}

.os-sound-card[data-sound-playing] .os-sound-card__play-icon--pause {
  display: block;
}

.os-sound-card p img {
  width: 1.375rem;
  height: 1.375rem;
}

.os-sound-card p {
  font-size: 0.875rem;
}

.os-sound-card footer {
  font-size: 0.875rem;
}

.product-system {
  --product-pad: clamp(1.25rem, 3.25vw, 4rem);
  --product-scene-gap: clamp(4rem, 7.06vw, 7.625rem);
  /* overflow: hidden would turn the section into the sticky containment box
     and break position: sticky for the intro and steps frame; clip crops
     without creating a scroll container. */
  overflow: clip;
  background: var(--black);
  color: var(--white);
  padding: 0 var(--product-pad) clamp(4rem, 7.06vw, 7.625rem);
}

.product-system--tuner {
  min-height: 100svh;
  padding-top: 2rem;
}

.product-system--tuner .product-system__figure {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(20rem, 24rem);
  gap: 1rem;
  align-items: stretch;
  aspect-ratio: auto;
  min-height: min(76svh, 52rem);
}

.tuner-page {
  background: var(--black);
}

.tuner-page__main {
  display: grid;
  gap: 1rem;
}

.tuner-page__intro {
  padding: 2rem clamp(1.25rem, 3.25vw, 4rem) 0;
  color: var(--white);
}

.tuner-page__intro h1,
.tuner-page__intro p {
  margin: 0;
}

.tuner-page__intro h1 {
  color: var(--acid);
  font-size: 1rem;
  text-transform: uppercase;
}

.tuner-page__intro p {
  max-width: 42rem;
  margin-top: 0.75rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.875rem;
  line-height: 1.5;
}

.product-system--tuner .product-system__canvas {
  position: relative;
  grid-column: 1;
  min-height: min(76svh, 52rem);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.75rem;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    #070707;
  background-size: 3rem 3rem;
}

.product-system--tuner .product-system__image,
.product-system--tuner .part-card-wrap {
  display: none;
}

.product-system__inner {
  width: 100%;
}

.product-system--tuner .product-system__inner {
  max-width: 100rem;
  margin: 0 auto;
}

.product-system__intro {
  display: grid;
  gap: var(--product-scene-gap);
  align-content: center;
  max-width: 100rem;
  min-height: 100svh;
  margin: 0 auto;
  padding: clamp(2rem, 4.6vw, 5rem) 0;
  background: var(--black);
}

.product-system__title {
  display: flex;
  flex-direction: column;
  margin: 0;
  color: #1b1b1b;
  font-family:
    "F37 Moon",
    "Arial Black",
    "Helvetica Neue",
    Arial,
    sans-serif;
  font-size: clamp(4rem, 8.56vw, 9.25rem);
  font-weight: 900;
  line-height: 1.0676;
  text-transform: uppercase;
  white-space: nowrap;
}

.product-system__title > span:nth-child(2) {
  padding-left: clamp(7rem, 20.8vw, 22.5rem);
}

.product-system__title-line {
  display: block;
  overflow: hidden;
}

.product-system__title-char {
  display: inline-block;
  transform: translateY(105%);
  will-change: transform;
}

.product-system__title-space {
  display: inline-block;
  width: 0.34em;
}

.product-system__figure {
  position: relative;
  aspect-ratio: 1600 / 894;
  width: min(100%, 85rem);
  max-width: 100%;
  margin: 0 auto;
  contain: layout paint;
}

.product-system__canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  cursor: default;
}

.product-cutout-scene {
  --explode-progress: 0;
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.product-cutout {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 89.3%;
  max-width: none;
  height: 87.4%;
  object-fit: contain;
  opacity: 1;
  mix-blend-mode: normal;
  pointer-events: none;
  transition: filter 180ms ease;
  transform:
    translate(-50%, -50%)
    translate3d(
      calc(var(--explode-progress) * var(--explode-x, 0%)),
      calc(var(--explode-progress) * var(--explode-y, 0%)),
      0
    )
    scale(var(--part-scale, 1));
  transform-origin: 50% 50%;
}

.product-cutout--interface {
  --explode-x: -33%;
  --explode-y: -27%;
  --part-scale: 1.01;
  z-index: 3;
}

.product-cutout--engine {
  --explode-x: -10.5%;
  --explode-y: -18%;
  --part-scale: 1.02;
  z-index: 2;
}

.product-cutout--outer {
  --explode-x: 22%;
  --explode-y: -0.5%;
  --part-scale: 1.01;
  z-index: 1;
}

.product-hotspot {
  position: absolute;
  z-index: 3;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.product-hotspot:focus-visible {
  outline: 1px solid var(--acid);
  outline-offset: 0.25rem;
}

.product-hotspot--interface {
  top: 21%;
  left: 14%;
  width: 18%;
  height: 24%;
}

.product-hotspot--engine {
  top: 27%;
  left: 34%;
  width: 16%;
  height: 20%;
}

.product-hotspot--outer {
  top: 9%;
  left: 57%;
  width: 38%;
  height: 81%;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.product-system__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  opacity: 0.82;
  transition: opacity 200ms ease;
}

.product-system__image[hidden] {
  display: none;
}

.product-system__figure.is-3d-ready .product-system__image {
  opacity: 0;
}

.part-card-wrap {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

.part-card-wrap.is-following-pointer {
  right: auto;
}

.part-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
  width: 21.25rem;
  min-width: 21.25rem;
  min-height: 8.8125rem;
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: none;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  transform: translateY(0.75rem) scale(0.98);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
  backdrop-filter: blur(2px);
}

.part-card.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.part-card > * {
  position: relative;
  z-index: 1;
}

.progress-line {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(197, 255, 174, 0) 0%,
    rgb(197, 255, 174) 40%,
    rgb(197, 255, 174) 60%,
    rgba(197, 255, 174, 0) 100%
  );
  opacity: 0;
  transform: scaleX(0);
  transform-origin: 0 0.5px;
  transition:
    transform 5s linear,
    opacity 0.3s;
}

.part-card.is-active .progress-line {
  opacity: 1;
}

.part-card__thumb {
  flex: 0 0 3.3125rem;
  width: 3.3125rem;
  height: 3.8125rem;
  display: block;
  object-fit: contain;
  object-position: center;
  mix-blend-mode: normal;
}

.part-card-wrap--interface .part-card__thumb {
  transform: scale(5.3);
}

.part-card-wrap--engine .part-card__thumb {
  transform: scale(5.9);
}

.part-card-wrap--outer .part-card__thumb {
  transform: scale(1.85);
}

.part-card__text {
  display: flex;
  flex: 0 0 12.875rem;
  flex-direction: column;
  gap: 0.75rem;
  min-width: 0;
  width: 12.875rem;
}

.part-card h3,
.part-card p {
  margin: 0;
}

.part-card h3 {
  font-family:
    "F37 Moon",
    "Arial Black",
    "Helvetica Neue",
    Arial,
    sans-serif;
  font-size: 1.125rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.part-card p {
  font-family:
    "F37 Moon",
    "Helvetica Neue",
    Arial,
    sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.08;
}

.part-card-wrap--interface {
  top: 24.01%;
  left: 11.17%;
}

.part-card-wrap--engine {
  top: 0.19%;
  left: 34.32%;
}

.part-card-wrap--outer {
  top: 63.01%;
  right: 7.59%;
}

.product-steps-frame {
  max-width: 100rem;
  margin: var(--product-scene-gap) auto 0;
  background: var(--black);
  color: var(--white);
}

.product-steps-frame__inner {
  width: 100%;
}

.system-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px dashed #838383;
  background: var(--black);
  list-style: none;
}

.system-steps li {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: clamp(20rem, 22.08vw, 23.625rem);
  padding: clamp(1.25rem, 1.4vw, 1.5rem);
  border-right: 1px dashed #838383;
}

.system-steps li:last-child {
  border-right: 0;
}

.system-steps p {
  margin: 0;
  font-family:
    "F37 Moon",
    "Helvetica Neue",
    Arial,
    sans-serif;
  font-size: clamp(0.98rem, 1.05vw, 1.125rem);
  line-height: 1.5556;
}

.system-steps__label {
  color: rgba(255, 255, 255, 0.5);
  font-family:
    "Saans Mono",
    "Roboto Mono",
    "SFMono-Regular",
    Consolas,
    monospace !important;
  text-transform: uppercase;
}

.system-steps__label span {
  display: block;
  color: var(--acid);
}

.model-tuner {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 4;
  display: grid;
  gap: 0.625rem;
  width: min(20rem, calc(100% - 2rem));
  max-height: calc(100% - 2rem);
  overflow: auto;
  padding: 0.875rem;
  border: 1px solid rgba(197, 255, 174, 0.45);
  border-radius: 0.5rem;
  background: rgba(7, 7, 7, 0.78);
  color: var(--white);
  font-size: 0.75rem;
  backdrop-filter: blur(10px);
}

.product-system--tuner .model-tuner {
  position: static;
  grid-column: 2;
  width: 100%;
  max-height: min(76svh, 52rem);
}

.model-tuner h3 {
  margin: 0;
  color: var(--acid);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.model-tuner select,
.model-tuner input {
  width: 100%;
}

.model-tuner label {
  display: grid;
  gap: 0.25rem;
}

.model-tuner__value {
  float: right;
  color: rgba(255, 255, 255, 0.65);
}

.model-tuner__output {
  margin: 0;
  overflow: auto;
  color: var(--acid);
  font: inherit;
  line-height: 1.45;
  white-space: pre-wrap;
}

.model-tuner__section {
  display: grid;
  gap: 0.625rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 0.625rem;
}

.model-tuner__section summary {
  cursor: pointer;
  color: var(--acid);
  font-weight: 700;
}

.response-hero {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  min-height: 100svh;
  overflow: hidden;
  background: #181818;
  padding: clamp(1.5rem, 3.7vw, 4rem);
}

.response-hero__image {
  position: absolute;
  top: -66.52%;
  left: -13.11%;
  width: 142.68%;
  height: 187.08%;
  max-width: none;
  object-fit: cover;
}

.response-hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  width: 100%;
}

.response-hero__title {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: max-content;
  max-width: 100%;
  margin: 0;
  color: var(--white);
  font-family:
    "F37 Moon",
    "Helvetica Neue",
    Arial,
    sans-serif;
  font-size: clamp(2.25rem, 3.35vw, 4rem);
  font-weight: 900;
  line-height: 1.15625;
  text-align: right;
  text-transform: uppercase;
}

.response-hero__title span {
  display: block;
  white-space: nowrap;
}

.choice-section {
  overflow: hidden;
  background: #f1f0ef;
  color: var(--black);
  padding: clamp(5rem, 7.06vw, 7.625rem) clamp(1.25rem, 3.7vw, 4rem);
}

.choice-section__inner {
  display: grid;
  gap: clamp(6rem, 9.5vw, 10.25rem);
  max-width: 92.625rem;
  margin: 0 auto;
}

.choice-section__prompt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  font-family:
    "Saans Mono",
    "Roboto Mono",
    "SFMono-Regular",
    Consolas,
    monospace;
  font-size: clamp(1rem, 1.39vw, 1.5rem);
  font-weight: 500;
  line-height: 1.125;
  text-transform: capitalize;
}

.choice-section__prompt p {
  display: flex;
  gap: 0;
  align-items: center;
  margin: 0;
  text-transform: capitalize;
  white-space: nowrap;
}

.choice-section__prompt p::before {
  width: 0.375rem;
  height: 0.375rem;
  margin-right: 0.75rem;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.letter-drop {
  display: inline-block;
  opacity: 0;
  transform: translateY(-1.1em);
  transition:
    opacity 260ms ease,
    transform 360ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: calc(var(--letter-index) * 45ms);
}

.letter-space {
  display: inline-block;
  width: 0.34em;
}

.is-letter-drop-active .letter-drop {
  opacity: 1;
  transform: translateY(0);
}

.typewriter-char {
  display: inline-block;
  opacity: 0;
  transition: opacity 1ms linear;
  transition-delay: calc(var(--typewriter-index) * 70ms);
}

.typewriter-space {
  display: inline-block;
  width: 0.34em;
}

.is-typewriter-active .typewriter-char {
  opacity: 1;
}

.is-typewriter-active .typewriter-char:last-child {
  position: relative;
}

.is-typewriter-active .typewriter-char:last-child::after {
  position: absolute;
  top: 0.1em;
  right: -0.28em;
  width: 1px;
  height: 0.85em;
  background: currentColor;
  content: "";
  animation: typewriter-caret 850ms steps(1, end) infinite;
  animation-delay: calc(var(--typewriter-index) * 70ms + 160ms);
}

@keyframes typewriter-caret {
  50% {
    opacity: 0;
  }
}

.texture-stack {
  position: relative;
  width: min(100%, 52.184rem);
  height: clamp(27rem, 32.92vw, 35.55rem);
  margin: 0 auto;
}

.texture-card {
  position: absolute;
  top: var(--top, 0);
  left: var(--left);
  width: clamp(8.75rem, 14.93vw, 16.5rem);
  height: clamp(19rem, 32.4vw, 35rem);
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  transform: translateY(var(--raise, 0)) rotate(0.61deg);
  transition:
    transform 220ms ease,
    filter 220ms ease;
}

.texture-card:hover,
.texture-card:focus-visible,
.texture-card.is-featured {
  --raise: -4.25rem;
  z-index: 5;
  filter: drop-shadow(0 1.25rem 1.5rem rgba(0, 0, 0, 0.12));
}

.texture-card:focus-visible {
  outline: 2px solid var(--acid);
  outline-offset: 0.25rem;
}

.texture-card__image {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 48% 48% 39% 39% / 23% 23% 12% 12%;
}

.texture-card__image::before {
  position: absolute;
  top: -31.5%;
  left: var(--sprite-left);
  width: 628%;
  height: 174%;
  background-image: url("assets/texture-devices.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  content: "";
}

.texture-card__label {
  position: absolute;
  top: var(--label-top);
  left: var(--label-left);
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: var(--label-width);
  padding: 1.5rem;
  overflow: hidden;
  border: 1px solid rgba(7, 7, 7, 0.14);
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.2);
  color: var(--black);
  font-family:
    "F37 Moon",
    "Helvetica Neue",
    Arial,
    sans-serif;
  font-size: clamp(0.75rem, 1.04vw, 1.125rem);
  line-height: 1;
  white-space: nowrap;
  backdrop-filter: blur(2px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(0.75rem) scale(0.98);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.texture-card__label.is-following-pointer {
  top: 0;
  left: 0;
}

.texture-card:hover .texture-card__label,
.texture-card:focus-visible .texture-card__label,
.texture-card.is-featured .texture-card__label {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.texture-card__label::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(197, 255, 174, 0) 0%,
    rgb(197, 255, 174) 40%,
    rgb(197, 255, 174) 60%,
    rgba(197, 255, 174, 0) 100%
  );
  content: "";
  opacity: 0;
  transform: scaleX(0);
  transform-origin: 0 0.5px;
  transition:
    transform 5s linear,
    opacity 0.3s;
}

.texture-card:hover .texture-card__label::before,
.texture-card:focus-visible .texture-card__label::before,
.texture-card.is-featured .texture-card__label::before {
  opacity: 1;
  transform: scaleX(1);
}

.texture-card--tort {
  --left: 0;
  --sprite-left: -11.63%;
  --label-top: 28%;
  --label-left: 10%;
  --label-width: 10.25rem;
}

.texture-card--frost {
  --left: 15.57%;
  --sprite-left: -137.35%;
  --label-top: 18%;
  --label-left: 32%;
  --label-width: 7.0625rem;
}

.texture-card--black {
  --left: 31.62%;
  --sprite-left: -256.76%;
  --label-top: 70%;
  --label-left: 42%;
  --label-width: 7.3125rem;
}

.texture-card--rose {
  --left: 51.02%;
  --sprite-left: -385.66%;
  --top: 0;
  --label-top: 12%;
  --label-left: 44%;
  --label-width: 7.6875rem;
}

.texture-card--dot {
  --left: 68.74%;
  --sprite-left: -516.86%;
  --label-top: 27%;
  --label-left: 48%;
  --label-width: 10.25rem;
}

.spec-section {
  background: #f1f0ef;
  color: var(--black);
  padding-top: clamp(5rem, 7.06vw, 7.625rem);
}

.spec-section__header {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  align-items: end;
  justify-content: space-between;
  gap: clamp(4rem, 17.13vw, 16.1875rem);
  padding: 0 clamp(1.25rem, 3.7vw, 4rem) clamp(4.5rem, 7.06vw, 7.625rem);
}

.spec-section__header h2 {
  margin: 0;
  font-family:
    "F37 Moon",
    "Arial Black",
    "Helvetica Neue",
    Arial,
    sans-serif;
  font-size: clamp(2.375rem, 3.125vw, 3.375rem);
  font-weight: 900;
  line-height: 1.08;
}

.spec-section__header h2 span {
  display: block;
}

.spec-section__header p {
  justify-self: end;
  width: max-content;
  max-width: 100%;
  margin: 0;
  font-family:
    "F37 Moon",
    "Helvetica Neue",
    Arial,
    sans-serif;
  font-size: clamp(1rem, 1.39vw, 1.5rem);
  line-height: 1.22;
  text-align: right;
}

.spec-section__header p span {
  display: block;
}

.spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid #c8c8c8;
}

.spec-panel {
  min-height: clamp(25rem, 34.84vw, 37.625rem);
  border-bottom: 1px solid #c8c8c8;
}

.spec-panel:nth-child(odd) {
  border-right: 1px solid #c8c8c8;
}

.spec-panel__label {
  margin: 0;
  padding: clamp(3.5rem, 3.7vw, 4rem) clamp(1.25rem, 3.7vw, 4rem) 1.375rem;
  font-family:
    "Saans Mono",
    "Roboto Mono",
    "SFMono-Regular",
    Consolas,
    monospace;
  font-size: clamp(0.875rem, 1.04vw, 1.125rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.125rem;
  text-transform: uppercase;
}

.spec-panel--features,
.spec-panel--box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.spec-list {
  margin: 0;
  padding: 0;
}

.spec-list--features {
  display: grid;
}

.spec-list--features div,
.spec-list--box li {
  position: relative;
  display: grid;
  grid-template-columns: minmax(6rem, 14rem) minmax(12rem, 24rem);
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-height: 4.3125rem;
  padding: 0 clamp(1.25rem, 3.7vw, 4rem);
  border-top: 1px solid #c8c8c8;
}

.spec-list--features div::before,
.spec-list--box li::before {
  position: absolute;
  top: 1.1rem;
  right: 0;
  bottom: 1.1rem;
  left: 0;
  background: var(--black);
  content: "";
  opacity: 0;
  transition: opacity 160ms ease;
}

.spec-list--features div:last-child,
.spec-list--box li:last-child {
  border-bottom: 0;
}

.spec-list--features div,
.spec-list--box li {
  transition: color 160ms ease;
}

.spec-list--features div:hover,
.spec-list--features div:focus-within,
.spec-list--box li:hover,
.spec-list--box li:focus-within {
  color: var(--white);
}

.spec-list--features div:hover::before,
.spec-list--features div:focus-within::before,
.spec-list--box li:hover::before,
.spec-list--box li:focus-within::before {
  opacity: 1;
}

.spec-list--features div:hover dt,
.spec-list--features div:focus-within dt,
.spec-list--box li:hover span:first-child,
.spec-list--box li:focus-within span:first-child {
  color: var(--white);
}

.spec-list dt,
.spec-list dd,
.spec-list--box span {
  position: relative;
  z-index: 1;
}

.spec-list dt,
.spec-list--box span:first-child {
  color: #757575;
  font-family:
    "Saans Mono",
    "Roboto Mono",
    "SFMono-Regular",
    Consolas,
    monospace;
  font-size: clamp(0.875rem, 1.04vw, 1.125rem);
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}

.spec-list dd,
.spec-list--box span:last-child {
  margin: 0;
  font-family:
    "F37 Moon",
    "Helvetica Neue",
    Arial,
    sans-serif;
  font-size: clamp(0.875rem, 1.04vw, 1.125rem);
  line-height: 1.55;
  text-align: right;
  text-transform: capitalize;
}

.spec-panel--dimensions,
.spec-panel--image {
  display: grid;
  place-items: center;
  overflow: hidden;
}

.dimension-figure {
  position: relative;
  width: min(100%, 54rem);
  padding: clamp(2rem, 4vw, 4rem);
}

.dimension-figure img {
  width: 100%;
  transform: scale(1.1);
}

.spec-panel--image img {
  width: min(76%, 28.5rem);
}

.spec-list--box {
  list-style: none;
}

.spec-list--box li {
  grid-template-columns: minmax(3rem, 6rem) max-content;
}

.spec-list--box span:last-child {
  text-align: right;
  white-space: nowrap;
}

.buy-page {
  background: #bfbfbf;
}

.m2os-page {
  background: var(--black);
  color: var(--white);
}

.site-menu--light {
  color: var(--white);
}

.site-menu--light .site-menu__nav,
.site-menu--light .site-menu__icon {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.os-hero {
  min-height: 100svh;
  padding: clamp(8rem, 13vw, 14.5rem) clamp(1.25rem, 3.7vw, 4rem) 4rem;
  background: var(--black);
  color: var(--white);
}

.os-hero__intro {
  --os-hero-meta-size: clamp(1rem, 1.39vw, 1.5rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: clamp(2rem, 6vw, 7rem);
  margin-bottom: clamp(4rem, 8vw, 7.5rem);
}

.os-hero__title {
  width: min(100%, clamp(31rem, 39.41vw, 42.5625rem));
  margin: 0;
  font-family:
    "F37 Moon",
    "Arial Black",
    "Helvetica Neue",
    Arial,
    sans-serif;
  font-size: clamp(2rem, 3.15vw, 3.375rem);
  font-weight: 900;
  line-height: 1.185185;
  text-align: left;
  text-transform: uppercase;
}

.os-hero__title > span {
  display: block;
  white-space: nowrap;
}

.os-hero__title > span:first-child {
  text-align: right;
}

.os-hero__round-colon {
  display: inline;
  font-family: "Segoe UI", "Trebuchet MS", sans-serif;
  font-weight: 700;
}

.os-hero__subhead {
  margin: clamp(0.625rem, 0.81vw, 0.875rem) 0 0;
  font-family:
    "F37 Moon",
    "Helvetica Neue",
    Arial,
    sans-serif;
  font-size: var(--os-hero-meta-size);
  line-height: 1;
  white-space: nowrap;
}

.os-hero__actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-bottom: 0;
  color: rgba(255, 255, 255, 0.62);
  font-family:
    "Saans Mono",
    "Roboto Mono",
    "SFMono-Regular",
    Consolas,
    monospace;
  font-size: clamp(0.875rem, 1.04vw, 1.125rem);
  line-height: 1;
  white-space: nowrap;
}

.os-hero__actions p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  color: var(--white);
  font-family:
    "F37 Moon",
    "Helvetica Neue",
    Arial,
    sans-serif;
  font-size: clamp(0.8125rem, 0.93vw, 1rem);
}

.os-hero__signal-dot {
  width: 0.25rem;
  height: 0.25rem;
  flex: 0 0 0.25rem;
  border-radius: 50%;
  background: currentColor;
}

.os-hero__actions a {
  color: inherit;
  text-decoration: none;
}

.os-hero__actions a span {
  margin-left: 0.75rem;
}

.os-console {
  overflow-x: auto;
}

.os-console__inner {
  position: relative;
  min-width: 64rem;
  aspect-ratio: 1600 / 791;
  container-type: inline-size;
  overflow: hidden;
  border: 1px solid #2b2b2b;
  border-radius: 1.375rem;
  background: transparent;
}

.os-console__inner::before {
  position: absolute;
  top: 1.64%;
  left: 0.75%;
  width: 98.44%;
  height: 95.95%;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 1rem;
  background: #0f0f0f;
  content: "";
}

.os-console__header {
  position: absolute;
  z-index: 1;
  top: 8.49%;
  left: 4.06%;
  color: rgba(255, 255, 255, 0.52);
  font-family:
    "Saans Mono",
    "Roboto Mono",
    "SFMono-Regular",
    Consolas,
    monospace;
  font-size: clamp(0.72rem, 1.125vw, 1.125rem);
  font-weight: 500;
  line-height: 1;
}

.os-console__body {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.os-chart {
  position: absolute;
  top: 18.33%;
  left: 2.5%;
  width: 72.25%;
  height: 72.95%;
}

.os-chart__label {
  position: absolute;
  top: 1.56%;
  left: 2.12%;
  display: grid;
  gap: 0.38rem;
  font-family:
    "Saans Mono",
    "Roboto Mono",
    "SFMono-Regular",
    Consolas,
    monospace;
  font-size: clamp(0.64rem, 1vw, 1rem);
  line-height: 1;
  text-transform: uppercase;
}

.os-chart__label span {
  color: rgba(255, 255, 255, 0.68);
  text-transform: none;
}

.os-chart__levels {
  position: absolute;
  top: 16.3%;
  left: 2.16%;
  display: grid;
  grid-template-rows: repeat(6, 1fr);
  width: 8.1rem;
  height: 61.4%;
  color: var(--white);
  font-family:
    "Saans Mono",
    "Roboto Mono",
    "SFMono-Regular",
    Consolas,
    monospace;
  font-size: clamp(0.54rem, 0.75vw, 0.75rem);
  line-height: 1.1;
}

.os-chart__levels span {
  align-self: center;
}

.os-chart__plot {
  position: relative;
  width: 100%;
  height: 100%;
}

.os-chart__grid {
  position: absolute;
  top: 16.8%;
  left: 13.25%;
  width: 89.6%;
  height: 67.75%;
  background:
    repeating-linear-gradient(
      to bottom,
      transparent 0,
      transparent calc(20% - 1px),
      rgba(255, 255, 255, 0.15) calc(20% - 1px),
      rgba(255, 255, 255, 0.15) 20%
    ),
    linear-gradient(
      to bottom,
      transparent calc(100% - 1px),
      rgba(255, 255, 255, 0.24) calc(100% - 1px)
    );
}

.os-arousal-field {
  position: absolute;
  top: calc(34.32% - 9.15%);
  left: 20.55%;
  width: 79.36%;
  height: 59.39%;
  max-width: none;
}

.os-timeline-points {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: auto;
}

.os-timeline-points.is-over-zone {
  cursor: pointer;
}

.os-timeline-point {
  position: absolute;
  top: var(--point-y);
  left: var(--point-x);
  width: 0.875rem;
  height: 0.875rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.os-timeline-point::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.3rem;
  height: 0.3rem;
  border: 1px solid transparent;
  border-radius: 0.08rem;
  background: transparent;
  content: "";
  transform: translate(-50%, -50%);
  transition:
    background-color 120ms ease,
    border-color 120ms ease,
    box-shadow 120ms ease;
}

.os-timeline-point:hover::before,
.os-timeline-point:focus-visible::before,
.os-timeline-point.is-active::before {
  border-color: var(--white);
  background: var(--acid);
  box-shadow: 0 0 0 2px rgba(197, 255, 174, 0.32);
}

.os-timeline-point:focus-visible {
  outline: none;
}

.os-timeline-preview {
  position: absolute;
  top: var(--preview-y, 79.75%);
  left: var(--preview-x, 24.45%);
  width: 7.5625rem;
  height: 5rem;
  overflow: hidden;
  border: 0.5px solid var(--white);
  border-radius: 0.375rem;
  background: var(--black);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, calc(-100% - 0.75rem)) scale(0.98);
  transition:
    opacity 150ms ease,
    transform 150ms ease;
}

.os-timeline-preview img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: var(--preview-position, center);
}

.os-timeline-preview span {
  position: absolute;
  top: 0.35rem;
  left: 0.5rem;
  color: var(--white);
  font-family:
    "Saans Mono",
    "Roboto Mono",
    monospace;
  font-size: 0.625rem;
  font-weight: 500;
  line-height: 1;
}

.os-timeline-preview.is-visible {
  opacity: 1;
  transform: translate(-50%, calc(-100% - 0.75rem)) scale(1);
}

.os-event {
  position: absolute;
  top: calc(var(--top) - 9.15%);
  left: calc(var(--left) + 4.63%);
  display: grid;
  gap: 0.125rem;
  color: var(--white);
  font-family:
    "Saans Mono",
    "Roboto Mono",
    "SFMono-Regular",
    Consolas,
    monospace;
  font-size: clamp(0.62rem, 0.875vw, 0.875rem);
  line-height: 1.28;
}

.os-event__line {
  position: absolute;
  top: var(--line-top);
  left: var(--line-left);
  width: 1px;
  height: var(--line-h);
  max-width: none;
}

.os-event__mark {
  position: absolute;
  top: var(--mark-top);
  left: var(--mark-left);
  z-index: 1;
  width: var(--mark-w, 1.312rem);
  height: var(--mark-h, 1.212rem);
  max-width: none;
}

.os-event__mark--down {
  transform: rotate(180deg);
}

.os-event__mark--plus {
  width: 1.875rem;
  height: 1.875rem;
  color: var(--acid);
}

.os-event__mark--plus::after {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  line-height: 1;
  content: "+";
}

.os-event__mark--plus img {
  width: 100%;
  height: 100%;
  max-width: none;
}

.os-event span {
  color: rgba(255, 255, 255, 0.52);
}

.os-event strong {
  font-weight: 500;
}

.os-event--active strong {
  color: var(--acid);
}

.os-event--one {
  --left: 28.46%;
  --top: 33.45%;
  --mark-left: -1.55rem;
  --mark-top: 0.08rem;
  --line-left: -0.9rem;
  --line-top: 1.35rem;
  --line-h: 11.5625rem;
}

.os-event--two {
  --left: 40.48%;
  --top: 19.93%;
  --mark-left: -1.45rem;
  --mark-top: 0.06rem;
  --line-left: -0.8rem;
  --line-top: 1.35rem;
  --line-h: 13.078rem;
}

.os-event--three {
  --left: 50.26%;
  --top: 55.63%;
  --mark-left: -1.55rem;
  --mark-top: 0.1rem;
  --line-left: -0.9rem;
  --line-top: 1.35rem;
  --line-h: 7.395rem;
}

.os-event--four {
  --left: 64.48%;
  --top: 26.86%;
  --mark-left: -1.45rem;
  --mark-top: 0.06rem;
  --line-left: -0.8rem;
  --line-top: 1.35rem;
  --line-h: 12.815rem;
}

.os-event--five {
  --left: 79.21%;
  --top: 7.97%;
  --mark-left: -2rem;
  --mark-top: 0.7rem;
  --line-left: -1.05rem;
  --line-top: 2.25rem;
  --line-h: 17.539rem;
}

.os-event--six {
  --left: 93.6%;
  --top: 35.18%;
  --mark-left: -1.45rem;
  --mark-top: 0.06rem;
  --line-left: -0.8rem;
  --line-top: 1.35rem;
  --line-h: 12.618rem;
}

.os-chart__times {
  --major-count: 13;
  position: absolute;
  top: 84.55%;
  left: 13.25%;
  width: 89.6%;
  height: 11.6%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  color: var(--white);
  font-family:
    "Saans Mono",
    "Roboto Mono",
    "SFMono-Regular",
    Consolas,
    monospace;
  font-size: clamp(0.52rem, 0.75vw, 0.75rem);
  line-height: 1;
  text-align: center;
}

.os-chart__times::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 0.75rem;
  background: repeating-linear-gradient(
    to right,
    transparent 0,
    transparent calc((100% / (var(--major-count) - 1) / 6) - 1px),
    rgba(255, 255, 255, 0.23) calc((100% / (var(--major-count) - 1) / 6) - 1px),
    rgba(255, 255, 255, 0.23) calc(100% / (var(--major-count) - 1) / 6)
  );
  content: "";
}

.os-chart__times span {
  position: relative;
  flex: 0 0 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 100%;
  width: 0;
  min-width: 0;
  padding-top: 1.65rem;
  white-space: nowrap;
}

.os-chart__times span::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 1.2rem;
  background: rgba(255, 255, 255, 0.42);
  content: "";
  transform: translateX(-50%);
}

.os-chart__origin {
  color: rgba(255, 255, 255, 0.52);
  text-transform: none;
}

.os-console__metrics {
  position: absolute;
  top: 33.12%;
  right: 3.62%;
  width: 13%;
  height: 49.94%;
  display: grid;
  grid-template-rows: repeat(3, 29.62%);
  gap: 5.57%;
}

.os-console__metrics div {
  min-height: 0;
  padding: 7.69%;
  border: 1px solid rgba(197, 255, 174, 0.1);
  border-radius: 0.5rem;
  color: rgba(255, 255, 255, 0.55);
  font-family:
    "Saans Mono",
    "Roboto Mono",
    "SFMono-Regular",
    Consolas,
    monospace;
  font-size: clamp(0.4rem, 0.625cqw, 0.625rem);
  line-height: 1;
}

.os-console__metrics h2 {
  margin: 0 0 0.75cqw;
  color: var(--acid);
  font-size: inherit;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.os-console__metrics p {
  margin: 0;
  white-space: nowrap;
}

.os-console__metrics > div:not(.os-console__signal-card) p + p {
  margin-top: 0.375cqw;
}

.os-console__signal-card {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.os-console__signal-label {
  color: #9a9f9b;
  font-size: inherit;
  line-height: 1;
}

.os-meter {
  display: block;
  width: 75.16%;
  height: 0.31cqw;
  max-width: none;
  margin: 0.375cqw 0 0.875cqw;
  object-fit: fill;
}

.os-console__signal-card .os-meter:last-child {
  margin-bottom: 0;
}

.buy-section {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  min-height: 100svh;
  overflow: hidden;
  padding: clamp(1.25rem, 3.7vw, 4rem);
  background-color: #bababa;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1728 1117' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'%3E%3Crect width='100%25' height='100%25' fill='url(%23gradient)'/%3E%3Cdefs%3E%3CradialGradient id='gradient' gradientUnits='userSpaceOnUse' cx='0' cy='0' r='10' gradientTransform='matrix(-39.15 165.25 -255.64 -60.565 942 -535.5)'%3E%3Cstop stop-color='%23516462' stop-opacity='.5'/%3E%3Cstop offset='.5' stop-color='%23888f8e' stop-opacity='.75'/%3E%3Cstop offset='1' stop-color='%23bababa'/%3E%3C/radialGradient%3E%3C/defs%3E%3C/svg%3E");
  background-size: 100% 100%;
  color: var(--white);
}

.buy-section__product {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(23rem, 38.95vw, 42.0625rem);
  height: clamp(22rem, 37.15vw, 40.125rem);
  overflow: hidden;
  transform: translate(-50%, -50%);
}

.buy-section__product img {
  position: absolute;
  top: -17.16%;
  left: -70.91%;
  width: 244.87%;
  max-width: none;
  height: 144.35%;
  object-fit: cover;
  mix-blend-mode: screen;
}

.buy-section__product img[data-product-spin] {
  top: 50%;
  left: 50%;
  width: 220%;
  height: 100%;
  object-fit: contain;
  transform: translate(-50%, -50%);
}

.order-card {
  --order-card-inline-padding: 1.5rem;
  position: relative;
  z-index: 1;
  width: min(100%, 25.375rem);
  overflow: hidden;
  border-radius: 1.375rem;
  color: var(--white);
}

.order-card__top {
  display: grid;
  gap: 1.375rem;
  padding: 2rem var(--order-card-inline-padding);
  border-radius: 1.375rem 1.375rem 0 0;
  background: rgba(7, 7, 7, 0.5);
}

.order-card__summary,
.order-card__config {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.75rem;
}

.order-card__summary h1,
.order-card__summary h2,
.order-card__summary p,
.order-card__config p,
.order-card__config strong,
.order-card__bottom p {
  margin: 0;
}

.order-card__summary h1,
.order-card__summary h2 {
  font-family:
    "F37 Moon",
    "Arial Black",
    "Helvetica Neue",
    Arial,
    sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1.08;
  text-transform: uppercase;
}

.order-card__summary > div:first-child {
  display: grid;
  flex: 0 1 14.75rem;
  gap: 0.375rem;
}

.order-card__summary p,
.order-card__bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-family:
    "F37 Moon",
    "Helvetica Neue",
    Arial,
    sans-serif;
  font-size: 0.875rem;
  line-height: 1.2;
  text-transform: capitalize;
}

.order-card__config p,
.order-card__options legend {
  color: rgba(255, 255, 255, 0.5);
  font-family:
    "Saans Mono",
    "Roboto Mono",
    "SFMono-Regular",
    Consolas,
    monospace;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: normal;
  text-transform: capitalize;
}

.order-card__quantity {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family:
    "F37 Moon",
    "Helvetica Neue",
    Arial,
    sans-serif;
  font-size: 1.125rem;
}

.order-card__quantity button,
.order-card__config button {
  display: inline-grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: rgba(7, 7, 7, 0.3);
  color: var(--white);
  cursor: pointer;
  font: inherit;
}

.order-card__quantity button {
  width: 1.5rem;
  height: 1.5rem;
}

.order-card__config {
  position: relative;
  align-items: flex-end;
  padding-top: 1.375rem;
}

.order-card__config::before {
  position: absolute;
  top: 0;
  right: calc(-1 * var(--order-card-inline-padding));
  left: calc(-1 * var(--order-card-inline-padding));
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  content: "";
}

.order-card__config > div {
  flex: 0 1 16.75rem;
  min-width: 0;
}

.order-card__config strong {
  display: block;
  margin-top: 0.5rem;
  font-family:
    "F37 Moon",
    "Helvetica Neue",
    Arial,
    sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.25;
  text-transform: capitalize;
  white-space: nowrap;
}

.order-card__config button {
  flex: 0 0 auto;
  width: 2.125rem;
  height: 2.125rem;
}

.order-card__config-toggle {
  position: relative;
}

.order-card__chevron {
  width: 0.5rem;
  height: 0.5rem;
  border-top: 1px solid currentColor;
  border-left: 1px solid currentColor;
  transform: translateY(0.125rem) rotate(45deg);
  transition: transform 220ms ease;
}

.order-card.is-config-open .order-card__chevron {
  transform: translateY(-0.125rem) rotate(225deg);
}

.order-card__options {
  display: grid;
  gap: 1.375rem;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition:
    max-height 320ms cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 180ms ease,
    visibility 0s linear 320ms;
}

.order-card.is-config-open .order-card__options {
  max-height: 22rem;
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}

.order-card__options fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.order-card__options legend {
  width: 100%;
  margin-bottom: 0.5rem;
}

.order-card__plan-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.order-card__plan-grid button {
  display: grid;
  min-width: 0;
  min-height: 7rem;
  padding: 0.75rem;
  border: 0.5px solid rgba(255, 255, 255, 0.5);
  border-radius: 0.75rem;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-family: "F37 Moon", "Helvetica Neue", Arial, sans-serif;
  text-align: left;
}

.order-card__plan-grid button[aria-pressed="true"] {
  background: rgba(7, 7, 7, 0.1);
}

.order-card__plan-grid span {
  font-size: 1.125rem;
}

.order-card__plan-grid small {
  margin-top: 0.25rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  line-height: normal;
}

.order-card__plan-grid b {
  align-self: end;
  justify-self: end;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  font-weight: 400;
}

.order-card__color-grid {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  justify-content: space-between;
  gap: 0.5rem 0.75rem;
}

.order-card__color-grid button {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-family: "F37 Moon", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.125rem;
  white-space: nowrap;
}

.order-swatch {
  flex: 0 0 auto;
  width: 0.75rem;
  height: 0.75rem;
  border: 0;
  border-radius: 50%;
}

.order-swatch--rose {
  background: #ffe3fe;
}

.order-swatch--black {
  background: #070707;
}

.order-swatch--clear {
  background: rgba(255, 255, 255, 0.1);
}

.order-swatch--tort {
  background: conic-gradient(from 30deg, #16110c, #9b6b2f, #20150d, #c59851, #16110c);
}

.order-swatch--dot {
  background:
    radial-gradient(circle, #070707 30%, transparent 34%) 0 0 / 4px 4px,
    #d9ddde;
}

.order-card__bottom {
  display: grid;
  gap: 0.75rem;
  justify-items: center;
  padding: 2rem var(--order-card-inline-padding);
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 0 0 1.375rem 1.375rem;
  background: rgba(7, 7, 7, 0.6);
}

.order-card__buy {
  width: 100%;
  padding: 0.875rem 2rem;
  border: 0;
  border-radius: 0.5rem;
  background: var(--acid);
  color: var(--black);
  cursor: pointer;
  font-family:
    "Saans Mono",
    "Roboto Mono",
    "SFMono-Regular",
    Consolas,
    monospace;
  font-size: 1.125rem;
  font-weight: 500;
  text-transform: capitalize;
  box-shadow: inset 0 -1px 6px rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.order-card__buy:hover,
.order-card__buy:focus-visible {
  background: var(--white);
}

.model-viewer-page {
  min-height: 100svh;
  background: #070707;
}

.model-viewer-page[data-viewer-background="light"] {
  background: #f1f0ef;
}

.model-viewer-page[data-viewer-background="transparent"] {
  background:
    linear-gradient(45deg, rgba(255, 255, 255, 0.08) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(255, 255, 255, 0.08) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(255, 255, 255, 0.08) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(255, 255, 255, 0.08) 75%),
    #1b1b1b;
  background-position:
    0 0,
    0 0.5rem,
    0.5rem -0.5rem,
    -0.5rem 0;
  background-size: 1rem 1rem;
}

.model-viewer-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 24rem);
  min-height: 100svh;
}

.model-viewer-stage {
  position: relative;
  min-height: 100svh;
}

.model-viewer-stage canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.model-viewer-status {
  position: absolute;
  left: 1.5rem;
  bottom: 1.5rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8125rem;
}

.model-viewer-page[data-viewer-background="light"] .model-viewer-status {
  color: rgba(7, 7, 7, 0.72);
}

.model-viewer-controls {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(7, 7, 7, 0.78);
  color: var(--white);
  overflow-y: auto;
}

.model-viewer-controls h1 {
  margin: 1rem 0;
  font-family:
    "F37 Moon",
    "Arial Black",
    "Helvetica Neue",
    Arial,
    sans-serif;
  font-size: 2rem;
  line-height: 1;
  text-transform: uppercase;
}

.model-viewer-control-group {
  display: grid;
  gap: 0.9rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.04);
}

.model-viewer-control-group h2 {
  margin: 0;
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08rem;
  text-transform: uppercase;
}

.model-viewer-controls label {
  display: grid;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}

.model-viewer-controls select,
.model-viewer-controls button,
.model-viewer-controls input[type="range"] {
  width: 100%;
  min-height: 2.75rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0.5rem;
  background: #f1f0ef;
  color: var(--black);
  padding: 0 0.75rem;
}

.model-viewer-controls select {
  color-scheme: light;
}

.model-viewer-controls option,
.model-viewer-controls optgroup {
  background: #f1f0ef;
  color: var(--black);
}

.model-viewer-controls button {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  cursor: pointer;
}

.model-viewer-controls input[type="range"] {
  min-height: auto;
  padding: 0;
  accent-color: var(--acid);
  background: transparent;
}

.model-viewer-controls input:disabled {
  cursor: not-allowed;
  opacity: 0.42;
}

.model-viewer-controls button:hover,
.model-viewer-controls button:focus-visible,
.model-viewer-back:hover,
.model-viewer-back:focus-visible {
  border-color: var(--acid);
  color: var(--acid);
}

.model-viewer-check {
  display: flex !important;
  grid-template-columns: none;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem !important;
}

.model-viewer-check input {
  width: 1rem;
  height: 1rem;
  accent-color: var(--acid);
}

.model-viewer-back {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  text-decoration: none;
}

.model-viewer-note {
  margin: auto 0 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.75rem;
  line-height: 1.45;
}

.site-footer {
  --footer-panel-height: clamp(22rem, 24.88vw, 26.875rem);
  --footer-product-height: clamp(26.5rem, 40.6vw, 44rem);
  position: relative;
  z-index: 0;
  min-height: calc(100svh + var(--footer-panel-height));
  overflow: visible;
  background: transparent;
  color: var(--black);
}

body > main {
  position: relative;
  z-index: 1;
}

.site-footer__product-stage {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100svh;
  pointer-events: none;
}

.site-footer__product-fixed {
  position: fixed;
  inset: 0;
  z-index: 0;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100svh;
  background: #bfbfbf;
  opacity: 1;
  pointer-events: none;
  visibility: visible;
}

.site-footer__product-frame {
  position: relative;
  width: clamp(24rem, 37.1vw, 40rem);
  height: var(--footer-product-height);
  overflow: hidden;
}

.site-footer__product-frame img {
  position: absolute;
  top: -20.72%;
  left: -99.09%;
  width: 292.24%;
  max-width: none;
  height: 150.21%;
  object-fit: cover;
  mix-blend-mode: screen;
}

.site-footer__product-frame img[data-product-spin] {
  top: 50%;
  left: 50%;
  width: 220%;
  height: 86%;
  object-fit: contain;
  transform: translate(-50%, -50%);
}

.site-footer__panel {
  position: relative;
  z-index: 2;
  min-height: var(--footer-panel-height);
  padding: 1.5rem clamp(1.25rem, 3.7vw, 4rem);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  box-shadow: inset 0 -1px 6px rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20px);
}

.site-footer__panel a {
  color: inherit;
  text-decoration: none;
}

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

.site-footer__nav {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  padding-right: clamp(0rem, 9.14vw, 9.875rem);
}

.site-footer__links,
.site-footer__social {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.site-footer__links,
.site-footer__contact {
  font-family:
    "Saans Mono",
    "Roboto Mono",
    "SFMono-Regular",
    Consolas,
    monospace;
  font-size: clamp(1rem, 1.27vw, 1.375rem);
  font-weight: 500;
  line-height: 1;
  text-transform: capitalize;
}

.site-footer__links {
  min-width: 9.5rem;
}

.site-footer__contact {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 9rem;
  min-width: 17.125rem;
  margin-left: clamp(4rem, 8.35vw, 9rem);
}

.site-footer__legal {
  position: absolute;
  right: clamp(1.25rem, 3.7vw, 4rem);
  bottom: 1.5rem;
  left: clamp(1.25rem, 3.7vw, 4rem);
  display: flex;
  align-items: end;
  gap: clamp(4rem, 17.82vw, 19.25rem);
  color: var(--black);
  font-family:
    "Saans Mono",
    "Roboto Mono",
    "SFMono-Regular",
    Consolas,
    monospace;
  font-size: clamp(0.625rem, 0.81vw, 0.875rem);
  font-weight: 500;
  line-height: 1.2;
  text-transform: capitalize;
}

.site-footer__legal p {
  margin: 0;
}

.site-footer__legal p:first-child {
  flex: 0 1 29.625rem;
}

.site-footer__legal p:last-child {
  display: grid;
  gap: 0.2rem;
  white-space: nowrap;
}

@media (max-width: 760px) {
  .site-menu {
    padding: 1rem;
  }

  .site-menu__status {
    font-size: 0.6875rem;
  }

  .site-menu__actions {
    position: relative;
  }

  .site-menu__nav {
    position: absolute;
    top: 0;
    right: calc(100% + 0.25rem);
    align-items: stretch;
    flex-direction: column;
    justify-content: flex-start;
    width: 3.375rem;
    min-width: 0;
    height: 3.375rem;
    transition:
      width 180ms ease,
      height 180ms ease;
  }

  .site-menu.is-menu-open .site-menu__nav {
    width: 6.25rem;
    height: 16.875rem;
  }

  .site-menu__nav a {
    flex: 0 0 2.7rem;
    order: 0;
    width: 100%;
    height: 2.7rem;
    padding: 0 0.5rem;
    font-size: 0.6875rem;
    text-align: center;
  }

  .site-menu__label-preview {
    font-size: 0.6875rem;
  }

  .home-sequence {
    min-height: 115svh;
  }

  .home-intro__edge,
  .home-intro__question {
    top: 50%;
    right: 1rem;
    left: 1rem;
    font-size: 0.875rem;
  }

  .home-intro__question {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    transform: translateY(-0.9rem);
  }

  .home-letters,
  .home-letters:last-child {
    justify-self: center;
    margin: 0;
  }

  .home-system {
    padding: 5rem 1rem 2rem;
    font-size: 0.8125rem;
  }

  .home-system__mark {
    top: 38%;
    width: 3.5rem;
  }

  .home-system__readout {
    grid-template-columns: 1fr;
    gap: 1.1rem;
    margin-bottom: 4rem;
  }

  .home-system__footer {
    gap: 2rem;
    flex-direction: column;
  }

  .home-system__footer p:last-child {
    align-self: flex-end;
    text-align: right;
  }

  .reveal__inner.home-reacts__inner {
    padding: 7rem 1rem 0;
  }

  .home-reacts,
  .home-product {
    min-height: 100svh;
  }

  .home-reacts__text {
    font-size: clamp(2rem, 10vw, 3.2rem);
    line-height: 1.18;
  }

  .home-reacts__text .reveal__indent {
    display: none;
  }

  .home-product {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 2rem;
    padding: 5rem 1rem;
  }

  .home-product__tags {
    grid-column: auto;
    grid-row: auto;
    order: 2;
  }

  .home-product__figure {
    grid-column: auto;
    grid-row: auto;
    order: 1;
  }

  .home-product__copy {
    grid-column: auto;
    grid-row: auto;
    order: 3;
    gap: 2.5rem;
  }

  .home-product__copy p {
    max-width: 100%;
  }

  .home-process {
    grid-template-columns: 1fr;
    gap: 4rem;
    padding: 5rem 1rem;
  }

  .home-process__item,
  .home-process__item--detection,
  .home-process__item--encoding,
  .home-process__item--capture {
    grid-column: auto;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 0;
  }

  .home-process__item h2,
  .home-process__item p,
  .home-process__item--encoding h2,
  .home-process__item--encoding p,
  .home-process__item--encoding .home-process__visual,
  .home-process__item--capture .home-process__visual,
  .home-process__item--capture p {
    grid-column: auto;
    grid-row: auto;
  }

  .home-process__item--encoding .home-process__visual {
    order: 1;
  }

  .home-process__item--encoding h2 {
    order: 2;
  }

  .home-process__item--encoding p {
    order: 3;
  }

  .home-memory-transition {
    min-height: auto;
  }

  .home-memory-transition__stage {
    position: relative;
    top: auto;
    height: auto;
    overflow: visible;
  }

  .home-memory {
    min-height: auto;
    position: relative;
    inset: auto;
  }

  .home-memory__text {
    font-size: clamp(2rem, 10vw, 3rem);
    line-height: 1.16;
    white-space: normal;
  }

  .reveal--os.home-memory .reveal__inner.home-memory__inner {
    padding: 5rem 1rem;
  }

  .reveal--os.home-memory .reveal__text.home-memory__text {
    font-size: clamp(2rem, 10vw, 3rem);
    line-height: 1.16;
    white-space: normal;
  }

  .home-system-index {
    position: relative;
    inset: auto;
    min-height: 100svh;
    margin-top: 0;
  }

  .home-system-index__stage {
    position: relative;
    top: auto;
    grid-template-columns: 1fr;
    height: auto;
    min-height: 100svh;
    overflow: visible;
  }

  .home-system-index__inner {
    position: relative;
    top: auto;
    height: 100svh;
    min-height: 0;
    padding: 2rem 1rem;
    transform: none;
  }

  .home-system-index__top {
    font-size: 1rem;
  }

  .home-system-index__top p:last-child {
    text-align: right;
  }

  .home-system-index__list {
    gap: 1.1rem;
    width: 100%;
    font-size: 1.125rem;
  }

  .home-system-index__copy {
    font-size: 0.95rem;
    line-height: 1.45;
  }

  .home-system-index__figure {
    transform: none;
    height: auto;
    min-height: auto;
    aspect-ratio: 864 / 966;
  }

  .home-remember {
    min-height: 100svh;
    padding: 5rem 1rem;
  }

  .home-remember__stage {
    height: min(31rem, 82svh);
  }

  .home-remember h2 {
    font-size: clamp(3.35rem, 16vw, 5.25rem);
    line-height: 1.16;
  }

  .home-remember h2 > span:nth-child(2) {
    top: 32%;
    right: 0;
    left: auto;
  }

  .home-remember__label {
    padding-left: 0.875rem;
    font-size: clamp(0.75rem, 3.5vw, 1rem);
  }

  .home-remember__label--detection {
    top: 13%;
    right: 0;
    left: auto;
  }

  .home-remember__label--mapping {
    top: 43%;
    left: 0;
  }

  .home-remember__label--spikes {
    right: 0;
    bottom: 19%;
  }

  .company-hero__image {
    object-position: 42% center;
  }

  .company-hero__guide--x {
    top: 39%;
  }

  .company-hero__guide--y {
    left: 78%;
  }

  .company-hero__marker {
    top: 39%;
    left: 78%;
  }

  .company-hero__coords {
    top: 8rem;
    left: 1rem;
    font-size: 0.625rem;
  }

  .company-hero__copy {
    right: 1rem;
    bottom: 4rem;
    left: 1rem;
  }

  .company-hero__copy h1 {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .company-hero__play {
    top: 43%;
    right: 1rem;
    left: auto;
    height: 2.75rem;
    font-size: 0.625rem;
  }

  .company-video-modal__header {
    top: 2rem;
    padding: 0 1rem;
    font-size: 0.875rem;
  }

  .company-principles {
    padding: 5rem 1rem;
  }

  .company-principles__inner {
    flex-direction: column;
    gap: 4rem;
  }

  .company-principles__list {
    gap: 1rem;
  }

  .company-principles__list span {
    flex-basis: 0.75rem;
    font-size: 0.5rem;
  }

  .company-principles__list strong {
    font-size: clamp(2.1rem, min(11vw, 6.2vh), 3.375rem);
  }

  .company-principles__copy {
    width: 100%;
    font-size: clamp(1rem, 4.8vw, 1.4rem);
    white-space: normal;
  }

  .company-vision {
    gap: 4rem;
    padding: 5rem 1rem;
  }

  .company-vision__meta {
    align-items: flex-start;
    font-size: 0.75rem;
    line-height: 1.35;
  }

  .company-vision__meta p:last-child {
    text-align: right;
  }

  .company-vision__copy {
    align-items: flex-start;
    flex-direction: column;
    gap: 2rem;
  }

  .company-vision__copy h2 {
    font-size: clamp(2.25rem, 10vw, 3.25rem);
  }

  .company-vision__copy p {
    width: 100%;
    text-align: left;
    font-size: clamp(1rem, 4.8vw, 1.35rem);
  }

  .company-vision__copy br {
    display: none;
  }

  .company-vision__figure {
    aspect-ratio: 4 / 5;
  }

  .company-vision__figure img {
    width: 145%;
    transform: translateX(-21%);
  }

  .company-contact {
    min-height: auto;
    padding: 5rem 1rem;
  }

  .company-contact__inner {
    gap: 3rem;
  }

  .company-contact h2 {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.25rem;
    font-size: clamp(3.75rem, 19vw, 6rem);
    line-height: 0.98;
  }

  .hero {
    min-height: 100svh;
  }

  .hero__content {
    padding-top: 7rem;
  }

  .hero__title {
    width: max-content;
    font-size: 2.1rem;
  }

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

  .hero__features {
    display: grid;
    gap: 0.75rem;
    white-space: normal;
  }

  .reveal__text {
    font-size: clamp(1.32rem, 6vw, 1.75rem);
    line-height: 1.22;
    white-space: normal;
  }

  .reveal--product .reveal__inner {
    padding: 5rem 1rem;
  }

  .reveal--product .reveal__text {
    font-size: clamp(1.75rem, 8.2vw, 2.625rem);
    line-height: 1.19;
  }

  .reveal__indent {
    width: clamp(2rem, 12vw, 4rem);
  }

  .product-system {
    --product-pad: 1rem;
    --product-scene-gap: 2rem;
  }

  .product-system__intro {
    position: relative;
    min-height: auto;
    padding: 3rem 0 1.5rem;
    gap: var(--product-scene-gap);
  }

  .product-system__title {
    font-size: clamp(1.75rem, 9vw, 3rem);
    line-height: 1.02;
    overflow-wrap: anywhere;
    white-space: normal;
  }

  .product-system__title span:nth-child(2) {
    padding-left: clamp(1.75rem, 11vw, 3.25rem);
  }

  .product-system__figure {
    aspect-ratio: 1 / 1.05;
    width: 100%;
    max-width: 24rem;
    overflow: hidden;
  }

  .product-system--tuner .product-system__figure {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .product-system--tuner .product-system__canvas {
    min-height: 58svh;
  }

  .product-system--tuner .model-tuner {
    grid-column: 1;
    max-height: none;
  }

  .product-system__canvas,
  .product-system__image {
    width: 100%;
    transform: none;
  }

  .product-cutout {
    inset: auto;
    top: 50%;
    left: 50%;
    width: 85.5%;
    height: 85.5%;
  }

  .product-cutout--interface {
    --explode-x: -15%;
    --explode-y: -2%;
  }

  .product-cutout--outer {
    --explode-x: 15%;
    --explode-y: 0%;
  }

  .product-hotspot--interface {
    top: 43%;
    left: 20%;
    width: 20%;
    height: 20%;
  }

  .product-hotspot--engine {
    top: 43%;
    left: 40%;
    width: 20%;
    height: 20%;
  }

  .product-hotspot--outer {
    top: 28%;
    left: 59%;
    width: 29%;
    height: 46%;
  }

  .part-card {
    min-width: 0;
    width: min(21.25rem, 86vw);
    gap: 0.875rem;
    padding: 1rem;
  }

  .part-card__thumb,
  .part-card__thumb--large {
    flex-basis: 4rem;
    width: 4rem;
    height: 4rem;
  }

  .part-card__text {
    flex-basis: 11rem;
    width: 11rem;
  }

  .part-card h3,
  .part-card p {
    font-size: 0.875rem;
  }

  .part-card-wrap--interface {
    top: 5%;
    left: 0;
  }

  .part-card-wrap--engine {
    top: 38%;
    left: 0;
  }

  .part-card-wrap--outer {
    right: auto;
    top: 70%;
    left: 0;
  }

  .system-steps {
    grid-template-columns: 1fr;
  }

  .system-steps li {
    height: auto;
    min-height: 0;
    gap: 5rem;
    padding: 1rem;
    border-right: 0;
    border-bottom: 1px dashed #838383;
  }

  .system-steps li:last-child {
    border-bottom: 0;
  }

  .response-hero {
    min-height: 78svh;
    margin-top: 0;
  }

  .response-hero__image {
    top: -25%;
    left: -72%;
    width: 235%;
    height: 130%;
  }

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

  .response-hero__title {
    font-size: 2.1rem;
  }

  .choice-section {
    padding-block: 4rem;
  }

  .choice-section__inner {
    gap: 4rem;
  }

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

  .texture-stack {
    width: min(100%, 24rem);
    height: 31rem;
  }

  .texture-card {
    width: 9.2rem;
    height: 19.8rem;
  }

  .texture-card:hover,
  .texture-card:focus-visible,
  .texture-card.is-featured {
    --raise: -2.25rem;
  }

  .texture-card__label {
    padding: 0.8rem;
    font-size: 0.75rem;
  }

  .texture-card--tort {
    --left: 0%;
  }

  .texture-card--frost {
    --left: 18%;
  }

  .texture-card--black {
    --left: 36%;
  }

  .texture-card--rose {
    --left: 52%;
    --top: 0;
  }

  .texture-card--dot {
    --left: 67%;
  }

  .spec-section {
    padding-top: 4rem;
  }

  .spec-section__header {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1rem 4rem;
  }

  .spec-section__header h2 {
    font-size: clamp(2rem, 10vw, 3rem);
    line-height: 1.08;
  }

  .spec-section__header p {
    width: auto;
    max-width: none;
    text-align: left;
  }

  .spec-section__header p span {
    display: inline;
  }

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

  .spec-panel {
    min-height: auto;
  }

  .spec-panel:nth-child(odd) {
    border-right: 0;
  }

  .spec-panel__label {
    padding: 1.25rem 1rem;
    font-size: 0.875rem;
  }

  .spec-list--features div,
  .spec-list--box li {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    min-height: auto;
    padding: 1.25rem 1rem;
  }

  .spec-list dd,
  .spec-list--box span:last-child {
    text-align: left;
    white-space: normal;
  }

  .spec-panel--dimensions,
  .spec-panel--image {
    min-height: 22rem;
  }

  .dimension-figure {
    padding: 1.5rem 0.25rem;
  }

  .dimension-figure img {
    width: 150%;
    max-width: none;
    transform: translateX(-16%) scale(1);
  }

  .spec-panel--image img {
    width: min(78%, 21rem);
  }

  .os-hero {
    padding: 6.5rem 1rem 2rem;
  }

  .os-hero__intro {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    margin-bottom: 3rem;
  }

  .os-hero__title {
    font-size: clamp(2rem, 10vw, 3.1rem);
    line-height: 1.12;
  }

  .os-hero__title > span {
    white-space: normal;
  }

  .os-hero__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.8rem;
    white-space: normal;
  }

  .os-hero__subhead {
    white-space: normal;
  }

  .os-console__inner {
    min-width: 64rem;
  }

  .os-return__stage {
    padding: 2rem 1rem;
  }

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

  .os-return__title {
    width: min(100%, 22rem);
    font-size: clamp(2rem, 10vw, 3rem);
    text-align: left;
  }

  .os-return__title span:first-child {
    text-align: left;
  }

  .os-foundations {
    position: relative;
    top: auto;
    padding: 5rem 1rem;
  }

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

  .os-foundation-card {
    min-height: 18rem;
    padding: 0;
  }

  .os-foundation-card + .os-foundation-card {
    padding-top: 2rem;
    padding-left: 0;
  }

  .os-foundation-card + .os-foundation-card::before {
    top: 0;
    right: 0;
    bottom: auto;
    left: 0;
    width: 100%;
    height: 1px;
  }

  .os-memory-lab {
    padding: 5rem 1rem;
  }

  .os-memory-lab__inner {
    gap: 0;
  }

  .os-memory-separator {
    margin: 0.5rem 0 2rem;
  }

  .os-memory-lab__top {
    align-items: flex-start;
    flex-direction: column;
    padding: 0;
  }

  .os-memory-tabs {
    width: 100%;
    overflow-x: auto;
  }

  .os-memory-tabs button {
    flex: 0 0 auto;
  }

  .os-memory-lab__label {
    padding: 0;
    font-size: 0.875rem;
  }

  .os-memory-grid,
  .os-memory-stack {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    height: auto;
    min-height: 0;
  }

  .os-metric-card--wide,
  .os-metric-card--heart,
  .os-weather-strip,
  .os-memory-row--bottom .os-sound-card:first-child,
  .os-memory-row--bottom .os-sound-card:nth-child(2),
  .os-metric-card--temp {
    grid-column: auto;
    grid-row: auto;
  }

  .os-video-card {
    height: auto;
    aspect-ratio: 491 / 706;
    min-height: 36rem;
  }

  .os-weather-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .buy-section {
    align-items: flex-end;
    justify-content: center;
    min-height: 100svh;
    padding: 6rem 1rem 1rem;
  }

  .buy-section__product {
    top: 37%;
    width: 25rem;
    height: 24rem;
  }

  .order-card {
    --order-card-inline-padding: 1rem;
    width: 100%;
  }

  .order-card__top,
  .order-card__bottom {
    padding: 1.5rem 1rem;
  }

  .order-card__summary,
  .order-card__config {
    gap: 1.25rem;
  }

  .order-card__summary h1,
  .order-card__summary h2 {
    font-size: 1.25rem;
  }

  .order-card__config strong {
    font-size: 1rem;
  }

  .site-footer {
    --footer-panel-height: 24rem;
    --footer-product-height: 24rem;
    min-height: calc(100svh + var(--footer-panel-height));
  }

  .site-footer__product-stage,
  .site-footer__product-fixed {
    height: 100svh;
  }

  .site-footer__product-frame {
    width: 22rem;
    height: var(--footer-product-height);
  }

  .site-footer__panel {
    min-height: 24rem;
    padding: 1.25rem 1rem;
  }

  .site-footer__nav {
    justify-content: space-between;
    padding-right: 0;
  }

  .site-footer__links,
  .site-footer__contact {
    min-width: 0;
    font-size: 1rem;
  }

  .site-footer__contact {
    margin-left: 2rem;
  }

  .site-footer__legal {
    right: 1rem;
    bottom: 1.25rem;
    left: 1rem;
    display: grid;
    gap: 1.5rem;
    font-size: 0.625rem;
  }

  .site-footer__legal p:last-child {
    white-space: normal;
  }
}

@media (min-width: 761px) and (max-width: 1200px) {
  .hero__title {
    font-size: 3rem;
  }

  .reveal__text {
    font-size: clamp(1.75rem, 3.25vw, 2.25rem);
  }

  .reveal--product .reveal__inner {
    padding: clamp(5rem, 8vw, 6.5rem) clamp(2rem, 4.44vw, 4rem);
  }

  .reveal--product .reveal__text {
    font-size: clamp(2rem, 4vw, 2.75rem);
    line-height: 1.185185;
  }

  .reveal__indent {
    width: clamp(4rem, 8vw, 7rem);
  }

  .product-system {
    --product-pad: 2rem;
    --product-scene-gap: clamp(2.5rem, 4.5vw, 4rem);
  }

  .product-system__intro {
    gap: var(--product-scene-gap);
  }

  .product-system__title {
    font-size: clamp(4.25rem, 8.5vw, 6.5rem);
  }

  .product-system__title span:nth-child(2) {
    padding-left: clamp(4rem, 8vw, 7rem);
  }

  .product-system__figure {
    width: min(100%, 68rem);
  }

  .part-card {
    width: auto;
    min-width: min(18.5rem, 28vw);
    min-height: 6.8rem;
    gap: 1rem;
    padding: 1rem;
  }

  .part-card h3,
  .part-card p,
  .system-steps p {
    font-size: 0.875rem;
  }

  .system-steps li {
    min-height: 20rem;
  }
}

@media (max-width: 420px) {
  .hero__title {
    font-size: 1.7rem;
  }

  .reveal__text {
    font-size: 1.45rem;
  }

  .reveal__indent {
    width: 2.25rem;
  }

  .response-hero__title {
    font-size: 1.7rem;
  }

  .part-card-wrap {
    display: none;
  }

  .product-system__title {
    font-size: clamp(1.55rem, 8.2vw, 2.15rem);
  }

  .product-system__title span:nth-child(2) {
    padding-left: 0.75rem;
  }
}

.animation-tuner-page {
  min-height: 100svh;
  background: #d8d8d6;
  color: #070707;
}

.animation-tuner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(20rem, 25rem);
  min-height: 100svh;
}

.animation-tuner__preview {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  min-width: 0;
  padding: 1.5rem;
}

.animation-tuner__preview-bar {
  display: flex;
  justify-content: space-between;
  padding-bottom: 1rem;
  font-family: "Saans Mono", "Roboto Mono", monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
}

.animation-tuner__preview-bar span:last-child {
  color: #545454;
}

.animation-tuner__stage {
  position: relative;
  place-self: center;
  width: min(100%, calc(100svh - 6.5rem));
  max-width: 52rem;
  aspect-ratio: 1;
  margin: 0;
  overflow: hidden;
  background: #f1f0ef;
}

.animation-tuner__stage > img,
.animation-tuner__ascii-svg {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.animation-tuner__stage > img {
  object-fit: cover;
}

.animation-tuner__stage > img:first-child,
.animation-tuner__ascii-svg {
  z-index: 1;
}

.animation-tuner__stage > img:nth-child(2) {
  z-index: 2;
  opacity: 0;
}

.animation-tuner__controls {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  min-width: 0;
  padding: 1.5rem;
  border-left: 1px solid rgba(7, 7, 7, 0.16);
  background: #f1f0ef;
  font-family: "Saans Mono", "Roboto Mono", monospace;
}

.animation-tuner__back {
  align-self: flex-start;
  color: inherit;
  font-size: 0.75rem;
  text-decoration: none;
}

.animation-tuner__back:hover,
.animation-tuner__back:focus-visible {
  text-decoration: underline;
}

.animation-tuner__controls header p,
.animation-tuner__controls header h1 {
  margin: 0;
}

.animation-tuner__controls header p,
.animation-tuner__group h2 {
  color: #666;
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
}

.animation-tuner__controls header h1 {
  margin-top: 0.35rem;
  font-family: "F37 Moon", Arial, sans-serif;
  font-size: 1.75rem;
  line-height: 1.1;
}

.animation-tuner__field,
.animation-tuner__range,
.animation-tuner__toggle {
  font-size: 0.8125rem;
}

.animation-tuner__field {
  display: grid;
  gap: 0.5rem;
}

.animation-tuner__field select,
.animation-tuner__range input[type="number"] {
  width: 100%;
  min-height: 2.5rem;
  padding: 0.5rem 0.625rem;
  border: 1px solid rgba(7, 7, 7, 0.2);
  border-radius: 0;
  background: #fff;
  color: #070707;
  font: inherit;
}

.animation-tuner__group {
  display: grid;
  gap: 1.5rem;
}

.animation-tuner__group h2 {
  margin: 0;
}

.animation-tuner__range {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 5.5rem;
  gap: 0.625rem 0.75rem;
  align-items: center;
}

.animation-tuner__range > div {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.animation-tuner__range output {
  color: #666;
}

.animation-tuner__range input[type="range"] {
  width: 100%;
  accent-color: #070707;
}

.animation-tuner__range input[type="number"] {
  min-height: 2rem;
}

.animation-tuner__summary {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid rgba(7, 7, 7, 0.16);
  font-size: 0.8125rem;
}

.animation-tuner__summary strong {
  font-size: 1rem;
}

.animation-tuner__toggle {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.animation-tuner__toggle input {
  width: 1rem;
  height: 1rem;
  margin: 0;
  accent-color: #070707;
}

.animation-tuner__actions {
  display: grid;
  gap: 0.5rem;
  margin-top: auto;
}

.animation-tuner__actions button {
  min-height: 2.75rem;
  padding: 0.625rem 0.875rem;
  border: 1px solid #070707;
  border-radius: 0;
  background: transparent;
  color: #070707;
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.animation-tuner__actions button:first-child {
  background: #070707;
  color: #f1f0ef;
}

.animation-tuner__actions button:hover,
.animation-tuner__actions button:focus-visible {
  background: #c5ffae;
  color: #070707;
}

@media (max-width: 760px) {
  .animation-tuner {
    grid-template-columns: 1fr;
  }

  .animation-tuner__preview {
    min-height: 100svh;
    padding: 1rem;
  }

  .animation-tuner__stage {
    width: min(100%, calc(100svh - 5rem));
  }

  .animation-tuner__controls {
    min-height: 100svh;
    border-top: 1px solid rgba(7, 7, 7, 0.16);
    border-left: 0;
  }
}
