:root {
  --paper: #f3f0e8;
  --paper-deep: #ded9cd;
  --paper-muted: #e9e5db;
  --ink: #17150f;
  --ink-soft: #403d35;
  --muted: #635f56;
  --line: rgba(23, 21, 15, 0.23);
  --line-dark: rgba(243, 240, 232, 0.19);
  --orange: #eb542e;
  --orange-dark: #bf381d;
  --acid: #d9ff43;
  --mint: #6ee7bd;
  --red: #ff6b5f;
  --page-pad: clamp(1.25rem, 4vw, 4.5rem);
  --section-pad: clamp(5rem, 10vw, 10rem);
  --max-width: 100rem;
  --header-height: 6rem;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-snap: cubic-bezier(0.2, 0.8, 0.2, 1);
  --z-grain: 2;
  --z-header: 10;
  --z-progress: 20;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 1rem);
  background: var(--ink);
}

body {
  margin: 0;
  min-width: 20rem;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Public Sans", ui-sans-serif, system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::selection {
  background: var(--acid);
  color: var(--ink);
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

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

.skip-link {
  position: fixed;
  z-index: 30;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--acid);
  color: var(--ink);
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.page-grain {
  position: fixed;
  z-index: var(--z-grain);
  inset: 0;
  pointer-events: none;
  opacity: 0.055;
  background-image:
    radial-gradient(circle at 20% 30%, #17150f 0 0.7px, transparent 0.85px),
    radial-gradient(circle at 80% 60%, #17150f 0 0.55px, transparent 0.75px);
  background-position: 0 0, 5px 7px;
  background-size: 11px 13px, 13px 11px;
  mix-blend-mode: multiply;
}

.scroll-progress {
  position: fixed;
  z-index: var(--z-progress);
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left center;
}

.site-header {
  position: sticky;
  z-index: var(--z-header);
  top: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: var(--header-height);
  padding: 1rem var(--page-pad);
  border-bottom: 1px solid transparent;
  background: var(--paper);
  transition:
    min-height 220ms var(--ease-snap),
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.site-header.is-scrolled {
  min-height: 4.75rem;
  border-color: var(--line);
  box-shadow: 0 10px 30px rgba(23, 21, 15, 0.06);
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  width: max-content;
}

.brand-mark {
  width: 2.9rem;
  height: auto;
  overflow: visible;
}

.brand-mark path,
.site-footer svg path,
.principle-index svg path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-width: 5;
}

.brand-mark .brand-fulcrum,
.site-footer svg path:last-child,
.principle-index svg path:last-child {
  fill: var(--acid);
  stroke: none;
}

.brand-mark .brand-beam {
  stroke: var(--orange);
}

.brand-mark .brand-load {
  fill: var(--ink);
  stroke: none;
}

.brand-type {
  display: grid;
  line-height: 0.9;
}

.brand-type strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.55rem;
  letter-spacing: 0.055em;
}

.brand-type small {
  margin-top: 0.32rem;
  color: var(--muted);
  font-size: 0.57rem;
  font-weight: 700;
  letter-spacing: 0.31em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.4rem, 3vw, 3.25rem);
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 600;
}

.site-nav a {
  position: relative;
  padding: 0.55rem 0;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0.25rem;
  left: 0;
  height: 2px;
  background: var(--orange);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--ease-snap);
}

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

.header-contact {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.72rem 0.95rem;
  border-bottom: 2px solid var(--ink);
  font-size: 0.82rem;
  font-weight: 700;
  transition:
    color 180ms ease,
    border-color 180ms ease;
}

.header-contact svg,
.button svg,
.project-link svg {
  width: 1.1rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-width: 1.8;
  transition: transform 220ms var(--ease-out);
}

.header-contact:hover {
  border-color: var(--orange);
  color: var(--orange-dark);
}

.header-contact:hover svg,
.button:hover svg {
  transform: translateX(0.22rem);
}

main {
  overflow: clip;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.87fr) minmax(31rem, 1.13fr);
  gap: clamp(3rem, 6vw, 7.5rem);
  align-items: center;
  max-width: var(--max-width);
  min-height: calc(100svh - var(--header-height));
  margin: 0 auto;
  padding: clamp(4.5rem, 8vw, 8rem) var(--page-pad) clamp(5rem, 10vw, 9rem);
}

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

.hero-status {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: clamp(2rem, 4vw, 4rem);
  color: var(--ink-soft);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.hero-status span {
  position: relative;
  width: 0.58rem;
  height: 0.58rem;
  background: var(--orange);
  border-radius: 50%;
}

.hero-status span::after {
  position: absolute;
  inset: -0.3rem;
  border: 1px solid var(--orange);
  border-radius: inherit;
  content: "";
  opacity: 0.45;
}

.hero h1,
.section-heading h2,
.principle h2,
.about h2,
.contact h2,
.project h3,
.not-found h1 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.hero h1 {
  max-width: 7ch;
  font-size: clamp(5rem, 8vw, 7.2rem);
  line-height: 0.78;
  text-transform: uppercase;
}

.hero h1 em {
  display: block;
  color: var(--orange);
  font-style: normal;
}

.hero-intro {
  max-width: 34rem;
  margin: clamp(2rem, 4vw, 3.25rem) 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.5vw, 1.35rem);
  line-height: 1.48;
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.2rem 1.8rem;
  margin-top: 2.4rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 3.25rem;
  padding: 0.85rem 1.05rem 0.85rem 1.25rem;
  font-size: 0.84rem;
  font-weight: 700;
  transition:
    transform 180ms var(--ease-snap),
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.button-primary {
  background: var(--ink);
  color: var(--paper);
  box-shadow: 6px 6px 0 var(--orange);
}

.button-primary:hover {
  background: var(--orange);
  box-shadow: 3px 3px 0 var(--ink);
  color: var(--ink);
  transform: translate(3px, 3px);
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 2.75rem;
  border-bottom: 1px solid currentColor;
  color: var(--ink-soft);
  font-size: 0.84rem;
  font-weight: 650;
}

.text-link span {
  color: var(--orange);
  transition: transform 220ms var(--ease-out);
}

.text-link:hover span {
  transform: translateY(0.24rem);
}

.name-note {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 1rem;
  max-width: 35rem;
  margin-top: clamp(3.5rem, 6vw, 6.5rem);
  padding-top: 1.15rem;
  border-top: 1px solid var(--line);
}

.name-note > span {
  color: var(--orange-dark);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.name-note p {
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.55;
}

.name-note i {
  color: var(--ink-soft);
}

.lever-instrument {
  --beam-angle: -6deg;
  --disc-y: -0.5rem;
  position: relative;
  border: 2px solid var(--ink);
  background: var(--paper-deep);
  box-shadow: 14px 14px 0 var(--orange);
  cursor: crosshair;
  isolation: isolate;
}

.lever-instrument::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.38), transparent 35%),
    radial-gradient(circle at 75% 30%, rgba(217,255,67,0.2), transparent 32%);
  content: "";
}

.instrument-topline,
.instrument-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 3.1rem;
  padding: 0.8rem 1rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.instrument-topline {
  border-bottom: 1px solid var(--line);
}

.instrument-topline span:last-child {
  color: var(--muted);
}

.lever-field {
  position: relative;
  min-height: clamp(25rem, 44vw, 34rem);
  overflow: hidden;
}

.field-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 3rem 3rem;
  opacity: 0.32;
  -webkit-mask-image: linear-gradient(to bottom, #000, transparent 92%);
  mask-image: linear-gradient(to bottom, #000, transparent 92%);
}

.input-stack {
  position: absolute;
  top: 24%;
  left: 7%;
  display: grid;
  gap: 0.28rem;
  color: var(--ink-soft);
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(0.74rem, 1.2vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.input-stack span {
  display: block;
  width: max-content;
  padding: 0.22rem 0.45rem;
  border: 1px solid var(--ink);
  background: var(--paper);
  box-shadow: 3px 3px 0 rgba(23,21,15,0.14);
}

.input-stack span:nth-child(2) { margin-left: 0.7rem; }
.input-stack span:nth-child(3) { margin-left: 1.4rem; }
.input-stack span:nth-child(4) { margin-left: 2.1rem; }

.lever-beam {
  position: absolute;
  z-index: 2;
  top: 49%;
  left: 10%;
  width: 79%;
  height: 1.3rem;
  border: 2px solid var(--ink);
  background: var(--orange);
  box-shadow: 0 5px 0 rgba(23,21,15,0.13);
  transform: rotate(var(--beam-angle));
  transform-origin: 58% 50%;
  transition: transform 420ms var(--ease-out);
}

.lever-instrument:hover .lever-beam {
  transition-duration: 100ms;
}

.beam-label {
  position: absolute;
  top: -1.75rem;
  font-size: 0.54rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.beam-label-input { left: 0; }
.beam-label-output { right: 0; }

.beam-notch {
  position: absolute;
  top: -0.45rem;
  width: 2px;
  height: 2rem;
  background: var(--ink);
}

.beam-notch-one { left: 35%; }
.beam-notch-two { left: 55%; }
.beam-notch-three { left: 75%; }

.fulcrum {
  position: absolute;
  z-index: 3;
  top: 51.5%;
  left: 52.4%;
  width: 22%;
  height: 36%;
  transform: translateX(-50%);
}

.fulcrum-shape {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0;
  margin: auto;
  border-right: clamp(2.8rem, 5vw, 4.8rem) solid transparent;
  border-bottom: clamp(6.5rem, 11vw, 10rem) solid var(--acid);
  border-left: clamp(2.8rem, 5vw, 4.8rem) solid transparent;
  filter: drop-shadow(5px 6px 0 rgba(23,21,15,0.16));
}

.fulcrum-dot {
  position: absolute;
  z-index: 2;
  top: -0.55rem;
  left: 50%;
  width: 1.05rem;
  height: 1.05rem;
  border: 2px solid var(--ink);
  background: var(--paper);
  border-radius: 50%;
  transform: translateX(-50%);
}

.fulcrum small {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 9%;
  left: 0;
  color: var(--ink);
  font-size: 0.53rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-align: center;
}

.outcome-disc {
  position: absolute;
  z-index: 4;
  top: 28%;
  right: 4%;
  display: grid;
  place-items: center;
  width: clamp(5.5rem, 9vw, 7.5rem);
  aspect-ratio: 1;
  border: 2px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  border-radius: 50%;
  box-shadow: 6px 6px 0 var(--acid);
  transform: translateY(var(--disc-y));
  transition: transform 420ms var(--ease-out);
}

.lever-instrument:hover .outcome-disc {
  transition-duration: 100ms;
}

.outcome-disc span {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(0.75rem, 1.3vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 0.95;
  text-align: center;
}

.axis-label {
  position: absolute;
  bottom: 1.1rem;
  color: var(--muted);
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  writing-mode: vertical-rl;
}

.axis-left { left: 1rem; transform: rotate(180deg); }
.axis-right { right: 1rem; }

.instrument-footer {
  gap: 0.8rem;
  border-top: 1px solid var(--line);
}

.instrument-rule {
  flex: 1;
  height: 1px;
  background: var(--line);
}

.section-light,
.section-dark,
.work,
.contact {
  padding: var(--section-pad) var(--page-pad);
}

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

.section-light {
  background: var(--paper);
}

.principle {
  display: grid;
  grid-template-columns: minmax(10rem, 0.45fr) minmax(0, 1.55fr);
  gap: clamp(3rem, 8vw, 9rem);
}

.principle-index {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 5rem;
  color: rgba(243,240,232,0.74);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.principle-index svg {
  width: 6rem;
  color: var(--orange);
}

.principle-copy {
  max-width: 77rem;
}

.principle h2 {
  font-size: clamp(3rem, 6.2vw, 6.8rem);
  line-height: 0.92;
}

.principle h2 em {
  color: var(--acid);
  font-style: normal;
}

.principle-copy > p {
  max-width: 45rem;
  margin: clamp(2.5rem, 5vw, 5rem) 0 0 auto;
  color: rgba(243,240,232,0.74);
  font-size: clamp(1rem, 1.5vw, 1.3rem);
  line-height: 1.62;
  text-wrap: pretty;
}

.capabilities,
.about {
  max-width: none;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(9rem, 0.45fr) minmax(0, 1.55fr);
  gap: clamp(2rem, 8vw, 9rem);
  align-items: start;
  max-width: var(--max-width);
  margin: 0 auto clamp(4rem, 7vw, 7rem);
}

.section-heading > p,
.about-label,
.contact-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-heading h2 {
  max-width: 16ch;
  font-size: clamp(3rem, 5.5vw, 6rem);
  line-height: 0.92;
}

.capability-list {
  max-width: var(--max-width);
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
}

.capability-row {
  display: grid;
  grid-template-columns: minmax(16rem, 1.05fr) minmax(18rem, 1.45fr) minmax(9rem, 0.6fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
  min-height: 9.5rem;
  padding: 1.8rem 0;
  border-top: 1px solid var(--line);
  transition:
    padding 250ms var(--ease-out),
    background 250ms ease;
}

.capability-row:hover {
  padding-right: 1.2rem;
  padding-left: 1.2rem;
  background: var(--paper-muted);
}

.capability-name {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.capability-symbol {
  color: var(--orange);
  font-size: 1.4rem;
}

.capability-row h3 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  line-height: 1;
}

.capability-row > p {
  max-width: 42rem;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.65;
}

.capability-output {
  justify-self: end;
  color: var(--orange-dark);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: right;
  text-transform: uppercase;
}

.work {
  background: var(--paper-deep);
}

.work-heading {
  margin-bottom: clamp(4rem, 8vw, 8rem);
}

.project {
  display: grid;
  grid-template-columns: minmax(18rem, 0.74fr) minmax(0, 1.26fr);
  gap: clamp(3rem, 7vw, 8rem);
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 8rem) 0;
  border-top: 2px solid var(--ink);
}

.project:last-child {
  padding-bottom: 0;
}

.project-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 2rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project h3 {
  font-size: clamp(4rem, 7.5vw, 7.4rem);
  line-height: 0.79;
  text-transform: uppercase;
}

.project-lead {
  margin: 2.1rem 0 1rem;
  color: var(--ink);
  font-size: clamp(1.12rem, 1.6vw, 1.4rem);
  font-weight: 600;
  line-height: 1.38;
}

.project-copy > p:not(.project-lead) {
  max-width: 38rem;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.67;
}

.project-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 2rem;
  padding-bottom: 0.32rem;
  border-bottom: 2px solid var(--ink);
  font-size: 0.82rem;
  font-weight: 700;
}

.project-link:hover svg {
  transform: translate(0.18rem, -0.18rem);
}

.project-link-muted {
  border-color: var(--line);
  color: var(--muted);
}

.project-visual {
  min-width: 0;
}

.tilt-window {
  position: relative;
  overflow: hidden;
  border: 2px solid var(--ink);
  background: #03120c;
  box-shadow: 13px 13px 0 var(--ink);
  transition:
    transform 260ms var(--ease-out),
    box-shadow 260ms var(--ease-out);
}

.tilt-window:hover {
  box-shadow: 7px 7px 0 var(--orange);
  transform: translate(6px, 6px);
}

.window-bar {
  display: flex;
  align-items: center;
  gap: 0.38rem;
  height: 2.4rem;
  padding: 0 0.8rem;
  border-bottom: 1px solid rgba(243,240,232,0.18);
  color: #92a199;
  background: #07130e;
}

.window-bar span {
  width: 0.46rem;
  height: 0.46rem;
  background: #294335;
  border-radius: 50%;
}

.window-bar span:first-child { background: #d9ff43; }
.window-bar span:nth-child(2) { background: #69e7bd; }

.window-bar small {
  margin-left: auto;
  font-size: 0.55rem;
  letter-spacing: 0.04em;
}

.tilt-window img {
  width: 100%;
  aspect-ratio: 1.44 / 1;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.92) contrast(1.03);
}

.visual-stamp {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 0.62rem 0.8rem;
  background: var(--acid);
  color: var(--ink);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.project-market {
  grid-template-columns: minmax(18rem, 0.72fr) minmax(0, 1.28fr);
}

.depth-board {
  border: 2px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  box-shadow: 13px 13px 0 var(--orange);
}

.depth-head,
.depth-notes {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1rem;
  color: rgba(243,240,232,0.65);
  font-size: 0.57rem;
  font-weight: 700;
  letter-spacing: 0.09em;
}

.depth-head {
  border-bottom: 1px solid var(--line-dark);
}

.depth-chart {
  position: relative;
  display: grid;
  grid-template-columns: 4.5rem 1fr;
  grid-template-rows: 1fr auto 1fr;
  min-height: clamp(26rem, 43vw, 35rem);
  overflow: hidden;
  background-image:
    linear-gradient(rgba(243,240,232,0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(243,240,232,0.055) 1px, transparent 1px);
  background-size: 3rem 3rem;
}

.price-axis {
  grid-row: 1 / 4;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 0.65rem;
  border-right: 1px solid var(--line-dark);
  color: rgba(243,240,232,0.5);
  font-size: 0.48rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  writing-mode: vertical-rl;
}

.price-axis span:nth-child(2) {
  color: var(--acid);
}

.depth-bars {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(0.25rem, 1vw, 0.75rem);
  align-items: end;
  padding: 1.4rem clamp(1rem, 3vw, 2.5rem) 0;
}

.depth-bars i {
  display: block;
  height: var(--size);
  min-height: 1.5rem;
  border: 1px solid currentColor;
  background: currentColor;
  opacity: 0.76;
  transform-origin: bottom;
  transition: opacity 180ms ease, transform 260ms var(--ease-out);
}

.depth-board:hover .depth-bars i {
  opacity: 0.94;
  transform: scaleY(1.04);
}

.ask-bars {
  color: var(--red);
}

.bid-bars {
  align-items: start;
  padding-top: 0;
  padding-bottom: 1.4rem;
  color: var(--mint);
}

.bid-bars i {
  transform-origin: top;
}

.depth-mid {
  display: flex;
  align-items: center;
  height: 2.8rem;
  border-top: 1px solid var(--acid);
  border-bottom: 1px solid var(--acid);
  background: rgba(217,255,67,0.08);
}

.depth-mid span {
  margin-left: 1.1rem;
  color: var(--acid);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.fill-line {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 25%;
  left: 4.5rem;
  border-top: 2px dashed var(--orange);
}

.fill-line span {
  position: absolute;
  top: -0.78rem;
  right: 1rem;
  padding: 0.24rem 0.4rem;
  background: var(--orange);
  color: var(--ink);
  font-size: 0.51rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.depth-notes {
  border-top: 1px solid var(--line-dark);
  color: var(--acid);
}

.approach {
  display: grid;
  grid-template-columns: minmax(20rem, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(4rem, 9vw, 10rem);
}

.approach-heading {
  display: block;
  margin: 0;
}

.approach-heading > p {
  margin-bottom: 2.5rem;
  color: rgba(243,240,232,0.55);
}

.approach-heading h2 {
  max-width: 10ch;
  color: var(--paper);
  font-size: clamp(3.4rem, 5.2vw, 5.8rem);
}

.approach-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  border-bottom: 1px solid var(--line-dark);
}

.approach-steps li {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: clamp(1.2rem, 3vw, 2.5rem);
  padding: 2rem 0;
  border-top: 1px solid var(--line-dark);
}

.approach-steps li > span {
  color: var(--orange);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
}

.approach-steps h3 {
  margin: 0 0 0.6rem;
  color: var(--paper);
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.7rem, 2.5vw, 2.45rem);
  line-height: 1.05;
}

.approach-steps p {
  max-width: 42rem;
  margin: 0;
  color: rgba(243,240,232,0.67);
  font-size: 0.9rem;
  line-height: 1.65;
}

.about {
  display: grid;
  grid-template-columns: minmax(15rem, 0.42fr) minmax(0, 1.58fr);
  gap: clamp(3rem, 9vw, 10rem);
  align-items: center;
}

.about-mark {
  position: relative;
  min-height: 25rem;
  overflow: hidden;
  border: 2px solid var(--ink);
  background: var(--orange);
}

.about-mark::after {
  position: absolute;
  right: -20%;
  bottom: -42%;
  width: 100%;
  aspect-ratio: 1;
  border: 2px solid var(--ink);
  border-radius: 50%;
  content: "";
}

.about-beam {
  position: absolute;
  z-index: 2;
  top: 34%;
  left: -8%;
  width: 116%;
  height: 1.8rem;
  border: 2px solid var(--ink);
  background: var(--paper);
  transform: rotate(-9deg);
}

.about-fulcrum {
  position: absolute;
  z-index: 1;
  bottom: 11%;
  left: 48%;
  width: 0;
  height: 0;
  border-right: 5rem solid transparent;
  border-bottom: 10.5rem solid var(--acid);
  border-left: 5rem solid transparent;
  transform: translateX(-50%);
}

.about-mark > span {
  position: absolute;
  z-index: 3;
  right: 1rem;
  bottom: -1.25rem;
  color: var(--ink);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 11rem;
  font-weight: 700;
  line-height: 1;
}

.about-label {
  margin-bottom: 2.2rem;
}

.about h2 {
  max-width: 14ch;
  font-size: clamp(3.2rem, 5.4vw, 6rem);
  line-height: 0.92;
}

.about-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.5rem, 4vw, 4rem);
  max-width: 60rem;
  margin-top: 3rem;
}

.about-columns p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.7;
}

.about-columns strong {
  color: var(--ink);
}

.relationship {
  display: grid;
  grid-template-columns: auto minmax(3rem, 1fr) auto;
  gap: 1rem;
  align-items: center;
  max-width: 48rem;
  margin-top: 3.3rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.09em;
}

.relationship span:first-child {
  color: var(--orange-dark);
}

.relationship svg {
  width: 100%;
  height: 1.35rem;
}

.relationship path {
  stroke: var(--line);
  stroke-width: 1;
}

.relationship circle {
  fill: var(--acid);
  stroke: var(--ink);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(21rem, 0.65fr);
  gap: clamp(3rem, 8vw, 9rem);
  align-items: end;
  background: var(--orange);
  color: var(--ink);
}

.contact-copy > p {
  margin-bottom: 2rem;
  color: var(--ink);
}

.contact h2 {
  font-size: clamp(5rem, 10vw, 10rem);
  line-height: 0.75;
  text-transform: uppercase;
}

.contact-action {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem 1rem;
  align-items: center;
  min-height: 11rem;
  padding: 1.8rem;
  border: 2px solid var(--ink);
  background: var(--paper);
  box-shadow: 10px 10px 0 var(--ink);
  transition:
    box-shadow 230ms var(--ease-out),
    transform 230ms var(--ease-out);
}

.contact-action:hover {
  box-shadow: 4px 4px 0 var(--ink);
  transform: translate(6px, 6px);
}

.contact-action span {
  align-self: end;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2rem, 3vw, 3.1rem);
  font-weight: 700;
  line-height: 1;
}

.contact-action small {
  grid-row: 2;
  color: var(--muted);
  font-size: 0.72rem;
}

.contact-action svg {
  grid-row: 1 / 3;
  grid-column: 2;
  width: 3.7rem;
  fill: none;
  stroke: var(--ink);
  stroke-linecap: square;
  stroke-width: 2.3;
  transition: transform 230ms var(--ease-out);
}

.contact-action:hover svg {
  transform: translateX(0.45rem);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 1.4rem 3rem;
  align-items: center;
  padding: 2.4rem var(--page-pad);
  background: var(--ink);
  color: rgba(243,240,232,0.66);
  font-size: 0.66rem;
  letter-spacing: 0.04em;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--paper);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.07em;
}

.footer-brand svg {
  width: 2.2rem;
  color: var(--orange);
}

.site-footer p {
  margin: 0;
}

.site-footer .disclaimer {
  grid-column: 1 / -1;
  padding-top: 1.15rem;
  border-top: 1px solid var(--line-dark);
  color: rgba(243,240,232,0.55);
  text-align: right;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(2.2rem);
  transition:
    opacity 760ms var(--ease-out),
    transform 760ms var(--ease-out);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero [data-reveal]:nth-child(2) { transition-delay: 80ms; }
.hero [data-reveal]:nth-child(3) { transition-delay: 150ms; }
.hero [data-reveal]:nth-child(4) { transition-delay: 220ms; }
.hero [data-reveal]:nth-child(5) { transition-delay: 290ms; }
.hero > [data-reveal] { transition-delay: 170ms; }

.not-found {
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding: 2rem;
  background: var(--ink);
  color: var(--paper);
}

.not-found main {
  width: min(100%, 58rem);
}

.brand-inverse .brand-load {
  fill: var(--paper);
}

.not-found p {
  margin: 3rem 0 1rem;
  color: var(--orange);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.not-found h1 {
  max-width: 9ch;
  margin-bottom: 2.5rem;
  font-size: clamp(4rem, 10vw, 8rem);
  line-height: 0.85;
  text-transform: uppercase;
}

.lost-lever {
  position: relative;
  height: 12rem;
  margin-top: 4rem;
  border: 1px solid var(--line-dark);
}

.lost-lever span {
  position: absolute;
  top: 37%;
  left: 9%;
  width: 78%;
  height: 1.1rem;
  background: var(--orange);
  transform: rotate(12deg);
}

.lost-lever i {
  position: absolute;
  bottom: 0;
  left: 45%;
  width: 0;
  height: 0;
  border-right: 2.8rem solid transparent;
  border-bottom: 5.5rem solid var(--acid);
  border-left: 2.8rem solid transparent;
}

@media (max-width: 72rem) {
  :root {
    --header-height: 5.25rem;
  }

  .hero {
    grid-template-columns: minmax(0, 0.85fr) minmax(27rem, 1.15fr);
    gap: 3rem;
  }

  .hero h1 {
    font-size: clamp(4.7rem, 8.5vw, 6.4rem);
  }

  .capability-row {
    grid-template-columns: minmax(14rem, 0.9fr) minmax(18rem, 1.3fr);
  }

  .capability-output {
    grid-column: 2;
    justify-self: start;
    text-align: left;
  }

  .project {
    grid-template-columns: minmax(16rem, 0.67fr) minmax(0, 1.33fr);
    gap: 3.5rem;
  }

  .about {
    grid-template-columns: minmax(13rem, 0.38fr) minmax(0, 1.62fr);
    gap: 4rem;
  }

  .contact {
    grid-template-columns: minmax(0, 1.15fr) minmax(20rem, 0.85fr);
  }

  .site-footer {
    grid-template-columns: 1fr auto;
  }

  .site-footer > p:nth-child(2) {
    display: none;
  }
}

@media (max-width: 54rem) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    display: none;
  }

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

  .hero-copy {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(15rem, 0.55fr);
    gap: 0 2.5rem;
  }

  .hero-status,
  .hero h1,
  .hero-intro,
  .hero-actions {
    grid-column: 1;
  }

  .name-note {
    grid-row: 2 / 6;
    grid-column: 2;
    align-self: end;
    display: block;
    margin: 0 0 0.5rem;
  }

  .name-note > span {
    display: block;
    margin-bottom: 0.8rem;
  }

  .lever-field {
    min-height: 31rem;
  }

  .principle,
  .section-heading,
  .approach,
  .about,
  .contact {
    grid-template-columns: 1fr;
  }

  .principle-index {
    flex-direction: row;
    align-items: center;
    gap: 2rem;
  }

  .principle-index svg {
    width: 4rem;
  }

  .principle-copy > p {
    margin-left: 0;
  }

  .section-heading {
    gap: 1.5rem;
  }

  .capability-row {
    grid-template-columns: 1fr 1.4fr;
  }

  .project,
  .project-market {
    grid-template-columns: 1fr;
  }

  .project-copy {
    max-width: 42rem;
  }

  .project-visual {
    grid-row: 2;
  }

  .approach-heading h2 {
    max-width: 14ch;
  }

  .about-mark {
    min-height: 18rem;
  }

  .about-copy {
    max-width: 65rem;
  }

  .contact {
    align-items: start;
  }

  .contact-action {
    max-width: 35rem;
  }
}

@media (max-width: 38rem) {
  :root {
    --section-pad: 5.5rem;
  }

  .site-header {
    min-height: 4.75rem;
    padding-top: 0.7rem;
    padding-bottom: 0.7rem;
  }

  .brand-mark {
    width: 2.45rem;
  }

  .brand-type strong {
    font-size: 1.3rem;
  }

  .header-contact {
    padding: 0.6rem 0;
    font-size: 0.75rem;
  }

  .header-contact svg {
    display: none;
  }

  .hero {
    gap: 3.5rem;
    padding-top: 3.5rem;
  }

  .hero-copy {
    display: block;
  }

  .hero-status {
    margin-bottom: 2.3rem;
    font-size: 0.68rem;
  }

  .hero h1 {
    font-size: clamp(4.35rem, 21vw, 6.2rem);
  }

  .hero-intro {
    font-size: 1.03rem;
  }

  .name-note {
    display: grid;
    margin-top: 3.8rem;
  }

  .lever-instrument {
    box-shadow: 8px 8px 0 var(--orange);
  }

  .instrument-topline span:last-child {
    display: none;
  }

  .lever-field {
    min-height: 25rem;
  }

  .field-grid {
    background-size: 2.1rem 2.1rem;
  }

  .input-stack {
    top: 16%;
  }

  .lever-beam {
    top: 48%;
    left: 7%;
    width: 84%;
    height: 1rem;
  }

  .fulcrum {
    top: 49%;
    width: 30%;
    height: 40%;
  }

  .outcome-disc {
    top: 27%;
    right: 3%;
    width: 5rem;
  }

  .principle,
  .section-light,
  .section-dark,
  .work,
  .contact {
    padding-right: var(--page-pad);
    padding-left: var(--page-pad);
  }

  .principle h2,
  .section-heading h2,
  .about h2 {
    font-size: clamp(3.1rem, 15vw, 4.6rem);
  }

  .capability-row {
    grid-template-columns: 1fr;
    gap: 1rem;
    min-height: 0;
    padding: 2rem 0;
  }

  .capability-row:hover {
    padding-right: 0;
    padding-left: 0;
    background: transparent;
  }

  .capability-output {
    grid-column: 1;
  }

  .project {
    padding: 4.8rem 0;
  }

  .project h3 {
    font-size: clamp(4.1rem, 20vw, 6rem);
  }

  .tilt-window,
  .depth-board {
    box-shadow: 7px 7px 0 var(--ink);
  }

  .tilt-window img {
    aspect-ratio: 1 / 0.9;
  }

  .depth-head span:last-child,
  .depth-notes span:nth-child(2) {
    display: none;
  }

  .depth-chart {
    grid-template-columns: 3rem 1fr;
    min-height: 25rem;
  }

  .fill-line {
    left: 3rem;
  }

  .depth-notes {
    font-size: 0.5rem;
  }

  .approach {
    gap: 4rem;
  }

  .approach-steps li {
    grid-template-columns: 2.3rem 1fr;
  }

  .about {
    gap: 3.5rem;
  }

  .about-mark {
    min-height: 15rem;
  }

  .about-fulcrum {
    border-right-width: 3.5rem;
    border-bottom-width: 7.5rem;
    border-left-width: 3.5rem;
  }

  .about-mark > span {
    font-size: 8rem;
  }

  .about-columns {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .relationship {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .relationship svg {
    display: none;
  }

  .contact h2 {
    font-size: clamp(4.9rem, 23vw, 7rem);
  }

  .contact-action {
    min-height: 9rem;
    padding: 1.25rem;
    box-shadow: 7px 7px 0 var(--ink);
  }

  .contact-action svg {
    width: 2.8rem;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .site-footer .disclaimer {
    text-align: left;
  }
}

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

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

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
