:root {
  --paper: #f2efe6;
  --ink: #292c26;
  --orange: #b83f21;
  --accent: #e45c35;
  --muted: #66675d;
  --line: #ceccc0;
  --dark: #272d29;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  color-scheme: light;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 35px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}
body:after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: url("assets/paper-grain.png");
  opacity: 0.085;
  mix-blend-mode: multiply;
  z-index: 20;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea {
  font: inherit;
}
button,
a,
input,
textarea {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
button:disabled {
  cursor: default;
}
button {
  color: inherit;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 6px;
}
button {
  border: 0;
  background: none;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  font-weight: 500;
}
button svg {
  width: 20px;
  height: 20px;
}
::selection {
  background: #e45c3540;
}
.wrap {
  width: min(1400px, calc(100% - 112px));
  margin-inline: auto;
}
.section-space {
  padding-block: 120px;
}
.eyebrow {
  font-family: "DM Sans", sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1.8;
}
.handwritten,
.hand-label {
  font-family: "Caveat", cursive;
  font-weight: 400;
}
.handwritten {
  font-size: 1.65rem;
}
.header {
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.wordmark {
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -0.065em;
  display: inline-flex;
  align-items: center;
}
.brand-period {
  color: var(--orange);
}
.brand-mark {
  display: inline-block;
  margin-right: 14px;
  font-family: Georgia, serif;
  font-size: 2.55rem;
  position: relative;
  font-style: italic;
  line-height: 1;
}
.brand-mark span {
  position: absolute;
  right: -9px;
  top: -6px;
  color: var(--orange);
  font-size: 1.35rem;
  font-style: normal;
}
.header nav {
  display: flex;
  gap: 34px;
  align-items: center;
  font-size: 0.77rem;
}
.header nav > a {
  padding-block: 12px;
}
.header nav > a:hover {
  color: var(--orange);
}
.nav-cta {
  border-bottom: 1px solid var(--ink);
}
.nav-cta span {
  padding-left: 28px;
  font-size: 1.1rem;
}
.hero {
  position: relative;
  display: grid;
  grid-template-columns: 0.95fr 1.25fr;
  align-items: center;
  min-height: 745px;
  padding-top: 36px;
}
.hero-copy {
  padding-bottom: 55px;
  position: relative;
  z-index: 2;
}
.hero .eyebrow {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 28px;
  font-size: 0.62rem;
}
.tiny-sun {
  font-size: 1.3rem;
  color: var(--orange);
  line-height: 1;
}
h1 {
  font-size: clamp(4.3rem, 6.7vw, 6.6rem);
  letter-spacing: -0.075em;
  line-height: 1.025;
  font-weight: 400;
}
.motion-word {
  color: var(--orange);
  position: relative;
  display: inline-block;
}
.motion-word svg {
  position: absolute;
  left: 0;
  bottom: -15px;
  width: 100%;
  height: 25px;
  fill: none;
  stroke: var(--orange);
  stroke-width: 1.2;
  stroke-dasharray: 500;
  animation: underline-draw 2.8s var(--ease) both;
}
.hero-description {
  font-size: 0.88rem;
  line-height: 1.85;
  color: #5b5f55;
  max-width: 360px;
  margin-top: 35px;
}
.hero-actions {
  display: flex;
  gap: 25px;
  align-items: center;
  margin-top: 30px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 17px 21px;
  min-height: 50px;
  border: 1px solid transparent;
  transition:
    background 0.25s,
    transform 0.25s;
  white-space: nowrap;
}
.primary {
  background: var(--ink);
  color: var(--paper);
}
.primary:hover {
  background: var(--orange);
  transform: translateY(-2px);
}
.button span {
  font-size: 1.15rem;
  line-height: 1;
}
.text-link {
  font-size: 0.72rem;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.text-link:hover {
  color: var(--orange);
  border-color: var(--orange);
}
.hero-note {
  font-size: 1.42rem;
  transform: rotate(-4deg);
  margin-top: 26px;
  margin-left: 12px;
  color: #686d5c;
}
.hero-art {
  align-self: stretch;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-width: 0;
  margin-left: -34px;
  margin-right: -25px;
  margin-top: 0;
}
.plate-top {
  position: absolute;
  top: 7px;
  left: 65px;
  right: 15px;
  display: flex;
  justify-content: space-between;
  font-size: 0.52rem;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.machine-svg {
  width: 112%;
  max-width: none;
  height: auto;
  overflow: visible;
  display: block;
  color: #555b4c;
  margin-top: -28px;
}
.machine-svg .hand-label {
  font-size: 21px;
  fill: #777c6b;
}
.machine-svg .technical-label {
  font:
    8px "DM Sans",
    sans-serif;
  letter-spacing: 0.8px;
}
.machine-caption {
  display: flex;
  align-items: center;
  gap: 9px;
  position: absolute;
  bottom: 55px;
  left: 65px;
  right: 18px;
  font-size: 0.67rem;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.status-led {
  width: 5px;
  height: 5px;
  background: var(--orange);
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}
.cycle-number {
  margin-left: auto;
  font-size: 0.55rem;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.12em;
  color: var(--muted);
}
.hero-bottom {
  grid-column: 1/-1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-self: end;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.55rem;
  letter-spacing: 0.14em;
  color: var(--muted);
}
.hero-bottom a {
  letter-spacing: 0.02em;
  font-size: 0.65rem;
  color: var(--ink);
}
.hero-bottom a span {
  padding-left: 23px;
}
.principle-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 33px;
  border-bottom: 1px solid var(--line);
  font-size: 0.7rem;
  color: #626659;
}
.principle-strip > span:nth-child(even) {
  color: var(--orange);
  font-size: 1rem;
}
.section-heading {
  text-align: center;
}
h2 {
  font-size: clamp(2.7rem, 4.3vw, 4.4rem);
  line-height: 1.1;
  letter-spacing: -0.06em;
  font-weight: 400;
}
h2 em {
  font-family: Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.06em;
}
.section-heading .eyebrow {
  margin-bottom: 20px;
}
.section-heading > p:last-child {
  margin-top: 25px;
  line-height: 1.85;
  color: var(--muted);
  font-size: 0.9rem;
}
.craft-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-top: 70px;
}
.study {
  height: 255px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background-image: radial-gradient(#aaa99860 0.6px, transparent 0.6px);
  background-size: 16px 16px;
}
.study-note {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) rotate(-5deg);
  font-size: 1.42rem;
  white-space: nowrap;
  color: #717460;
}
.study-figure {
  position: absolute;
  left: 5px;
  top: 10px;
  font-size: 0.55rem;
  color: var(--muted);
  letter-spacing: 0.1em;
}
.slip {
  position: absolute;
  width: 100px;
  height: 122px;
  border: 1px solid #828577;
  left: calc(50% - 50px);
  top: 36px;
  padding: 22px 15px;
  background: var(--paper);
  box-shadow: 3px 5px 0 #2c322208;
}
.slip i,
.finished-record i {
  display: block;
  height: 1px;
  background: #a8aa9c;
  margin: 10px 0;
  width: 100%;
}
.slip i:nth-child(2) {
  width: 70%;
}
.slip b {
  display: block;
  color: var(--orange);
  border: 1px solid var(--orange);
  border-radius: 50%;
  width: 22px;
  height: 22px;
  font-size: 13px;
  font-weight: 400;
  text-align: center;
  margin-top: 10px;
}
.slip-one {
  animation: align-one 9s var(--ease) infinite;
  transform: translate(-46px, -5px) rotate(-17deg);
}
.slip-two {
  animation: align-two 9s var(--ease) infinite;
  transform: translate(35px, 3px) rotate(13deg);
}
.slip-three {
  animation: align-three 9s var(--ease) infinite;
  transform: translate(0, 10px) rotate(-3deg);
}
.alignment-lines {
  position: absolute;
  left: calc(50% - 62px);
  top: 20px;
  width: 124px;
  height: 152px;
  border: 1px dashed #a8aa9c70;
}
.study-connect svg {
  width: 100%;
  height: 200px;
  overflow: visible;
  fill: none;
  stroke: #757a67;
  stroke-width: 1;
}
.study-guide {
  stroke: #a8aa9c80;
  stroke-width: 0.65;
  stroke-dasharray: 3 4;
}
.connector-path {
  stroke: var(--accent);
  stroke-width: 1.3;
  stroke-dasharray: 340;
  animation: connect-draw 9s var(--ease) infinite;
}
.coupler rect {
  fill: var(--paper);
}
.coupler-left {
  animation: couple-left 9s var(--ease) infinite;
}
.coupler-right {
  animation: couple-right 9s var(--ease) infinite;
}
.coupler path {
  opacity: 0.55;
  stroke-width: 0.6;
}
.signal-dot {
  fill: var(--accent);
  stroke: none;
  animation: signal 9s var(--ease) infinite;
}
.finished-record {
  position: absolute;
  width: 120px;
  height: 139px;
  left: calc(50% - 60px);
  top: 27px;
  border: 1px solid #828577;
  padding: 17px;
  background: var(--paper);
  transform: rotate(-3deg);
  animation: record-settle 9s var(--ease) infinite;
  box-shadow: 4px 5px 0 #2c322208;
}
.finished-record > span {
  font-size: 0.43rem;
  letter-spacing: 0.06em;
}
.finished-record i {
  margin: 12px 0;
}
.finished-record i:nth-of-type(2) {
  width: 72%;
}
.stamp {
  position: absolute;
  right: 12px;
  bottom: 11px;
  width: 38px;
  height: 38px;
  animation: stamp-in 9s var(--ease) infinite;
}
.stamp svg {
  fill: none;
  stroke: var(--orange);
  stroke-width: 1.5;
}
.item-title {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 26px;
}
.item-title > span {
  font-size: 0.6rem;
  color: var(--orange);
}
.item-title h3 {
  font-size: 1.15rem;
  letter-spacing: -0.025em;
}
.craft-item > p {
  margin: 14px 0 0 27px;
  max-width: 290px;
  font-size: 0.8rem;
  line-height: 1.85;
  color: var(--muted);
}
.workflow-section {
  background: var(--dark);
  color: #f2efe6;
  position: relative;
  overflow: hidden;
}
.workflow-section:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(#d3cbb629 0.65px, transparent 0.65px);
  background-size: 24px 24px;
  pointer-events: none;
  mask-image: linear-gradient(transparent, #000);
}
.workflow-section > .wrap {
  position: relative;
}
.workflow-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
}
.workflow-heading .eyebrow {
  color: #c8c7b7;
  margin-bottom: 24px;
}
.workflow-heading h2 em {
  color: #d9b790;
}
.workflow-heading > p {
  font-size: 0.85rem;
  line-height: 1.85;
  color: #c2c4b6;
  padding-bottom: 6px;
}
.workflow-tabs {
  display: flex;
  margin-top: 58px;
  border-bottom: 1px solid #667064;
}
.workflow-tabs button {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 15px;
  text-align: left;
  color: #b8beb1;
  border-bottom: 2px solid transparent;
  padding: 20px 15px;
  font-size: 0.65rem;
  transition:
    background 0.2s,
    color 0.2s;
}
.workflow-tabs button > span {
  font-size: 0.85rem;
}
.workflow-tabs button[aria-selected="true"] {
  color: #f1e8d7;
  border-bottom-color: #e9916f;
  background: #ffffff05;
}
.workflow-tabs button:hover {
  background: #ffffff08;
}
.workflow-bench {
  border: 1px solid #657062;
  border-top: 0;
  padding: 24px 30px 19px;
}
.bench-top,
.bench-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  font-size: 0.53rem;
  letter-spacing: 0.1em;
  color: #c0c5b7;
}
.bench-meta span {
  font-size: 1rem;
  margin-left: 8px;
}
.bench-stations {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  position: relative;
  padding: 42px 0 30px;
}
.bench-stations:before {
  content: "";
  position: absolute;
  left: 7%;
  right: 7%;
  top: 50%;
  border-top: 1px dashed #a99a7680;
}
.station {
  position: relative;
  min-width: 0;
}
.station-label {
  font-size: 0.53rem;
  letter-spacing: 0.1em;
  color: #c4c9bb;
  display: block;
  text-align: center;
  margin-bottom: 27px;
}
.station > p {
  font-size: 0.65rem;
  color: #c0c5b7;
  text-align: center;
  margin-top: 25px;
  line-height: 1.5;
}
.input-stack {
  position: relative;
  width: 205px;
  margin: auto;
  max-width: 100%;
}
.input-stack:before,
.input-stack:after {
  content: "";
  position: absolute;
  inset: 0;
  background: #d5d3c5;
  transform: rotate(-7deg);
  border: 1px solid #777c6b;
}
.input-stack:after {
  transform: rotate(4deg);
  background: #e1ded2;
}
.input-sheet {
  position: relative;
  z-index: 1;
  background: var(--paper);
  color: var(--ink);
  padding: 22px 23px 17px;
  min-height: 222px;
  box-shadow: 8px 14px 20px #0002;
  animation: input-feed 14s var(--ease) infinite;
}
.input-sheet > span:first-child {
  font-size: 0.5rem;
  letter-spacing: 0.08em;
  color: #616658;
}
.input-sheet h3 {
  font-family: Georgia, serif;
  font-size: 1.3rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1.3;
  margin: 21px 0;
}
.scribble-line {
  height: 5px;
  border-top: 1px solid #8a8e7d;
  border-bottom: 1px solid #8a8e7d;
  transform: rotate(-1deg);
  opacity: 0.45;
  width: 93%;
  margin-bottom: 10px;
}
.scribble-line.short {
  width: 65%;
}
.attachment {
  display: block;
  font-size: 0.57rem;
  margin-top: 22px;
  color: #626657;
}
.process-drawing {
  height: 161px;
  color: #b0b49c;
  position: relative;
  max-width: 245px;
  margin: auto;
}
.process-drawing svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}
.process-guide {
  fill: none;
  stroke: #9ca58d70;
  stroke-width: 0.75;
}
.process-center {
  fill: var(--dark);
  stroke: #d9b790;
  stroke-width: 1;
}
.process-check {
  fill: none;
  stroke: #e9916f;
  stroke-width: 1.5;
  stroke-dasharray: 40;
  animation: review-check 14s var(--ease) infinite;
}
.bench-rotor {
  animation: rotate 35s linear infinite;
  --paper: var(--dark);
}
.process-tags {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.process-tags > span {
  font-size: 0.5rem;
  padding: 6px 7px;
  border: 1px solid #7f8979;
  border-radius: 2px;
  color: #dedfcd;
  background: var(--dark);
}
.process-tags > span:last-child {
  border-color: #b18b67;
  color: #e9bb97;
}
.output-record {
  background: #e8e7d7;
  min-height: 222px;
  color: #30382d;
  width: 238px;
  max-width: 100%;
  margin: auto;
  padding: 17px 18px 0;
  box-shadow: 5px 7px 0 #080b0730;
  animation: output-land 14s var(--ease) infinite;
}
.record-head {
  display: flex;
  gap: 9px;
  align-items: center;
  font-size: 0.47rem;
  letter-spacing: 0.04em;
}
.record-check {
  border: 1px solid #788363;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.63rem;
}
.output-record h3 {
  font-size: 1.1rem;
  line-height: 1.3;
  margin-top: 16px;
  letter-spacing: -0.025em;
}
.output-record ul {
  padding: 0;
  list-style: none;
  font-size: 0.56rem;
  line-height: 2;
  margin: 14px 0;
}
.output-record li:before {
  content: "✓";
  margin-right: 7px;
  color: #5f704e;
}
.record-foot {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-top: 1px solid #b9bdab;
  font-size: 0.51rem;
}
.bench-bottom {
  border-top: 1px solid #606b5d;
  padding-top: 15px;
}
.bench-bottom > span {
  display: flex;
  gap: 8px;
  align-items: center;
}
.bench-bottom .status-led {
  background: #e9916f;
}
.replay-button {
  font-size: 0.64rem;
  padding: 10px 0;
  display: flex;
  gap: 17px;
  align-items: center;
}
.replay-button:hover {
  color: #e9916f;
}
.replay-button span {
  font-size: 1.1rem;
}
.workflow-footnote {
  font-size: 0.65rem;
  color: #c0c5b7;
  margin-top: 20px;
}
.workflow-section a:focus-visible,
.workflow-section button:focus-visible,
.workflow-section [tabindex]:focus-visible {
  outline-color: #e9916f;
}
.approach {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
}
.approach-intro {
  position: relative;
}
.approach-intro .eyebrow {
  margin-bottom: 25px;
}
.approach-intro > p:not(.eyebrow) {
  margin-top: 25px;
  max-width: 360px;
  font-size: 0.85rem;
  line-height: 1.85;
  color: var(--muted);
}
.approach-intro .handwritten {
  display: block;
  margin-top: 37px;
  transform: rotate(-5deg);
  color: #666d59;
  font-size: 1.55rem;
}
.pencil-arrow {
  width: 140px;
  height: 50px;
  position: absolute;
  bottom: -23px;
  left: 260px;
  fill: none;
  stroke: #919780;
  stroke-width: 1;
}
.approach-steps {
  list-style: none;
  margin: 0;
  padding: 0;
}
.approach-steps > li {
  display: flex;
  gap: 26px;
  border-top: 1px solid var(--line);
  padding: 30px 0;
}
.approach-steps > li:last-child {
  border-bottom: 1px solid var(--line);
}
.approach-steps > li > span {
  font-size: 0.65rem;
  padding-top: 6px;
  color: var(--orange);
}
.approach-steps h3 {
  font-size: 1.13rem;
  letter-spacing: -0.02em;
}
.approach-steps p {
  font-size: 0.8rem;
  line-height: 1.85;
  max-width: 365px;
  color: var(--muted);
  margin-top: 12px;
}
.contact-section {
  border: 1px solid #c6c4b7;
  position: relative;
  text-align: center;
  padding: 85px 30px 90px;
  overflow: hidden;
  background: radial-gradient(ellipse at center, #f9f6ed55, transparent);
  margin-bottom: 85px;
}
.contact-section .eyebrow {
  margin-bottom: 24px;
}
.contact-section h2 {
  font-size: clamp(3.2rem, 5.8vw, 5.8rem);
}
.contact-section h2 em {
  color: var(--orange);
}
.contact-section > p:not(.eyebrow) {
  font-size: 0.83rem;
  line-height: 1.85;
  margin: 25px 0;
}
.contact-note {
  position: absolute;
  right: 7%;
  top: 44%;
  text-align: left;
  transform: rotate(9deg);
  font-size: 1.5rem;
  color: #7a7d6a;
}
.contact-orbit {
  position: absolute;
  left: -92px;
  top: 88px;
  width: 320px;
  height: 320px;
  border: 1px solid #9fa18b45;
  border-radius: 50%;
  pointer-events: none;
}
.contact-orbit:before,
.contact-orbit:after,
.contact-orbit > div {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid #9fa18b40;
  border-radius: 50%;
}
.contact-orbit:after {
  inset: 40px;
  border-style: dashed;
}
.contact-orbit > div {
  inset: 0;
  animation: rotate 55s linear infinite;
}
.contact-orbit > div:after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  top: 32px;
  left: 42px;
  border: 1px solid var(--orange);
  background: var(--paper);
  border-radius: 50%;
}
.contact-orbit > span {
  font-size: 3rem;
  position: absolute;
  right: 50px;
  top: 123px;
  color: #909578;
}
.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--line);
  padding: 30px 0 100px;
}
.footer > .wordmark {
  font-size: 1.25rem;
}
.footer p {
  font-size: 0.73rem;
  color: var(--muted);
}
.footer > span {
  font-size: 0.51rem;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.experience-controls {
  position: fixed;
  bottom: 20px;
  right: 25px;
  z-index: 30;
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 5px 14px;
  border: 1px solid #a5a999;
  background: #efede2f5;
  box-shadow: 0 3px 18px #25272212;
  border-radius: 3px;
}
.experience-controls button {
  font-size: 0.61rem;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 2px;
  min-height: 36px;
}
.experience-controls button:hover {
  color: var(--orange);
}
.experience-controls svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.1;
}
.control-separator {
  height: 14px;
  width: 1px;
  background: #bfc2b5;
}
.experience-controls #motion-icon {
  font-size: 0.9rem;
  min-width: 12px;
}
.experience-controls button[aria-pressed="true"] {
  color: var(--orange);
}
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  padding: 14px;
  background: var(--ink);
  color: var(--paper);
  z-index: 100;
  transform: translateY(-150%);
}
.skip-link:focus {
  transform: none;
}
.sr-only {
  position: absolute;
  clip-path: inset(50%);
  width: 1px;
  height: 1px;
  overflow: hidden;
  white-space: nowrap;
}
dialog {
  background: var(--paper);
  color: var(--ink);
  border: 1px solid #868c77;
  padding: 42px;
  width: min(540px, calc(100% - 32px));
  max-height: 90dvh;
  overflow: auto;
}
dialog::backdrop {
  background: #20251db3;
}
dialog h2 {
  font-size: 2.6rem;
  margin: 15px 0;
}
dialog > p:not(.eyebrow) {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--muted);
}
.dialog-close {
  position: absolute;
  right: 14px;
  top: 9px;
  font-size: 1.6rem;
  padding: 6px 10px;
}
form {
  margin-top: 25px;
}
form label {
  display: block;
  font-size: 0.72rem;
  margin: 20px 0 9px;
}
input,
textarea {
  width: 100%;
  border: 1px solid #858b77;
  background: #ffffff30;
  padding: 12px;
  font-size: 0.8rem;
  color: var(--ink);
  border-radius: 0;
}
textarea {
  resize: vertical;
}
form .button {
  margin-top: 23px;
}
.form-note {
  font-size: 0.65rem;
  color: var(--muted);
  margin-top: 13px;
}
#brief-result {
  margin-top: 25px;
}
#brief-summary {
  white-space: pre-wrap;
  font-size: 0.85rem;
  line-height: 1.8;
  margin-bottom: 20px;
}
#edit-brief {
  display: block;
  margin-top: 15px;
}
.noscript {
  padding: 25px 5%;
  font-size: 0.85rem;
}
.reveal {
  opacity: 1;
  transform: none;
}
.js-motion .reveal {
  opacity: 0;
  transform: translateY(25px);
  transition:
    opacity 1.2s var(--ease),
    transform 1.2s var(--ease);
}
.js-motion .reveal.visible {
  opacity: 1;
  transform: none;
}
.craft-item:nth-child(2) {
  transition-delay: 0.12s;
}
.craft-item:nth-child(3) {
  transition-delay: 0.24s;
}
.motion-paused *,
.motion-paused *:before,
.motion-paused *:after {
  animation-play-state: paused !important;
}
.motion-paused .reveal {
  transition: none;
  opacity: 1;
  transform: none;
}
.page-hidden *,
.page-hidden *:before,
.page-hidden *:after {
  animation-play-state: paused !important;
}
.offscreen-animation *,
.offscreen-animation *:before,
.offscreen-animation *:after {
  animation-play-state: paused !important;
}
.hero {
  overflow: clip;
}
.input-sheet h3,
.output-record h3 {
  white-space: pre-line;
}
.js-motion .sketch-stroke {
  stroke-dasharray: var(--pencil-length);
  animation: pencil-draw 3.8s var(--ease) var(--pencil-delay) both;
}
.js-motion .machine-svg .rotor {
  animation: gear-appear 2.5s ease-out 0.4s both;
}
@keyframes pencil-draw {
  from {
    stroke-dashoffset: var(--pencil-length);
    opacity: 0.1;
  }
  to {
    stroke-dashoffset: 0;
    opacity: 1;
  }
}
@keyframes gear-appear {
  from {
    opacity: 0.05;
  }
  to {
    opacity: 1;
  }
}
@keyframes underline-draw {
  from {
    stroke-dashoffset: 500;
  }
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}
@keyframes align-one {
  0%,
  15%,
  100% {
    transform: translate(-46px, -5px) rotate(-17deg);
  }
  45%,
  80% {
    transform: translate(-5px, -5px) rotate(0);
  }
}
@keyframes align-two {
  0%,
  15%,
  100% {
    transform: translate(35px, 3px) rotate(13deg);
  }
  48%,
  80% {
    transform: translate(5px, 5px) rotate(0);
  }
}
@keyframes align-three {
  0%,
  15%,
  100% {
    transform: translate(0, 10px) rotate(-3deg);
  }
  52%,
  80% {
    transform: translate(0, 0) rotate(0);
  }
}
@keyframes couple-left {
  0%,
  15%,
  100% {
    transform: translateX(-8px);
  }
  45%,
  80% {
    transform: translateX(10px);
  }
}
@keyframes couple-right {
  0%,
  15%,
  100% {
    transform: translateX(43px);
  }
  48%,
  80% {
    transform: translateX(0);
  }
}
@keyframes connect-draw {
  0%,
  15% {
    stroke-dashoffset: 340;
  }
  60%,
  90% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: -340;
  }
}
@keyframes signal {
  0%,
  45%,
  100% {
    opacity: 0.2;
    transform: translateX(-9px);
  }
  65%,
  80% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes record-settle {
  0%,
  15%,
  100% {
    transform: translateY(-5px) rotate(-3deg);
  }
  50%,
  85% {
    transform: translateY(0) rotate(0);
  }
}
@keyframes stamp-in {
  0%,
  25%,
  100% {
    opacity: 0;
    transform: scale(1.15);
  }
  48%,
  85% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes input-feed {
  0%,
  100% {
    transform: translateY(0) rotate(-2deg);
  }
  20%,
  40% {
    transform: translateY(-5px) rotate(0);
  }
  65%,
  90% {
    transform: translateY(0) rotate(0);
  }
}
@keyframes review-check {
  0%,
  30% {
    stroke-dashoffset: 40;
  }
  50%,
  90% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: 40;
  }
}
@keyframes output-land {
  0%,
  40%,
  100% {
    transform: translateY(10px) rotate(2deg);
    opacity: 0.65;
  }
  62%,
  90% {
    transform: translateY(0) rotate(0);
    opacity: 1;
  }
}
@supports (animation-timeline: view()) {
  .contact-orbit {
    animation: orbit-reveal linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 70%;
  }
  @keyframes orbit-reveal {
    from {
      transform: rotate(-20deg);
    }
    to {
      transform: rotate(20deg);
    }
  }
}
@media (min-width: 1600px) {
  .hero {
    min-height: 810px;
  }
  .hero-art {
    margin-right: 0;
  }
  .machine-svg {
    width: 108%;
  }
  .hero-copy {
    padding-bottom: 75px;
  }
}
@media (max-width: 1180px) {
  .wrap {
    width: calc(100% - 72px);
  }
  .hero {
    grid-template-columns: 1fr 1.15fr;
    min-height: 670px;
  }
  .hero-art {
    margin-left: -30px;
  }
  .hero-actions {
    gap: 18px;
    flex-wrap: wrap;
  }
  .hero h1 {
    font-size: 6.7vw;
  }
  .hero-description {
    max-width: 310px;
    font-size: 0.8rem;
  }
  .hero .eyebrow {
    font-size: 0.53rem;
  }
  .hero-copy {
    padding-bottom: 45px;
  }
  .plate-top {
    left: 55px;
    font-size: 0.46rem;
  }
  .machine-caption {
    left: 50px;
    bottom: 45px;
  }
  .hero-note {
    margin-top: 14px;
  }
  .hero-bottom {
    margin-top: 10px;
  }
  .craft-grid {
    gap: 22px;
  }
  .workflow-bench {
    padding-inline: 22px;
  }
  .bench-stations {
    gap: 17px;
  }
  .input-stack {
    width: 185px;
  }
  .input-sheet {
    padding-inline: 18px;
  }
  .approach {
    gap: 65px;
  }
  .contact-note {
    right: 4%;
    font-size: 1.25rem;
  }
  .contact-orbit {
    left: -160px;
  }
  .hero-actions .text-link {
    font-size: 0.65rem;
  }
  .hero-actions .button {
    font-size: 0.68rem;
    gap: 17px;
  }
  .section-space {
    padding-block: 95px;
  }
}
@media (max-width: 900px) {
  .hero {
    min-height: 610px;
  }
  .hero-description br {
    display: none;
  }
  .hero-actions {
    gap: 8px;
  }
  .hero .eyebrow {
    letter-spacing: 0.08em;
  }
  .machine-svg {
    width: 123%;
    margin-top: -5px;
  }
  .plate-top > span:last-child {
    display: none;
  }
  .machine-caption {
    bottom: 48px;
    left: 30px;
    font-size: 0.58rem;
  }
  .hero-note {
    font-size: 1.2rem;
  }
  .hero-bottom {
    font-size: 0.45rem;
  }
  .principle-strip {
    font-size: 0.58rem;
    gap: 10px;
  }
  .craft-grid {
    gap: 18px;
  }
  .study {
    height: 230px;
  }
  .item-title h3 {
    font-size: 0.95rem;
  }
  .item-title {
    gap: 8px;
  }
  .craft-item > p {
    margin-left: 0;
    font-size: 0.75rem;
  }
  .workflow-heading > p {
    font-size: 0.75rem;
  }
  .workflow-tabs button {
    padding-inline: 10px;
    gap: 8px;
  }
  .workflow-tabs button > span {
    font-size: 0.74rem;
  }
  .bench-stations {
    gap: 16px;
  }
  .input-sheet h3 {
    font-size: 1.15rem;
  }
  .input-sheet {
    padding: 16px 13px;
    min-height: 213px;
  }
  .output-record {
    padding: 15px 12px 0;
    min-height: 213px;
  }
  .output-record h3 {
    font-size: 1rem;
  }
  .output-record ul {
    font-size: 0.48rem;
  }
  .station-label {
    font-size: 0.46rem;
  }
  .station > p {
    font-size: 0.56rem;
  }
  .process-tags {
    gap: 4px;
  }
  .process-tags > span {
    font-size: 0.45rem;
    padding: 5px;
  }
  .process-drawing {
    height: 156px;
  }
  .bench-top {
    font-size: 0.45rem;
  }
  .approach {
    gap: 40px;
  }
  .approach-intro h2 {
    font-size: 2.7rem;
  }
  .approach-intro .handwritten {
    font-size: 1.4rem;
  }
  .pencil-arrow {
    left: 150px;
    bottom: -15px;
    width: 100px;
  }
  .approach-steps > li {
    gap: 16px;
  }
  .approach-steps h3 {
    font-size: 1rem;
  }
  .contact-note {
    display: none;
  }
}
@media (max-width: 760px) {
  .wrap {
    width: calc(100% - 40px);
  }
  .header {
    height: 82px;
  }
  .header .wordmark {
    font-size: 1.23rem;
  }
  .brand-mark {
    font-size: 2.1rem;
    margin-right: 11px;
  }
  .brand-mark span {
    font-size: 1rem;
    right: -5px;
    top: -2px;
  }
  .header nav {
    gap: 0;
    font-size: 0.64rem;
  }
  .header nav > a:not(.nav-cta) {
    display: none;
  }
  .nav-cta span {
    padding-left: 10px;
  }
  .hero {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding-top: 45px;
    min-height: auto;
  }
  .hero-copy {
    padding-bottom: 10px;
  }
  .hero .eyebrow {
    font-size: 0.54rem;
    margin-bottom: 25px;
  }
  .hero h1 {
    font-size: clamp(4rem, 15vw, 6.2rem);
    line-height: 1.01;
    letter-spacing: -0.065em;
  }
  .hero-description {
    max-width: 340px;
    font-size: 0.82rem;
    margin-top: 31px;
  }
  .hero-description br {
    display: block;
  }
  .hero-actions {
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 24px;
  }
  .hero-actions .button {
    font-size: 0.69rem;
    padding: 15px 16px;
    gap: 19px;
  }
  .hero-actions .text-link {
    font-size: 0.66rem;
  }
  .hero-note {
    font-size: 1.28rem;
    margin-left: 6px;
    margin-top: 24px;
  }
  .hero-art {
    margin: 15px -5px 0;
    min-height: 360px;
    padding-top: 17px;
    padding-bottom: 48px;
    overflow: hidden;
  }
  .plate-top {
    left: 5px;
    right: 5px;
    top: 0;
    font-size: 0.43rem;
  }
  .plate-top > span:last-child {
    display: block;
  }
  .machine-svg {
    width: 115%;
    margin: 0 -7%;
    max-width: none;
    align-self: center;
  }
  .machine-caption {
    bottom: 12px;
    left: 7px;
    right: 7px;
    padding-top: 12px;
    font-size: 0.59rem;
  }
  .machine-svg .hand-label {
    font-size: 22px;
  }
  .hero-bottom {
    font-size: 0.44rem;
    gap: 18px;
    padding: 20px 0;
    letter-spacing: 0.06em;
    margin-top: 4px;
    line-height: 1.8;
  }
  .hero-bottom > span {
    max-width: 180px;
  }
  .hero-bottom a {
    font-size: 0.55rem;
    white-space: nowrap;
  }
  .hero-bottom a span {
    padding-left: 7px;
  }
  .principle-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    text-align: center;
    gap: 16px 8px;
    padding: 24px 0;
    font-size: 0.6rem;
  }
  .principle-strip > span:nth-child(even) {
    display: none;
  }
  .section-space {
    padding-block: 75px;
  }
  .section-heading .eyebrow {
    font-size: 0.54rem;
  }
  .section-heading h2 {
    font-size: 2.65rem;
  }
  .section-heading > p:last-child {
    font-size: 0.8rem;
  }
  .section-heading > p:last-child br {
    display: none;
  }
  .craft-grid {
    grid-template-columns: 1fr;
    margin-top: 35px;
    gap: 35px;
  }
  .study {
    height: 240px;
    max-width: 390px;
    margin: auto;
  }
  .item-title {
    margin-top: 22px;
    gap: 13px;
  }
  .item-title h3 {
    font-size: 1.15rem;
  }
  .craft-item > p {
    max-width: 100%;
    margin: 12px 0 0 28px;
    font-size: 0.8rem;
  }
  .study-connect svg {
    height: 198px;
  }
  .workflow-heading {
    display: block;
  }
  .workflow-heading .eyebrow {
    font-size: 0.56rem;
    margin-bottom: 20px;
  }
  .workflow-heading h2 {
    font-size: 2.6rem;
  }
  .workflow-heading > p {
    margin-top: 23px;
    font-size: 0.8rem;
  }
  .workflow-heading > p br {
    display: none;
  }
  .workflow-tabs {
    margin-top: 35px;
  }
  .workflow-tabs button {
    display: block;
    line-height: 1.55;
    padding: 13px 8px;
    font-size: 0.55rem;
  }
  .workflow-tabs button > span {
    font-size: 0.67rem;
    display: block;
    margin-top: 3px;
  }
  .workflow-bench {
    padding: 18px 16px 10px;
  }
  .bench-top {
    font-size: 0.43rem;
  }
  .bench-meta {
    display: none;
  }
  .bench-stations {
    grid-template-columns: 1fr;
    padding: 30px 0 23px;
    gap: 35px;
  }
  .bench-stations:before {
    top: 8%;
    bottom: 8%;
    left: 50%;
    right: auto;
    border-left: 1px dashed #a99a7680;
    border-top: 0;
  }
  .station-label {
    font-size: 0.56rem;
    background: var(--dark);
    position: relative;
    width: fit-content;
    margin: 0 auto 22px;
    padding: 5px 9px;
  }
  .input-stack {
    width: 205px;
  }
  .input-sheet {
    padding: 22px;
    min-height: 208px;
  }
  .input-sheet h3 {
    font-size: 1.25rem;
  }
  .input-sheet > span:first-child {
    font-size: 0.5rem;
  }
  .station > p {
    font-size: 0.66rem;
    margin: 22px auto 0;
    padding: 5px 10px;
    background: var(--dark);
    width: fit-content;
    max-width: 100%;
    position: relative;
  }
  .process-drawing {
    width: 220px;
    height: 160px;
    background: var(--dark);
  }
  .process-tags {
    margin-top: 17px;
  }
  .process-tags > span {
    font-size: 0.55rem;
    padding: 6px 8px;
  }
  .output-record {
    width: 238px;
    padding: 19px 20px 0;
    min-height: 220px;
  }
  .output-record h3 {
    font-size: 1.2rem;
  }
  .output-record ul {
    font-size: 0.59rem;
  }
  .record-head {
    font-size: 0.5rem;
  }
  .record-foot {
    font-size: 0.55rem;
  }
  .bench-bottom {
    font-size: 0.43rem;
  }
  .replay-button {
    font-size: 0.58rem;
    gap: 8px;
  }
  .workflow-footnote {
    font-size: 0.62rem;
    line-height: 1.7;
  }
  .approach {
    grid-template-columns: 1fr;
    gap: 55px;
  }
  .approach-intro h2 {
    font-size: 2.8rem;
  }
  .approach-intro .eyebrow {
    font-size: 0.56rem;
  }
  .approach-intro > p:not(.eyebrow) {
    font-size: 0.82rem;
    max-width: 100%;
  }
  .approach-intro .handwritten {
    margin-top: 24px;
  }
  .pencil-arrow {
    left: auto;
    right: 20px;
    bottom: -23px;
    transform: rotate(35deg);
  }
  .approach-steps > li {
    padding: 26px 0;
    gap: 19px;
  }
  .approach-steps h3 {
    font-size: 1.09rem;
  }
  .approach-steps p {
    font-size: 0.81rem;
  }
  .contact-section {
    padding: 60px 20px;
    margin-bottom: 50px;
  }
  .contact-section .eyebrow {
    font-size: 0.48rem;
    letter-spacing: 0.08em;
  }
  .contact-section h2 {
    font-size: 3.55rem;
  }
  .contact-section > p:not(.eyebrow) {
    font-size: 0.8rem;
  }
  .contact-orbit {
    left: -256px;
    top: 80px;
  }
  .contact-orbit > span {
    display: none;
  }
  .footer {
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 24px;
    padding-bottom: 95px;
  }
  .footer .wordmark {
    font-size: 1.22rem;
  }
  .footer p {
    font-size: 0.6rem;
  }
  .footer > span {
    width: 100%;
    font-size: 0.45rem;
  }
  .experience-controls {
    right: 12px;
    bottom: 12px;
    gap: 10px;
    padding: 4px 10px;
  }
  .experience-controls button {
    font-size: 0.59rem;
  }
  .eyebrow {
    letter-spacing: 0.11em;
  }
  dialog {
    padding: 30px 23px;
  }
  dialog h2 {
    font-size: 2.2rem;
  }
  .craft-item:nth-child(n) {
    transition-delay: 0s;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal,
  .js-motion .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .motion-word svg,
  .slip,
  .connector-path,
  .coupler,
  .signal-dot,
  .finished-record,
  .stamp,
  .input-sheet,
  .process-check,
  .bench-rotor,
  .output-record,
  .contact-orbit,
  .contact-orbit > div {
    animation: none !important;
  }
  .slip-one {
    transform: translate(-5px, -5px);
  }
  .slip-two {
    transform: translate(5px, 5px);
  }
  .slip-three {
    transform: none;
  }
  .output-record,
  .stamp {
    opacity: 1;
    transform: none;
  }
  .coupler-left {
    transform: translateX(10px);
  }
  .coupler-right {
    transform: none;
  }
  .button {
    transition: none;
  }
  .primary:hover {
    transform: none;
  }
}

body:not(.js-motion) *,
body:not(.js-motion) *:before,
body:not(.js-motion) *:after {
  animation: none !important;
}
