:root {
  --paper: #f8fafc;
  --paper-bright: #ffffff;
  --ink: #2b1736;
  --ink-soft: #65576d;
  --line: rgb(43 23 54 / 0.16);
  --lagoon: #008e9d;
  --lagoon-bright: #00b7c4;
  --orange: #ff6a17;
  --orchid: #bd3bf3;
  --metal: #aeb8c2;
  --focus: #005fcc;
  --font-display: "Arial Rounded MT Bold", "Arial Rounded Bold", "Arial Black", sans-serif;
  --font-body: "Gill Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-mono: "Andale Mono", Menlo, Monaco, monospace;
  --content: 92rem;
  --page-pad: clamp(1.25rem, 4vw, 4.5rem);
  --section-space: clamp(6rem, 10vw, 11rem);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.16, 1.2, 0.3, 1);
}

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

html {
  min-width: 20rem;
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
  background: var(--paper);
  overflow-x: clip;
}

body {
  min-width: 20rem;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

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

button,
input {
  color: inherit;
  font: inherit;
}

button {
  cursor: pointer;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
[tabindex="0"]:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
  box-shadow: 0 0 0 7px rgb(255 255 255 / 0.88);
}

::selection {
  color: var(--paper-bright);
  background: var(--ink);
}

[hidden] {
  display: none !important;
}

.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;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 0.75rem;
  left: 0.75rem;
  min-height: 3rem;
  padding: 0.75rem 1rem;
  color: var(--paper-bright);
  background: var(--ink);
  font-weight: 700;
  transform: translateY(-180%);
  transition: transform 180ms var(--ease-out);
}

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

.studio-nav {
  position: fixed;
  z-index: 100;
  top: 1rem;
  left: 50%;
  display: grid;
  width: min(calc(100% - 2rem), 88rem);
  min-height: 4.25rem;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 0.45rem 0.65rem 0.45rem 0.55rem;
  border: 1px solid rgb(255 255 255 / 0.76);
  border-radius: 1.2rem;
  background: rgb(255 255 255 / 0.73);
  box-shadow:
    0 1rem 3rem rgb(43 23 54 / 0.08),
    inset 0 1px 0 rgb(255 255 255 / 0.85);
  backdrop-filter: blur(1.1rem) saturate(1.2);
  transform: translateX(-50%);
  transition:
    width 440ms var(--ease-out),
    border-radius 440ms var(--ease-out),
    background 440ms var(--ease-out),
    box-shadow 440ms var(--ease-out);
}

.studio-nav.is-docked {
  width: min(calc(100% - 2rem), 72rem);
  gap: 1rem;
  border-color: rgb(43 23 54 / 0.12);
  border-radius: 2.35rem;
  background: rgb(255 255 255 / 0.9);
  box-shadow:
    0 0.75rem 2.2rem rgb(43 23 54 / 0.1),
    inset 0 1px 0 rgb(255 255 255 / 0.95);
}

.studio-nav.is-docked .studio-nav__links {
  gap: clamp(0.2rem, 0.7vw, 0.7rem);
}

.studio-mark {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-size: 0.94rem;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.studio-mark__symbol {
  display: grid;
  width: 3.05rem;
  height: 3.05rem;
  place-items: center;
  border-radius: 50%;
  color: var(--paper-bright);
  background:
    radial-gradient(circle at 68% 28%, var(--orchid) 0 10%, transparent 11%),
    linear-gradient(135deg, var(--lagoon), var(--ink) 68%);
  box-shadow:
    inset -0.2rem -0.3rem 0.8rem rgb(0 0 0 / 0.2),
    inset 0.15rem 0.2rem 0.4rem rgb(255 255 255 / 0.38);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.studio-nav__links {
  display: flex;
  justify-content: center;
  gap: clamp(0.2rem, 1.2vw, 1.1rem);
}

.studio-nav__links a {
  position: relative;
  display: inline-flex;
  min-height: 2.9rem;
  padding: 0.75rem 0.8rem;
  align-items: center;
  border-radius: 1.45rem;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  transition:
    color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.studio-nav__links a:hover,
.studio-nav__links a[aria-current="location"] {
  color: var(--paper-bright);
  background: var(--ink);
  transform: translateY(-1px);
}

.studio-nav__links .studio-nav__contact {
  color: var(--ink);
  background: var(--orange);
}

.studio-nav__status {
  max-width: 10.5rem;
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.875rem;
  line-height: 1.35;
  text-align: right;
}

.hero {
  position: relative;
  min-height: 100svh;
  isolation: isolate;
  overflow: clip;
  background: var(--paper-bright);
}

.hero-media,
.hero-poster,
.hero-video,
.hero-media__wash {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-poster img,
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-video {
  z-index: 1;
  opacity: 0;
  transition: opacity 700ms ease;
}

.hero-video.is-ready {
  opacity: 1;
}

.hero-media__wash {
  z-index: 2;
  background:
    linear-gradient(90deg, rgb(248 250 252 / 0.98) 0%, rgb(248 250 252 / 0.91) 27%, rgb(248 250 252 / 0.18) 58%, transparent 78%),
    linear-gradient(0deg, rgb(43 23 54 / 0.06), transparent 30%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 5;
  display: grid;
  width: min(calc(100% - (var(--page-pad) * 2)), var(--content));
  min-height: 100svh;
  margin: 0 auto;
  grid-template-columns: minmax(0, 6.25fr) minmax(18rem, 5.75fr);
  grid-template-rows: 1fr auto;
  align-items: center;
  gap: 2rem;
  padding-top: 7rem;
  padding-bottom: 2rem;
}

.hero-copy {
  z-index: 4;
  max-width: 52rem;
  padding-block: 3rem;
}

.role-line,
.eyebrow {
  margin: 0 0 1.1rem;
  font-family: var(--font-mono);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.role-line::before,
.eyebrow::before {
  display: inline-block;
  width: 0.75rem;
  height: 0.75rem;
  margin-right: 0.65rem;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0.95rem 0 0 var(--lagoon);
  content: "";
  transform: translateY(0.08rem);
}

.hero h1 {
  max-width: 8.6em;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(4rem, 7.35vw, 7.75rem);
  font-weight: 900;
  letter-spacing: -0.068em;
  line-height: 0.86;
}

.hero h1 span {
  display: block;
}

.hero h1 span:nth-child(2) {
  color: var(--lagoon);
}

.hero h1 span:last-child {
  position: relative;
  z-index: 0;
  width: max-content;
  max-width: 100%;
}

.hero h1 span:last-child::after {
  position: absolute;
  z-index: -1;
  right: -0.04em;
  bottom: -0.03em;
  left: -0.05em;
  height: 0.2em;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), var(--orchid));
  content: "";
  transform: rotate(-1.2deg);
}

.hero-intro {
  max-width: 38ch;
  margin: 2rem 0 0;
  font-size: clamp(1.2rem, 1.7vw, 1.65rem);
  font-weight: 500;
  line-height: 1.42;
}

.hero-actions {
  display: flex;
  margin-top: 2rem;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.button {
  display: inline-flex;
  min-height: 3.5rem;
  padding: 0.95rem 1.25rem;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  border: 1px solid transparent;
  border-radius: 0.85rem;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transition:
    transform 180ms var(--ease-out),
    box-shadow 180ms var(--ease-out),
    background 180ms ease;
}

.button:hover {
  transform: translateY(-3px) rotate(-0.4deg);
}

.button:active {
  transform: translateY(1px);
}

.button-primary {
  color: var(--paper-bright);
  background: var(--ink);
  box-shadow: 0 0.8rem 1.8rem rgb(43 23 54 / 0.16);
}

.button-primary span {
  color: var(--orange);
  font-size: 1.25rem;
}

.button-quiet {
  border-color: rgb(43 23 54 / 0.28);
  background: rgb(255 255 255 / 0.64);
  backdrop-filter: blur(0.7rem);
}

.hero-aperture {
  position: absolute;
  z-index: 6;
  top: 51%;
  right: clamp(2rem, 10.5vw, 10rem);
  display: flex;
  width: clamp(13rem, 18vw, 18rem);
  aspect-ratio: 1;
  padding: 2rem;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 1px solid rgb(255 255 255 / 0.85);
  border-radius: 50%;
  color: var(--paper-bright);
  background:
    radial-gradient(circle at 50% 34%, rgb(255 255 255 / 0.22), transparent 38%),
    linear-gradient(145deg, rgb(43 23 54 / 0.94), rgb(0 142 157 / 0.92));
  box-shadow:
    0 1.5rem 4rem rgb(43 23 54 / 0.24),
    inset 0 0 0 0.55rem rgb(255 255 255 / 0.11),
    inset 0 0 2rem rgb(255 255 255 / 0.14);
  text-align: center;
  transform: translateY(-50%);
  transition:
    transform 300ms var(--ease-spring),
    background 300ms ease;
}

.hero-aperture::before,
.hero-aperture::after {
  position: absolute;
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.hero-aperture::before {
  inset: -0.9rem;
  border: 0.2rem solid rgb(255 106 23 / 0.62);
  border-top-color: transparent;
  transform: rotate(18deg);
}

.hero-aperture::after {
  inset: -1.5rem;
  border: 0.1rem solid rgb(0 142 157 / 0.28);
  border-left-color: transparent;
  transform: rotate(-28deg);
}

.hero-aperture:hover {
  transform: translateY(-50%) scale(1.035) rotate(1deg);
}

.hero-aperture__eyebrow,
.hero-aperture__action {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  line-height: 1.4;
}

.hero-aperture__eyebrow {
  margin-bottom: 0.65rem;
  color: #bcf9ff;
}

.hero-aperture strong {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 3.25rem);
  line-height: 1;
}

.hero-aperture > span:nth-of-type(2) {
  max-width: 17ch;
  margin-top: 0.65rem;
  font-size: 0.95rem;
}

.hero-aperture__action {
  margin-top: 1rem;
  color: #ffd6c1;
}

.hero-meta {
  display: flex;
  grid-column: 1 / -1;
  min-height: 3.25rem;
  align-items: center;
  gap: 1.5rem;
  border-top: 1px solid rgb(43 23 54 / 0.16);
  font-family: var(--font-mono);
  font-size: 0.875rem;
  line-height: 1.35;
}

.hero-meta span:nth-child(2) {
  margin-right: auto;
}

.hero-meta a {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
}

.section-intro,
.routes-heading,
.method-heading {
  width: min(calc(100% - (var(--page-pad) * 2)), var(--content));
  margin-inline: auto;
}

.section-intro h2,
.routes-heading h2,
.method-heading h2,
.research-copy h2,
.contact-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 7vw, 7.25rem);
  letter-spacing: -0.063em;
  line-height: 0.91;
}

.section-intro > p:last-child,
.method-heading > p:last-child,
.research-copy > p:last-child,
.contact-copy > p {
  font-size: clamp(1.15rem, 1.45vw, 1.45rem);
  line-height: 1.5;
}

.assembly-section {
  position: relative;
  padding: var(--section-space) 0;
  background:
    radial-gradient(circle at 82% 17%, rgb(189 59 243 / 0.09), transparent 23rem),
    linear-gradient(var(--paper), var(--paper-bright) 70%);
  overflow: clip;
}

.section-intro--wide {
  display: grid;
  grid-template-columns: minmax(0, 8fr) minmax(18rem, 4fr);
  align-items: end;
  gap: 3rem;
}

.section-intro--wide .eyebrow {
  grid-column: 1 / -1;
}

.section-intro--wide h2 {
  max-width: 10em;
}

.section-intro--wide > p:last-child {
  max-width: 31rem;
  margin: 0 0 0.6rem;
}

.assembly-lab {
  display: grid;
  width: min(calc(100% - (var(--page-pad) * 2)), var(--content));
  min-height: 46rem;
  margin: clamp(4rem, 7vw, 7rem) auto 0;
  grid-template-columns: minmax(15rem, 3fr) minmax(30rem, 6fr) minmax(17rem, 3fr);
  border-block: 1px solid var(--line);
}

.assembly-controls {
  align-self: center;
  border-right: 1px solid var(--line);
}

.assembly-tab {
  position: relative;
  display: grid;
  width: 100%;
  min-height: 7.5rem;
  padding: 1.4rem clamp(1rem, 2vw, 2rem);
  grid-template-columns: auto 1fr;
  gap: 0.2rem 1rem;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  text-align: left;
}

.assembly-tab:last-child {
  border-bottom: 0;
}

.assembly-tab::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 0.4rem;
  background: transparent;
  content: "";
  transition: background 180ms ease;
}

.assembly-tab[aria-selected="true"] {
  background: rgb(255 255 255 / 0.74);
}

.assembly-tab[aria-selected="true"]::after {
  background: var(--orange);
}

.assembly-tab > span {
  grid-row: 1 / span 2;
  font-family: var(--font-mono);
  font-size: 0.875rem;
}

.assembly-tab strong {
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1.1;
}

.assembly-tab small {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.assembly-stage {
  position: relative;
  align-self: center;
  aspect-ratio: 1;
  margin: clamp(1rem, 3vw, 3rem);
  border: 1px solid rgb(43 23 54 / 0.12);
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgb(255 255 255 / 0.92) 0 26%, transparent 27%),
    conic-gradient(from 80deg, rgb(0 142 157 / 0.08), rgb(189 59 243 / 0.07), rgb(255 106 23 / 0.08), rgb(0 142 157 / 0.08));
  box-shadow:
    inset 0 0 3rem rgb(255 255 255 / 0.88),
    0 1rem 4rem rgb(43 23 54 / 0.08);
}

.assembly-orbit {
  position: absolute;
  inset: 12%;
  border: 1px dashed rgb(43 23 54 / 0.25);
  border-radius: 50%;
}

.assembly-window {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 50%;
  display: grid;
  width: 42%;
  aspect-ratio: 1;
  place-content: center;
  padding: 1.5rem;
  border: 0.55rem solid rgb(255 255 255 / 0.52);
  border-radius: 50%;
  color: var(--paper-bright);
  background: var(--ink);
  box-shadow:
    inset 0 0 1.5rem rgb(255 255 255 / 0.09),
    0 1rem 2.5rem rgb(43 23 54 / 0.25);
  text-align: center;
  transform: translate(-50%, -50%);
}

.assembly-window span {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  text-transform: uppercase;
}

.assembly-window strong {
  max-width: 10ch;
  margin-top: 0.45rem;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 2rem);
  line-height: 1.02;
}

.assembly-piece {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: clamp(1.2rem, 3.2vw, 3.5rem);
  height: clamp(0.85rem, 2.1vw, 2.3rem);
  border: 1px solid rgb(43 23 54 / 0.16);
  border-radius: 0.42rem;
  box-shadow:
    0 0.65rem 1rem rgb(43 23 54 / 0.15),
    inset 0.12rem 0.14rem 0.28rem rgb(255 255 255 / 0.45);
  transform: translate(calc(-50% + var(--tx, 0px)), calc(-50% + var(--ty, 0px))) rotate(var(--r, 0deg)) scale(var(--s, 1));
  transform-origin: center;
  transition: transform 760ms var(--ease-spring);
  transition-delay: calc(var(--piece) * 16ms);
}

.assembly-piece:nth-of-type(3n) {
  border-radius: 50%;
}

.assembly-piece:nth-of-type(4n) {
  width: clamp(0.9rem, 2.2vw, 2.4rem);
  height: clamp(2.2rem, 5.4vw, 6rem);
}

.assembly-piece--lagoon {
  background: linear-gradient(145deg, #55d6df, var(--lagoon));
}

.assembly-piece--orange {
  background: linear-gradient(145deg, #ffad7a, var(--orange));
}

.assembly-piece--orchid {
  background: linear-gradient(145deg, #e09aff, var(--orchid));
}

.assembly-piece--metal {
  background: linear-gradient(135deg, #f5f7f8, #8c99a5 58%, #e9eef1);
}

.assembly-piece--clear {
  border-color: rgb(255 255 255 / 0.8);
  background: rgb(255 255 255 / 0.38);
  backdrop-filter: blur(0.25rem);
}

.assembly-panels {
  display: grid;
  min-width: 0;
  align-items: center;
  border-left: 1px solid var(--line);
}

.assembly-panel {
  padding: clamp(1.5rem, 3vw, 3.25rem);
}

.assembly-panel h3,
.product-panel__copy h3,
.route h3,
.method-step h3 {
  margin: 1.2rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 4.4rem);
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.assembly-panel > p:last-child,
.product-panel__copy > p,
.route > p {
  font-size: 1.08rem;
  line-height: 1.55;
}

.status-chip {
  display: inline-flex;
  min-height: 2rem;
  margin: 0;
  padding: 0.35rem 0.7rem;
  align-items: center;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.875rem !important;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.2 !important;
  text-transform: uppercase;
}

.status-chip--working,
.status-chip--proof {
  color: #6d257f;
  background: #fbebff;
}

.status-chip--open {
  color: #006f79;
  background: #e1fbfd;
}

.status-chip--preview {
  color: #a33c00;
  background: #fff0e5;
}

.work-section {
  padding: var(--section-space) 0;
  color: var(--paper-bright);
  background:
    radial-gradient(circle at 85% 0%, rgb(0 183 196 / 0.28), transparent 27rem),
    radial-gradient(circle at 2% 76%, rgb(189 59 243 / 0.24), transparent 30rem),
    var(--ink);
}

.section-intro--split {
  display: grid;
  grid-template-columns: minmax(0, 8fr) minmax(18rem, 4fr);
  align-items: end;
  gap: 3rem;
}

.section-intro--split h2 {
  max-width: 8em;
}

.section-intro--split > p {
  max-width: 31rem;
  margin: 0 0 0.6rem;
  color: #e6dceb;
  font-size: 1.16rem;
}

.product-lab {
  display: grid;
  width: min(calc(100% - (var(--page-pad) * 2)), var(--content));
  min-height: 48rem;
  margin: clamp(4rem, 7vw, 7rem) auto 0;
  grid-template-columns: minmax(18rem, 3.25fr) minmax(0, 8.75fr);
  border: 1px solid rgb(255 255 255 / 0.22);
  border-radius: 1.3rem;
  overflow: clip;
  background: rgb(255 255 255 / 0.055);
  box-shadow: 0 3rem 8rem rgb(0 0 0 / 0.22);
}

.product-selector {
  border-right: 1px solid rgb(255 255 255 / 0.18);
}

.product-selector button {
  position: relative;
  display: grid;
  width: 100%;
  min-height: 10rem;
  padding: 2rem;
  grid-template-columns: auto 1fr;
  gap: 0.35rem 1rem;
  border: 0;
  border-bottom: 1px solid rgb(255 255 255 / 0.18);
  color: inherit;
  background: transparent;
  text-align: left;
}

.product-selector button:last-child {
  border-bottom: 0;
}

.product-selector button[aria-selected="true"] {
  color: var(--ink);
  background: var(--paper-bright);
}

.product-selector button::after {
  position: absolute;
  top: 50%;
  right: 1.5rem;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: var(--orange);
  content: "";
  opacity: 0;
  transform: translateY(-50%) scale(0);
  transition:
    opacity 180ms ease,
    transform 300ms var(--ease-spring);
}

.product-selector button[aria-selected="true"]::after {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

.product-selector button > span {
  grid-row: 1 / span 2;
  font-family: var(--font-mono);
  font-size: 0.875rem;
}

.product-selector button strong {
  max-width: 17ch;
  padding-right: 1rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1.15;
}

.product-selector button small {
  color: currentColor;
  font-size: 0.9rem;
  opacity: 0.72;
}

.product-stage,
.product-panel {
  min-width: 0;
  min-height: 100%;
}

.product-panel {
  display: grid;
  grid-template-columns: minmax(15rem, 4.25fr) minmax(24rem, 7.75fr);
}

.product-panel__copy {
  padding: clamp(2rem, 4vw, 4rem);
  align-self: center;
}

.product-panel__copy h3 {
  max-width: 8em;
}

.product-panel__copy > p:not(.status-chip) {
  max-width: 31rem;
  color: #eadff0;
}

.demo-switch,
.signal-questions {
  display: flex;
  margin-top: 2rem;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.demo-switch button,
.signal-questions button {
  min-height: 2.9rem;
  padding: 0.7rem 0.9rem;
  border: 1px solid rgb(255 255 255 / 0.35);
  border-radius: 999px;
  color: var(--paper-bright);
  background: transparent;
  font-size: 0.9rem;
  font-weight: 700;
}

.demo-switch button.is-selected,
.signal-questions button.is-selected {
  color: var(--ink);
  background: var(--paper-bright);
}

.case-demo,
.source-demo,
.signal-demo {
  position: relative;
  min-width: 0;
  min-height: 100%;
  color: var(--ink);
  background:
    linear-gradient(rgb(43 23 54 / 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgb(43 23 54 / 0.045) 1px, transparent 1px),
    #f3f6f8;
  background-size: 2.5rem 2.5rem;
  overflow: hidden;
}

.case-demo__toolbar {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  left: 1.5rem;
  display: flex;
  min-height: 2.75rem;
  padding: 0.75rem 1rem;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgb(43 23 54 / 0.14);
  border-radius: 0.8rem;
  background: rgb(255 255 255 / 0.82);
  font-family: var(--font-mono);
  font-size: 0.875rem;
  backdrop-filter: blur(0.7rem);
}

.case-note,
.case-result {
  position: absolute;
  padding: 1.25rem;
  border: 1px solid rgb(43 23 54 / 0.13);
  border-radius: 0.8rem;
  box-shadow: 0 1rem 2rem rgb(43 23 54 / 0.12);
  transition:
    opacity 450ms ease,
    transform 650ms var(--ease-spring);
}

.case-note span,
.case-result span,
.source-card span,
.signal-answer span {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.case-note p,
.case-result p,
.source-card p,
.signal-answer p {
  margin: 0.65rem 0 0;
  font-size: 0.98rem;
  line-height: 1.45;
}

.case-note--one {
  top: 22%;
  left: 9%;
  width: 42%;
  background: #defbfc;
  transform: rotate(-5deg);
}

.case-note--two {
  top: 40%;
  right: 7%;
  width: 46%;
  background: #fff0e4;
  transform: rotate(4deg);
}

.case-note--three {
  bottom: 10%;
  left: 17%;
  width: 45%;
  background: #f8e9ff;
  transform: rotate(-2deg);
}

.case-result {
  top: 50%;
  left: 50%;
  width: min(78%, 30rem);
  padding: 2rem;
  border-color: rgb(255 255 255 / 0.6);
  color: var(--paper-bright);
  background: var(--ink);
  opacity: 0;
  transform: translate(-50%, -42%) scale(0.82);
}

.case-result strong {
  display: block;
  margin-top: 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 3rem);
  line-height: 1;
}

.case-demo[data-mode="clear"] .case-note {
  opacity: 0.16;
}

.case-demo[data-mode="clear"] .case-note--one {
  transform: translate(-5rem, -2rem) rotate(-10deg) scale(0.72);
}

.case-demo[data-mode="clear"] .case-note--two {
  transform: translate(5rem, -1rem) rotate(10deg) scale(0.72);
}

.case-demo[data-mode="clear"] .case-note--three {
  transform: translate(-2rem, 4rem) rotate(-8deg) scale(0.72);
}

.case-demo[data-mode="clear"] .case-result {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.serving-control {
  display: flex;
  max-width: 19rem;
  margin-top: 2.2rem;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
}

.serving-control strong {
  display: grid;
  width: 2.8rem;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--orange);
}

#serving-range {
  width: min(100%, 19rem);
  height: 2.75rem;
  accent-color: var(--orange);
}

.source-demo {
  display: grid;
  padding: clamp(2rem, 6vw, 6rem);
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 1.2rem;
}

.source-card {
  position: relative;
  min-height: 18rem;
  padding: 2rem;
  border: 1px solid rgb(43 23 54 / 0.18);
  box-shadow: 0 1.2rem 2.4rem rgb(43 23 54 / 0.12);
}

.source-card--original {
  background:
    repeating-linear-gradient(0deg, transparent 0 1.7rem, rgb(38 69 173 / 0.11) 1.75rem 1.8rem),
    #f9f7f3;
  transform: rotate(-2.5deg);
}

.source-card--working {
  border-radius: 1.4rem;
  background: var(--paper-bright);
  transform: rotate(1.5deg);
}

.source-card strong {
  display: block;
  margin-top: 2rem;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 3rem);
  line-height: 1;
}

.source-link {
  display: grid;
  width: 3.25rem;
  height: 3.25rem;
  place-items: center;
  border-radius: 50%;
  color: var(--paper-bright);
  background: var(--lagoon);
  font-size: 1.5rem;
}

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

.signal-demo {
  display: grid;
  padding: clamp(2rem, 5vw, 5rem);
  grid-template-rows: 1fr auto auto;
}

.signal-map {
  position: relative;
  min-height: 17rem;
}

.signal-node,
.signal-line {
  position: absolute;
  transition:
    transform 650ms var(--ease-spring),
    background 300ms ease;
}

.signal-node {
  z-index: 2;
  width: 3.2rem;
  height: 3.2rem;
  border: 0.5rem solid rgb(255 255 255 / 0.72);
  border-radius: 50%;
  background: var(--lagoon);
  box-shadow: 0 0.7rem 1.4rem rgb(43 23 54 / 0.18);
}

.signal-node--a {
  top: 8%;
  left: 11%;
}

.signal-node--b {
  top: 55%;
  left: 34%;
  background: var(--orange);
}

.signal-node--c {
  top: 17%;
  right: 23%;
  background: var(--orchid);
}

.signal-node--d {
  right: 4%;
  bottom: 9%;
  background: var(--ink);
}

.signal-line {
  z-index: 1;
  height: 0.24rem;
  background: var(--metal);
  transform-origin: left center;
}

.signal-line--one {
  top: 28%;
  left: 15%;
  width: 42%;
  transform: rotate(24deg);
}

.signal-line--two {
  top: 31%;
  left: 51%;
  width: 26%;
  transform: rotate(-12deg);
}

.signal-line--three {
  top: 58%;
  left: 39%;
  width: 47%;
  transform: rotate(5deg);
}

.signal-demo[data-signal="trust"] .signal-node--a {
  transform: translate(2rem, 5rem);
}

.signal-demo[data-signal="trust"] .signal-node--b {
  transform: translate(4rem, -4rem) scale(1.35);
}

.signal-demo[data-signal="trust"] .signal-node--d {
  transform: translate(-4rem, -2rem);
}

.signal-demo[data-signal="next"] .signal-node--a {
  transform: translate(5rem, 7rem) scale(0.75);
}

.signal-demo[data-signal="next"] .signal-node--b {
  transform: translate(8rem, -1rem);
}

.signal-demo[data-signal="next"] .signal-node--c {
  transform: translate(-2rem, 7rem);
}

.signal-answer {
  padding: 1.5rem;
  border-left: 0.45rem solid var(--orange);
  background: var(--paper-bright);
  box-shadow: 0 0.8rem 1.8rem rgb(43 23 54 / 0.09);
}

.signal-answer strong {
  display: block;
  margin-top: 0.55rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.2vw, 2.2rem);
  line-height: 1.1;
}

.signal-sources {
  display: flex;
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
  gap: 0.5rem;
}

.signal-sources li {
  padding: 0.4rem 0.65rem;
  border: 1px solid rgb(43 23 54 / 0.2);
  border-radius: 999px;
  background: rgb(255 255 255 / 0.7);
  font-family: var(--font-mono);
  font-size: 0.875rem;
}

.routes-section {
  padding: var(--section-space) 0;
  background:
    linear-gradient(90deg, rgb(0 183 196 / 0.07), transparent 33%),
    var(--paper-bright);
}

.routes-heading {
  display: grid;
  grid-template-columns: 3fr 9fr;
  align-items: end;
  gap: 2rem;
}

.routes-heading .eyebrow {
  margin-bottom: 0.7rem;
}

.routes-heading h2 {
  max-width: 9.5em;
}

.routes-grid {
  display: grid;
  width: min(calc(100% - (var(--page-pad) * 2)), var(--content));
  margin: clamp(4rem, 7vw, 7rem) auto 0;
  grid-template-columns: 1fr 1fr;
  border-block: 1px solid var(--line);
}

.route {
  position: relative;
  min-height: 31rem;
  padding: clamp(2rem, 5vw, 5rem);
  overflow: hidden;
}

.route:first-child {
  border-right: 1px solid var(--line);
}

.route--open {
  background: #e9fcfd;
}

.route--paid {
  background: #fff3eb;
}

.route__number {
  position: absolute;
  right: -0.04em;
  bottom: -0.19em;
  color: rgb(43 23 54 / 0.07);
  font-family: var(--font-display);
  font-size: clamp(12rem, 25vw, 26rem);
  line-height: 0.8;
  pointer-events: none;
}

.route h3 {
  position: relative;
  z-index: 1;
  max-width: 8em;
}

.route > p:not(.status-chip) {
  position: relative;
  z-index: 1;
  max-width: 34rem;
}

.route > a {
  position: absolute;
  z-index: 2;
  bottom: 3rem;
  left: clamp(2rem, 5vw, 5rem);
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  gap: 0.7rem;
  font-weight: 800;
}

.method-section {
  padding: var(--section-space) 0;
  background: var(--paper);
  overflow: hidden;
}

.method-heading {
  display: grid;
  grid-template-columns: 2fr 7fr 3fr;
  align-items: end;
  gap: 2rem;
}

.method-heading .eyebrow {
  margin-bottom: 0.75rem;
}

.method-heading h2 {
  max-width: 8em;
}

.method-heading > p:last-child {
  margin: 0 0 0.5rem;
}

.method-controls {
  display: flex;
  width: min(calc(100% - (var(--page-pad) * 2)), var(--content));
  margin: 4rem auto 1rem;
  align-items: center;
  justify-content: flex-end;
  gap: 0.85rem;
}

.method-controls button {
  display: grid;
  width: 3.25rem;
  height: 3.25rem;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper-bright);
  font-size: 1.25rem;
  transition:
    transform 180ms var(--ease-out),
    background 180ms ease;
}

.method-controls button:hover {
  color: var(--paper-bright);
  background: var(--ink);
  transform: scale(1.06);
}

.method-progress,
#method-progress {
  min-width: 7rem;
  font-family: var(--font-mono);
  font-size: 0.875rem;
  text-align: center;
}

.method-rail {
  display: flex;
  width: 100%;
  padding: 0 max(var(--page-pad), calc((100vw - var(--content)) / 2));
  gap: 1.2rem;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-padding-inline: var(--page-pad);
  scroll-snap-type: inline mandatory;
  scrollbar-width: thin;
}

.method-step {
  position: relative;
  flex: 0 0 min(78vw, 28rem);
  min-height: 34rem;
  padding: 2.3rem;
  border-left: 1px solid var(--line);
  scroll-snap-align: start;
  overflow: hidden;
}

.method-step > span {
  font-family: var(--font-mono);
  font-size: 0.875rem;
}

.method-step h3 {
  margin-top: 2rem;
}

.method-step p {
  max-width: 28ch;
  font-size: 1.08rem;
}

.method-object {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  height: 46%;
}

.method-object::before,
.method-object::after {
  position: absolute;
  content: "";
}

.method-object--notice::before {
  top: 10%;
  left: 19%;
  width: 45%;
  aspect-ratio: 1;
  border: 1.1rem solid var(--lagoon);
  border-radius: 50%;
  box-shadow: 1.4rem 1.6rem 0 rgb(0 142 157 / 0.16);
}

.method-object--notice::after {
  right: 18%;
  bottom: 12%;
  width: 34%;
  height: 0.8rem;
  border-radius: 999px;
  background: var(--ink);
  transform: rotate(42deg);
}

.method-object--decide::before {
  top: 11%;
  left: 9%;
  width: 36%;
  height: 56%;
  border-radius: 1rem;
  background: rgb(189 59 243 / 0.22);
  box-shadow:
    4rem 2rem 0 var(--orchid),
    8rem -0.4rem 0 rgb(189 59 243 / 0.14);
}

.method-object--decide::after {
  right: 8%;
  bottom: 14%;
  width: 45%;
  height: 0.65rem;
  border-radius: 999px;
  background: var(--orange);
}

.method-object--play {
  background:
    radial-gradient(circle at 20% 54%, var(--orange) 0 1.3rem, transparent 1.4rem),
    radial-gradient(circle at 47% 26%, var(--lagoon) 0 2.2rem, transparent 2.3rem),
    radial-gradient(circle at 74% 61%, var(--orchid) 0 1.8rem, transparent 1.9rem),
    linear-gradient(24deg, transparent 47%, var(--ink) 48% 50%, transparent 51%);
}

.method-object--shape::before {
  inset: 10% 17%;
  border: 0.75rem solid var(--ink);
  border-radius: 2rem 50% 2rem 50%;
  background: linear-gradient(145deg, rgb(0 183 196 / 0.4), rgb(255 255 255 / 0.25));
  transform: rotate(-8deg);
}

.method-object--shape::after {
  top: 43%;
  left: 42%;
  width: 17%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 0.8rem rgb(255 106 23 / 0.2);
}

.method-object--prove::before {
  right: 13%;
  bottom: 11%;
  left: 13%;
  height: 66%;
  border: 0.7rem solid var(--ink);
  border-radius: 1.2rem;
  background: var(--paper-bright);
  box-shadow: 1.1rem 1.1rem 0 var(--orange);
}

.method-object--prove::after {
  top: 38%;
  left: 37%;
  width: 26%;
  height: 0.75rem;
  border-radius: 999px;
  background: var(--lagoon);
  box-shadow: 0 1.5rem 0 rgb(0 142 157 / 0.25);
}

.research-section {
  position: relative;
  display: grid;
  min-height: 100svh;
  padding: var(--section-space) var(--page-pad);
  grid-template-columns: minmax(20rem, 5fr) minmax(0, 7fr);
  align-items: center;
  gap: 4rem;
  color: var(--paper-bright);
  background:
    radial-gradient(circle at 16% 64%, rgb(189 59 243 / 0.3), transparent 26rem),
    radial-gradient(circle at 83% 22%, rgb(0 183 196 / 0.21), transparent 24rem),
    #1e0d27;
  overflow: hidden;
}

.research-copy {
  position: relative;
  z-index: 2;
  max-width: 65rem;
}

.research-copy h2 {
  font-size: clamp(3rem, 6.2vw, 6.6rem);
}

.research-copy > p:last-child {
  max-width: 43rem;
  color: #eadff0;
}

.status-chip--research {
  margin-bottom: 2rem;
  color: #c8faff;
  background: rgb(0 183 196 / 0.15);
}

.research-object {
  position: relative;
  width: min(100%, 34rem);
  aspect-ratio: 1;
  justify-self: center;
  border: 1px solid rgb(255 255 255 / 0.16);
  border-radius: 50%;
  background:
    radial-gradient(circle at center, transparent 0 24%, rgb(255 255 255 / 0.06) 25% 27%, transparent 28%),
    conic-gradient(from 12deg, var(--orchid), var(--orange), var(--lagoon), var(--orchid));
  box-shadow:
    inset 0 0 0 6rem rgb(30 13 39 / 0.78),
    0 0 7rem rgb(189 59 243 / 0.18);
}

.research-object::before {
  position: absolute;
  inset: 17%;
  border: 1px solid rgb(255 255 255 / 0.33);
  border-radius: 50%;
  content: "";
}

.research-object span {
  position: absolute;
  width: 4.5rem;
  height: 4.5rem;
  border: 0.45rem solid rgb(255 255 255 / 0.35);
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 1rem 2rem rgb(0 0 0 / 0.35);
}

.research-object span:nth-child(1) {
  top: 5%;
  left: 43%;
  background: var(--orange);
}

.research-object span:nth-child(2) {
  top: 43%;
  right: 4%;
  background: var(--lagoon);
}

.research-object span:nth-child(3) {
  bottom: 3%;
  left: 37%;
  background: var(--orchid);
}

.research-object span:nth-child(4) {
  top: 46%;
  left: 3%;
  background: var(--paper-bright);
}

.contact-section {
  position: relative;
  min-height: 100svh;
  padding: var(--section-space) var(--page-pad);
  background:
    linear-gradient(180deg, rgb(255 255 255 / 0.9), transparent 35%),
    #e7fbfc;
  overflow: hidden;
}

.contact-copy {
  position: relative;
  z-index: 2;
  width: min(100%, 74rem);
  margin: 0 auto;
  text-align: center;
}

.contact-copy .eyebrow {
  display: inline-block;
}

.contact-copy h2 {
  font-size: clamp(4rem, 9vw, 9.5rem);
}

.contact-copy > p:not(.contact-note):not(.sr-only) {
  margin: 2rem auto 0;
}

.contact-questions {
  display: grid;
  max-width: 62rem;
  margin: 4rem auto 0;
  padding: 0;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--line);
  list-style: none;
  counter-reset: contact-question;
  text-align: left;
}

.contact-questions li {
  min-height: 11rem;
  padding: 2rem;
  border-right: 1px solid var(--line);
  counter-increment: contact-question;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.1;
}

.contact-questions li:last-child {
  border-right: 0;
}

.contact-questions li::before {
  display: block;
  margin-bottom: 1.5rem;
  color: var(--lagoon);
  content: "0" counter(contact-question);
  font-family: var(--font-mono);
  font-size: 0.875rem;
}

.button-contact {
  margin-top: 2.5rem;
  border-color: var(--ink);
  color: var(--paper-bright);
  background: var(--ink);
  box-shadow: 0.7rem 0.7rem 0 var(--orange);
}

.button-contact[data-status="success"] {
  background: #006f79;
}

.button-contact[data-status="error"] {
  background: #9d2700;
}

.contact-note {
  max-width: 42rem;
  margin: 2rem auto 0;
  color: var(--ink-soft);
  font-size: 0.94rem !important;
}

.contact-pieces span {
  position: absolute;
  border: 1px solid rgb(43 23 54 / 0.14);
  border-radius: 0.9rem;
  box-shadow:
    0 1.2rem 2rem rgb(43 23 54 / 0.12),
    inset 0.2rem 0.2rem 0.5rem rgb(255 255 255 / 0.42);
}

.contact-pieces span:nth-child(1) {
  top: 12%;
  left: 3%;
  width: 8rem;
  height: 4rem;
  background: var(--orange);
  transform: rotate(12deg);
}

.contact-pieces span:nth-child(2) {
  top: 18%;
  right: 4%;
  width: 6rem;
  height: 10rem;
  background: rgb(255 255 255 / 0.45);
  backdrop-filter: blur(0.4rem);
  transform: rotate(-8deg);
}

.contact-pieces span:nth-child(3) {
  bottom: 9%;
  left: 8%;
  width: 7rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--orchid);
}

.contact-pieces span:nth-child(4) {
  right: 9%;
  bottom: 11%;
  width: 11rem;
  height: 3rem;
  background: var(--lagoon);
  transform: rotate(9deg);
}

.contact-pieces span:nth-child(5) {
  bottom: -3rem;
  left: 44%;
  width: 9rem;
  height: 9rem;
  background: linear-gradient(135deg, #fff, #aeb8c2);
  transform: rotate(45deg);
}

.site-footer {
  display: grid;
  min-height: 8rem;
  padding: 1.5rem var(--page-pad);
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  color: var(--paper-bright);
  background: var(--ink);
}

.site-footer p {
  margin: 0;
  color: #d7cadc;
  text-align: center;
}

.site-footer > a:last-child {
  min-height: 3rem;
  display: inline-flex;
  align-items: center;
}

.no-js .hero-video,
.no-js .method-controls {
  display: none;
}

.no-js .assembly-controls,
.no-js .product-selector {
  pointer-events: none;
}

@media (max-width: 1120px) {
  .studio-nav__status {
    display: none;
  }

  .studio-nav {
    grid-template-columns: auto 1fr;
  }

  .hero-content {
    grid-template-columns: minmax(0, 7fr) minmax(15rem, 5fr);
  }

  .hero-aperture {
    right: 5vw;
    width: clamp(12rem, 21vw, 15rem);
    padding: 1.5rem;
  }

  .assembly-lab {
    grid-template-columns: 15rem minmax(25rem, 1fr);
  }

  .assembly-panels {
    grid-column: 1 / -1;
    min-height: 18rem;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

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

  .product-panel__copy {
    min-height: 24rem;
  }

  .case-demo,
  .source-demo,
  .signal-demo {
    min-height: 34rem;
  }

  .method-heading {
    grid-template-columns: 1fr 3fr;
  }

  .method-heading > p:last-child {
    grid-column: 2;
  }
}

@media (max-width: 860px) {
  html {
    scroll-padding-top: 2rem;
  }

  body {
    padding-bottom: calc(5rem + env(safe-area-inset-bottom, 0px));
  }

  .studio-nav,
  .studio-nav.is-docked {
    top: auto;
    right: 0.75rem;
    bottom: calc(0.75rem + env(safe-area-inset-bottom, 0px));
    left: 0.75rem;
    width: auto;
    min-height: 4.15rem;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.35rem;
    padding: 0.35rem;
    border-color: rgb(43 23 54 / 0.14);
    border-radius: 1.2rem;
    background: rgb(255 255 255 / 0.93);
    transform: none;
  }

  .studio-mark__name {
    display: none;
  }

  .studio-mark__symbol {
    width: 3rem;
    height: 3rem;
  }

  .studio-nav__links {
    min-width: 0;
    gap: 0.05rem;
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .studio-nav__links::-webkit-scrollbar {
    display: none;
  }

  .studio-nav__links a {
    flex: 0 0 auto;
    min-width: 2.75rem;
    min-height: 3rem;
    padding: 0.75rem 0.3rem;
    justify-content: center;
    font-size: 0.875rem;
  }

  .studio-nav__links .studio-nav__contact {
    background: var(--orange);
  }

  .hero {
    min-height: 62rem;
  }

  .hero-poster img,
  .hero-video {
    object-position: 67% 58%;
  }

  .hero-media__wash {
    background:
      linear-gradient(180deg, rgb(248 250 252 / 0.99) 0 43%, rgb(248 250 252 / 0.56) 64%, rgb(248 250 252 / 0.12) 78%, transparent),
      linear-gradient(0deg, rgb(43 23 54 / 0.15), transparent 30%);
  }

  .hero-content {
    display: flex;
    min-height: 62rem;
    padding-top: 3rem;
    padding-bottom: 1.2rem;
    flex-direction: column;
    align-items: stretch;
  }

  .hero-copy {
    padding: 2rem 0 0;
  }

  .hero h1 {
    font-size: clamp(3.7rem, 13vw, 6rem);
  }

  .hero-intro {
    max-width: 36rem;
  }

  .hero-aperture {
    position: relative;
    top: auto;
    right: auto;
    width: min(15rem, 58vw);
    margin: auto auto 1.5rem;
    transform: none;
  }

  .hero-aperture:hover {
    transform: scale(1.025) rotate(1deg);
  }

  .hero-meta {
    margin-top: auto;
  }

  .section-intro--wide,
  .section-intro--split,
  .routes-heading,
  .method-heading {
    grid-template-columns: 1fr;
  }

  .section-intro--wide > p:last-child,
  .section-intro--split > p,
  .method-heading > p:last-child {
    grid-column: auto;
    margin-top: 1.5rem;
  }

  .assembly-lab {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .assembly-controls {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-right: 0;
    border-bottom: 1px solid var(--line);
    overflow-x: auto;
  }

  .assembly-tab {
    min-width: 11rem;
    min-height: 7rem;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .assembly-tab::after {
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    width: auto;
    height: 0.35rem;
  }

  .assembly-stage {
    width: min(calc(100% - 2rem), 36rem);
    margin-inline: auto;
  }

  .assembly-panels {
    grid-column: auto;
  }

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

  .product-selector {
    display: flex;
    border-right: 0;
    border-bottom: 1px solid rgb(255 255 255 / 0.18);
    overflow-x: auto;
  }

  .product-selector button {
    flex: 0 0 18rem;
    min-height: 8.75rem;
    border-right: 1px solid rgb(255 255 255 / 0.18);
    border-bottom: 0;
  }

  .product-selector button::after {
    top: auto;
    right: 1.2rem;
    bottom: 1rem;
  }

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

  .route:first-child {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .route {
    min-height: 29rem;
  }

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

  .research-object {
    width: min(78vw, 30rem);
  }

  .contact-questions {
    grid-template-columns: 1fr;
  }

  .contact-questions li {
    min-height: 8rem;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .contact-questions li:last-child {
    border-bottom: 0;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding-block: 2.5rem;
    text-align: center;
  }

  .site-footer .studio-mark,
  .site-footer > a:last-child {
    justify-self: center;
  }
}

@media (max-width: 600px) {
  :root {
    --page-pad: 1.1rem;
    --section-space: 6.5rem;
  }

  .hero {
    min-height: 58rem;
  }

  .hero-content {
    min-height: 58rem;
  }

  .role-line {
    max-width: 27rem;
    font-size: 0.875rem;
  }

  .hero h1 {
    font-size: clamp(3.35rem, 15.3vw, 5rem);
    line-height: 0.89;
  }

  .hero-intro {
    margin-top: 1.4rem;
    font-size: 1.08rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-aperture {
    width: 12.75rem;
    padding: 1.3rem;
  }

  .hero-aperture__action {
    display: none;
  }

  .hero-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.45rem 1rem;
    padding-top: 0.75rem;
  }

  .hero-meta span:nth-child(2) {
    margin-right: 0;
    text-align: right;
  }

  .hero-meta a {
    grid-column: 1 / -1;
    min-height: 2.75rem;
  }

  .section-intro h2,
  .routes-heading h2,
  .method-heading h2,
  .research-copy h2,
  .contact-copy h2 {
    font-size: clamp(3rem, 14vw, 4.6rem);
  }

  .assembly-controls {
    grid-template-columns: repeat(3, minmax(11rem, 1fr));
  }

  .assembly-stage {
    width: calc(100% - 1rem);
  }

  .assembly-panel,
  .product-panel__copy {
    padding: 1.5rem;
  }

  .product-panel__copy {
    min-height: 0;
  }

  .case-demo,
  .source-demo,
  .signal-demo {
    min-height: 31rem;
  }

  .case-note {
    padding: 1rem;
  }

  .case-note--one {
    width: 62%;
  }

  .case-note--two {
    width: 65%;
  }

  .case-note--three {
    width: 61%;
  }

  .case-result {
    width: 88%;
    padding: 1.4rem;
  }

  .source-demo {
    padding: 2rem 1.25rem;
    grid-template-columns: 1fr;
  }

  .source-card {
    min-height: 11rem;
    padding: 1.3rem;
  }

  .source-card strong {
    margin-top: 1.1rem;
  }

  .source-link {
    margin-inline: auto;
    transform: rotate(90deg);
  }

  .signal-demo {
    padding: 1.5rem;
  }

  .signal-map {
    min-height: 13rem;
  }

  .signal-sources {
    flex-wrap: wrap;
  }

  .route {
    padding: 2rem 1.5rem;
  }

  .route > a {
    bottom: 2rem;
    left: 1.5rem;
  }

  .method-step {
    flex-basis: 86vw;
    min-height: 31rem;
    padding: 1.7rem;
  }

  .research-section,
  .contact-section {
    padding-inline: var(--page-pad);
  }

  .contact-pieces span:nth-child(1),
  .contact-pieces span:nth-child(2) {
    opacity: 0.38;
  }

  .contact-questions li {
    padding: 1.5rem 1rem;
  }
}

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

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

  .hero-video {
    display: none;
  }

  .studio-nav,
  .studio-nav.is-docked {
    width: min(calc(100% - 2rem), 88rem);
    border-radius: 1.2rem;
  }

  .method-rail {
    scroll-snap-type: none;
  }

  .assembly-piece {
    transition: none;
  }
}

@media (prefers-reduced-motion: reduce) and (max-width: 860px) {
  .studio-nav,
  .studio-nav.is-docked {
    width: auto;
  }
}

@media (forced-colors: active) {
  .hero-media,
  .contact-pieces,
  .research-object,
  .method-object,
  .assembly-stage {
    forced-color-adjust: none;
  }

  .studio-nav,
  .button,
  .status-chip,
  .assembly-tab,
  .product-selector button {
    border: 2px solid CanvasText;
  }
}
