:root {
  --bg: #050607;
  --panel: #090a0c;
  --panel-soft: #0d0f12;
  --ink: #f2f2ee;
  --muted: #a6a8ad;
  --faint: #666a72;
  --line: rgba(255, 255, 255, 0.12);
  --line-soft: rgba(255, 255, 255, 0.07);
  --blue: #315cff;
  --cyan: #61d7ff;
  --amber: #ffbb56;
  --green: #7dffb2;
  --max: 1540px;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 7.5rem;
  background: var(--bg);
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    linear-gradient(var(--line-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-soft) 1px, transparent 1px),
    var(--bg);
  background-size: 80px 80px;
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 18rem),
    linear-gradient(90deg, rgba(49, 92, 255, 0.08), transparent 34rem);
}

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

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

.field-canvas {
  position: fixed;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  opacity: 0.45;
  pointer-events: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  min-height: 4.8rem;
  padding: 0 3.5rem;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 6, 7, 0.84);
  backdrop-filter: blur(16px);
}

.brand {
  justify-self: start;
  font-size: 1.3rem;
  font-weight: 900;
  text-transform: uppercase;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.brand-mark::before {
  display: inline-block;
  width: 0.62rem;
  height: 0.62rem;
  content: "";
  border: 2px solid var(--blue);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
}

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

.site-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  content: "";
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.entity {
  justify-self: end;
  margin: 0;
  color: var(--muted);
  font-family: "Courier New", Courier, monospace;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.section-panel {
  width: min(100%, var(--max));
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 15rem;
  gap: 1.25rem;
  min-height: 78svh;
  padding: 1.5rem 3.5rem 3.5rem;
  overflow: hidden;
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  max-width: 70rem;
}

.section-kicker {
  margin: 0 0 1rem;
  color: var(--muted);
  font-family: "Courier New", Courier, monospace;
  font-size: 0.88rem;
  text-transform: uppercase;
}

.hero-title {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 0;
  margin: 0;
  font-size: 11rem;
  line-height: 0.82;
  text-transform: uppercase;
}

.hero-title span {
  display: block;
  font-weight: 950;
}

.hero-lede {
  max-width: 30rem;
  margin: 2rem 0 0;
  color: var(--ink);
  font-size: 1.45rem;
  line-height: 1.42;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-height: 3rem;
  padding: 0.85rem 1.05rem;
  border: 1px solid var(--line);
  border-radius: 4px;
  font-size: 0.92rem;
  font-weight: 800;
  text-transform: uppercase;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.34);
}

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

.button-primary span:last-child {
  color: var(--blue);
}

.button-ghost {
  background: rgba(255, 255, 255, 0.03);
  color: var(--ink);
}

.hero-visual {
  position: absolute;
  right: 20rem;
  bottom: 5rem;
  z-index: 4;
  width: 28rem;
  max-width: calc(100% - 7rem);
  border: 1px solid var(--line);
  background: rgba(5, 6, 7, 0.9);
  box-shadow: 0 1.4rem 5rem rgba(0, 0, 0, 0.42);
}

.hero-visual-label,
.media-caption {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0.75rem;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  font-family: "Courier New", Courier, monospace;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.forge-branches {
  position: relative;
  min-height: 23rem;
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    #080a0d;
  background-size: 34px 34px;
}

.forge-branches::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 50% 50%, rgba(49, 92, 255, 0.24), transparent 7.5rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 55%);
}

.forge-branches::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(97, 215, 255, 0.16), transparent);
  transform: translateX(-80%);
  animation: scan-sweep 6s linear infinite;
}

.forge-center,
.forge-branch,
.forge-branch-line {
  position: absolute;
  z-index: 2;
}

.forge-center {
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 9.25rem;
  min-height: 6.35rem;
  padding: 0.95rem;
  border: 1px solid rgba(242, 242, 238, 0.75);
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(49, 92, 255, 0.24), rgba(242, 242, 238, 0.08)),
    rgba(5, 6, 7, 0.96);
  font-family: "Courier New", Courier, monospace;
  text-align: center;
  text-transform: uppercase;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 0.7rem rgba(5, 6, 7, 0.54);
}

.forge-center::before,
.forge-center::after {
  position: absolute;
  inset: -0.45rem;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.forge-center::after {
  inset: -0.85rem;
  border-color: rgba(49, 92, 255, 0.18);
}

.forge-center span {
  color: var(--muted);
  font-size: 0.7rem;
}

.forge-center strong {
  margin-top: 0.16rem;
  font-size: 1.08rem;
  line-height: 1;
}

.forge-center em {
  margin-top: 0.32rem;
  color: var(--muted);
  font-size: 0.66rem;
  font-style: normal;
}

.forge-branch {
  display: grid;
  grid-template-columns: 2.65rem minmax(0, 1fr);
  align-items: center;
  gap: 0.72rem;
  width: 11.75rem;
  min-height: 4.4rem;
  padding: 0.7rem;
  border: 1px solid var(--line);
  background: rgba(5, 6, 7, 0.9);
}

.forge-branch strong,
.forge-branch p {
  font-family: "Courier New", Courier, monospace;
  text-transform: uppercase;
}

.forge-branch strong {
  display: block;
  color: var(--ink);
  font-size: 0.82rem;
  line-height: 1.16;
}

.forge-branch p {
  display: none;
}

.forge-branch-vision {
  left: 1.05rem;
  top: 1.05rem;
  border-color: rgba(97, 215, 255, 0.48);
}

.forge-branch-control {
  right: 1.15rem;
  top: 2.45rem;
  border-color: rgba(125, 255, 178, 0.44);
}

.forge-branch-electronics {
  right: 0.85rem;
  bottom: 1.1rem;
  border-color: rgba(255, 187, 86, 0.48);
}

.forge-branch-fabrication {
  left: 1.9rem;
  bottom: 2.65rem;
  border-color: rgba(242, 242, 238, 0.34);
}

.forge-branch-line {
  z-index: 1;
  width: 1px;
  height: 1px;
  background: transparent;
  border: 0;
}

.forge-branch-line::after {
  display: none;
}

.forge-branch-line-vision {
  left: 12.25rem;
  top: 5.45rem;
  height: 2.92rem;
  border-left: 1px solid rgba(97, 215, 255, 0.52);
}

.forge-branch-line-control {
  left: 16.35rem;
  top: 6.85rem;
  height: 1.52rem;
  border-left: 1px solid rgba(125, 255, 178, 0.5);
}

.forge-branch-line-electronics {
  left: 16.9rem;
  top: 14.65rem;
  height: 2.84rem;
  border-left: 1px solid rgba(255, 187, 86, 0.52);
}

.forge-branch-line-fabrication {
  left: 12.7rem;
  top: 14.65rem;
  height: 1.72rem;
  border-left: 1px solid rgba(242, 242, 238, 0.4);
}

.branch-symbol {
  position: relative;
  display: block;
  width: 2.45rem;
  height: 1.9rem;
  border: 1px solid currentColor;
  color: var(--blue);
  background: rgba(49, 92, 255, 0.08);
}

.vision-symbol {
  color: var(--cyan);
}

.vision-symbol::before,
.vision-symbol i,
.vision-symbol b {
  position: absolute;
  content: "";
}

.vision-symbol::before {
  left: 0.32rem;
  top: 0.32rem;
  width: 0.46rem;
  height: 0.46rem;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.vision-symbol i {
  right: 0.3rem;
  top: 0.27rem;
  width: 0.58rem;
  height: 0.42rem;
  border: 1px solid currentColor;
}

.vision-symbol b {
  left: 0.45rem;
  bottom: 0.25rem;
  width: 1rem;
  height: 0.22rem;
  border-top: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
}

.firmware-symbol {
  color: var(--green);
  background: rgba(125, 255, 178, 0.08);
}

.firmware-symbol::before,
.firmware-symbol i,
.firmware-symbol b {
  position: absolute;
  left: 0.32rem;
  right: 0.32rem;
  height: 1px;
  content: "";
  background: currentColor;
}

.firmware-symbol::before {
  top: 0.38rem;
}

.firmware-symbol i {
  top: 0.72rem;
  width: 0.82rem;
}

.firmware-symbol b {
  top: 1.06rem;
  left: 0.7rem;
}

.pcb-symbol {
  color: var(--amber);
  background:
    radial-gradient(circle at 24% 35%, currentColor 0 0.08rem, transparent 0.09rem),
    radial-gradient(circle at 68% 68%, currentColor 0 0.08rem, transparent 0.09rem),
    rgba(255, 187, 86, 0.08);
}

.pcb-symbol::before,
.pcb-symbol::after,
.pcb-symbol i,
.pcb-symbol b {
  position: absolute;
  content: "";
  background: currentColor;
}

.pcb-symbol::before {
  left: 0.35rem;
  right: 0.35rem;
  top: 0.48rem;
  height: 1px;
}

.pcb-symbol::after {
  left: 0.85rem;
  top: 0.48rem;
  width: 1px;
  height: 0.72rem;
}

.pcb-symbol i,
.pcb-symbol b {
  width: 0.42rem;
  height: 0.3rem;
}

.pcb-symbol i {
  left: 0.34rem;
  bottom: 0.25rem;
}

.pcb-symbol b {
  right: 0.34rem;
  top: 0.25rem;
}

.cad-symbol {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.06);
}

.cad-symbol::before,
.cad-symbol::after,
.cad-symbol i,
.cad-symbol b {
  position: absolute;
  content: "";
  border: 1px solid currentColor;
}

.cad-symbol::before {
  left: 0.35rem;
  top: 0.32rem;
  width: 0.78rem;
  height: 0.58rem;
}

.cad-symbol::after {
  right: 0.35rem;
  bottom: 0.3rem;
  width: 0.78rem;
  height: 0.58rem;
}

.cad-symbol i {
  left: 0.55rem;
  right: 0.55rem;
  top: 0.52rem;
  height: 0.58rem;
  border-left: 0;
  border-right: 0;
}

.cad-symbol b {
  left: 0.72rem;
  top: 0.44rem;
  width: 0.58rem;
  height: 0.58rem;
  border-bottom: 0;
}

.hero-telemetry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}

.hero-telemetry span {
  padding: 0.65rem 0.75rem;
  color: var(--muted);
  border-right: 1px solid var(--line);
  font-family: "Courier New", Courier, monospace;
  font-size: 0.75rem;
}

.hero-telemetry span:last-child {
  border-right: 0;
}

.side-index {
  position: sticky;
  top: 6.5rem;
  z-index: 3;
  align-self: center;
  display: grid;
  gap: 1.1rem;
}

.side-index a {
  display: grid;
  grid-template-columns: 2.3rem 1fr;
  align-items: center;
  gap: 0.65rem;
  color: var(--muted);
  font-family: "Courier New", Courier, monospace;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.side-index a::after {
  width: 1.5rem;
  height: 1px;
  content: "";
  background: var(--line);
}

.side-index span {
  color: var(--ink);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(18rem, 0.65fr);
  gap: 3rem;
  padding: 5rem 3.5rem 3rem;
}

.section-heading h2,
.founder h2,
.contact h2 {
  margin: 0;
  font-size: 4rem;
  line-height: 0.98;
  text-transform: uppercase;
}

.section-heading p:last-child,
.founder-copy p,
.contact-copy p {
  margin: 2.2rem 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.6;
}

.work .section-heading,
.services .section-heading {
  grid-template-columns: minmax(0, 58rem);
  gap: 0;
  justify-content: center;
  justify-items: center;
  padding-top: 3.25rem;
  padding-bottom: 2.05rem;
  text-align: center;
}

.work .section-kicker,
.services .section-kicker {
  margin-bottom: 0.85rem;
}

.work .section-heading h2,
.services .section-heading h2 {
  font-size: 3.45rem;
}

.work .section-heading p:last-child,
.services .section-heading p:last-child {
  max-width: 44rem;
  margin-top: 1.05rem;
}

.project-slider {
  --project-peek: 0rem;
  --project-gap: 0rem;
  border-top: 1px solid var(--line);
}

.project-controls {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: stretch;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 6, 7, 0.86);
}

.project-counter {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-width: 8.5rem;
  padding: 0 3.5rem;
  border-right: 1px solid var(--line);
  color: var(--muted);
  font-family: "Courier New", Courier, monospace;
  font-size: 0.9rem;
}

.project-counter span:first-child {
  color: var(--ink);
}

.project-tabs {
  display: flex;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.project-tabs::-webkit-scrollbar,
.project-viewport::-webkit-scrollbar {
  display: none;
}

.project-tab,
.project-arrow {
  appearance: none;
  border: 0;
  color: var(--ink);
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.project-tab {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 4.5rem;
  padding: 0.9rem 1.35rem;
  border-right: 1px solid var(--line);
  color: var(--muted);
  text-transform: uppercase;
}

.project-tab span {
  color: var(--blue);
  font-family: "Courier New", Courier, monospace;
}

.project-tab strong {
  font-size: 0.86rem;
}

.project-tab.is-active {
  color: var(--bg);
  background: var(--ink);
}

.project-tab.is-active span {
  color: var(--blue);
}

.project-arrows {
  display: flex;
  border-left: 1px solid var(--line);
}

.project-arrow {
  display: grid;
  place-items: center;
  width: 5.25rem;
  min-height: 4.5rem;
  border-right: 1px solid var(--line);
  color: var(--ink);
  font-size: 1.55rem;
  font-weight: 900;
  background:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    rgba(255, 255, 255, 0.03);
  background-size: 18px 18px;
  transition:
    background 160ms ease,
    color 160ms ease;
}

.project-arrow:last-child {
  border-right: 0;
}

.project-arrow:hover,
.project-tab:hover {
  background: rgba(255, 255, 255, 0.08);
}

.project-tab.is-active:hover {
  background: var(--ink);
}

.project-progress {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  height: 0.45rem;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.project-progress span {
  display: block;
  background: rgba(255, 255, 255, 0.08);
}

.project-progress span.is-active {
  background: var(--blue);
}

.project-arrow:focus-visible,
.project-tab:focus-visible,
.project-viewport:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: -2px;
}

.project-viewport {
  height: var(--project-slider-height, auto);
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  transition: height 220ms ease;
}

.project-track {
  display: flex;
  align-items: flex-start;
  gap: var(--project-gap);
}

.project-slider .project {
  flex: 0 0 calc(100% - var(--project-peek));
  width: calc(100% - var(--project-peek));
  border-top: 0;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.project-track-spacer {
  flex: 0 0 calc(var(--project-peek) + var(--project-gap));
  min-height: 1px;
}

.project {
  display: grid;
  grid-template-columns: minmax(20rem, 0.75fr) minmax(22rem, 1fr);
  min-height: 39rem;
  border-top: 1px solid var(--line);
}

.project-copy,
.project-media {
  padding: 3.2rem 3.5rem;
}

.project-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--line);
  background: rgba(5, 6, 7, 0.58);
}

.project-number {
  margin: 0 0 1.4rem;
  color: var(--blue);
  font-size: 4.8rem;
  font-weight: 950;
  line-height: 0.9;
}

.project h3 {
  max-width: 36rem;
  margin: 0;
  font-size: 3.4rem;
  line-height: 1;
  text-transform: uppercase;
}

.project-copy > p:not(.project-number) {
  max-width: 43rem;
  margin: 1.35rem 0 0;
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.58;
}

.spec-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: 100%;
  max-width: 42rem;
  padding: 0;
  margin: 2rem 0 0;
  list-style: none;
  background: var(--line);
  border: 1px solid var(--line);
}

.project-scooter .spec-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 50rem;
}

.spec-list li {
  display: grid;
  gap: 0.35rem;
  min-height: 5.2rem;
  padding: 0.8rem;
  background: rgba(8, 10, 13, 0.95);
  transition:
    background 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.spec-list li:hover {
  background: rgba(17, 20, 26, 0.98);
  box-shadow: inset 0 0 0 1px rgba(49, 92, 255, 0.42);
  transform: translateY(-1px);
}

.spec-list strong {
  color: var(--ink);
  font-size: 1.25rem;
  overflow-wrap: anywhere;
}

.spec-list span {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.35;
  text-transform: uppercase;
}

.project-expand {
  appearance: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  max-width: 42rem;
  min-height: 3.25rem;
  padding: 0.85rem 1rem;
  margin-top: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.04);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background 160ms ease,
    border-color 160ms ease;
}

.project-expand:hover {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.project-expand:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: -2px;
}

.project-expand-icon {
  display: grid;
  place-items: center;
  width: 1.5rem;
  height: 1.5rem;
  color: var(--blue);
  font-family: "Courier New", Courier, monospace;
  font-size: 1.1rem;
  line-height: 1;
  transition: transform 160ms ease;
}

.project.is-expanded .project-expand-icon {
  transform: rotate(180deg);
}

.project-details {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(18rem, 0.65fr) minmax(24rem, 1fr);
  gap: 1px;
  border-top: 1px solid var(--line);
  background: var(--line);
}

.project-details[hidden] {
  display: none;
}

.project-details-copy,
.project-detail-grid,
.project-detail-gallery {
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    rgba(5, 6, 7, 0.92);
  background-size: 34px 34px;
}

.project-details-copy {
  padding: 2rem 3.5rem;
}

.project-details h4 {
  margin: 0;
  font-size: 1.65rem;
  line-height: 1;
  text-transform: uppercase;
}

.project-details p {
  max-width: 46rem;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.58;
}

.project-detail-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  max-width: 48rem;
  padding: 0;
  margin: 1.35rem 0 0;
  background: var(--line);
  border: 1px solid var(--line);
}

.project-detail-specs div {
  min-height: 6.7rem;
  padding: 0.9rem;
  background: rgba(5, 6, 7, 0.9);
}

.project-detail-specs dt {
  margin: 0;
  color: var(--blue);
  font-family: "Courier New", Courier, monospace;
  font-size: 0.72rem;
  text-transform: uppercase;
}

.project-detail-specs dd {
  margin: 0.55rem 0 0;
  color: var(--ink);
  font-size: 0.9rem;
  line-height: 1.42;
}

.project-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.project-detail-cell {
  display: grid;
  align-content: end;
  min-height: 13rem;
  padding: 1rem;
  border-right: 1px solid var(--line);
}

.project-detail-cell:last-child {
  border-right: 0;
}

.project-detail-cell span,
.project-detail-gallery figcaption {
  color: var(--muted);
  font-family: "Courier New", Courier, monospace;
  font-size: 0.72rem;
  text-transform: uppercase;
}

.project-detail-cell strong {
  margin-top: 0.35rem;
  font-size: 1.2rem;
  text-transform: uppercase;
}

.project-detail-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
}

.project-detail-gallery figure {
  display: grid;
  align-content: space-between;
  gap: 0.8rem;
  min-height: 13rem;
  margin: 0;
  padding: 0.9rem;
  background: #e9e9e6;
}

.project-detail-gallery img {
  display: block;
  width: 100%;
  height: 10rem;
  object-fit: contain;
}

.project-detail-gallery figcaption {
  color: #111318;
}

.scooter-detail-gallery {
  grid-template-columns: minmax(18rem, 1.1fr) minmax(16rem, 0.9fr);
}

.scooter-detail-gallery figure {
  position: relative;
  align-content: start;
  min-height: 25rem;
  padding: 1.1rem;
  overflow: hidden;
}

.scooter-detail-gallery img {
  height: 21rem;
}

.scooter-detail-extended img {
  height: 24rem;
}

.detector-detail-gallery {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.detector-detail-gallery figure {
  background:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    #050607;
  background-size: 24px 24px;
}

.detector-detail-gallery img {
  height: 11.5rem;
  object-fit: cover;
}

.detector-detail-gallery figure:first-child {
  background: #eeeeec;
}

.detector-detail-gallery figure:first-child img {
  object-fit: contain;
}

.detector-detail-gallery figcaption {
  color: var(--ink);
}

.detector-detail-gallery figure:first-child figcaption {
  color: #111318;
}

.project-media {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    rgba(9, 10, 12, 0.9);
  background-size: 42px 42px;
}

.detector-media,
.scooter-media {
  gap: 0;
}

.detector-visuals {
  width: 100%;
  max-width: 52rem;
  border: 1px solid var(--line);
  background: var(--line);
}

.detector-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 1px;
}

.detector-visual {
  appearance: none;
  position: relative;
  display: grid;
  align-items: center;
  margin: 0;
  padding: 0;
  border: 0;
  overflow: hidden;
  background: #050607;
  cursor: pointer;
  font: inherit;
  text-align: left;
  transition:
    filter 160ms ease,
    transform 160ms ease;
}

.detector-visual::before,
.detector-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
}

.detector-visual::before {
  z-index: 2;
  background: linear-gradient(90deg, transparent, rgba(97, 215, 255, 0.32), transparent);
  opacity: 0;
  transform: translateX(-95%);
}

.detector-visual::after {
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.detector-visual img {
  display: block;
  width: 100%;
  height: 100%;
  transition:
    filter 160ms ease,
    transform 220ms ease;
}

.detector-support,
.detector-rgb,
.detector-query,
.detector-activation {
  min-height: 15.5rem;
}

.detector-visual.is-active {
  grid-column: 1 / -1;
  min-height: 22rem;
}

.detector-support {
  background: #eeeeec;
}

.detector-support img {
  padding: 0.55rem;
  object-fit: contain;
}

.detector-rgb img,
.detector-activation img,
.detector-query img {
  object-fit: cover;
}

.detector-visual:hover img,
.detector-visual:focus-visible img,
.detector-visual.is-active img {
  filter: saturate(1.12) contrast(1.05);
  transform: scale(1.025);
}

.detector-visual.is-active::before {
  opacity: 1;
  animation: scan-sweep 3.2s linear infinite;
}

.detector-visual:hover::after,
.detector-visual:focus-visible::after,
.detector-visual.is-active::after {
  border-color: var(--blue);
}

.detector-visual:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: -2px;
}

.detector-visual-caption {
  position: absolute;
  left: 0.75rem;
  top: 0.75rem;
  z-index: 4;
  padding: 0.42rem 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(5, 6, 7, 0.76);
  color: var(--ink);
  font-family: "Courier New", Courier, monospace;
  font-size: 0.72rem;
  text-transform: uppercase;
}

.detector-support .detector-visual-caption {
  display: none;
}

.detector-readout {
  display: grid;
  grid-template-columns: minmax(8rem, 0.35fr) minmax(0, 1fr);
  gap: 1px;
  border-top: 1px solid var(--line);
  background: var(--line);
}

.detector-readout span,
.detector-readout strong {
  display: grid;
  align-items: center;
  min-height: 3.15rem;
  padding: 0.72rem 0.85rem;
  background: rgba(5, 6, 7, 0.92);
  font-family: "Courier New", Courier, monospace;
  text-transform: uppercase;
}

.detector-readout span {
  color: var(--blue);
  font-size: 0.78rem;
}

.detector-readout strong {
  color: var(--ink);
  font-size: 0.72rem;
  line-height: 1.35;
}

.project-media .media-caption {
  width: 100%;
  max-width: 46rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.detector-media .media-caption {
  max-width: 52rem;
}

.scooter-renders {
  width: 100%;
  max-width: 52rem;
  border: 1px solid var(--line);
  background: var(--line);
}

.scooter-mode-controls {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.scooter-mode {
  appearance: none;
  min-height: 3rem;
  border: 0;
  color: var(--muted);
  background: rgba(5, 6, 7, 0.92);
  font: inherit;
  font-family: "Courier New", Courier, monospace;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background 160ms ease,
    color 160ms ease;
}

.scooter-mode:hover {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.08);
}

.scooter-mode.is-active {
  color: var(--bg);
  background: var(--ink);
}

.scooter-mode:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: -2px;
}

.scooter-stage {
  position: relative;
  height: 32rem;
  min-height: 32rem;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(5, 6, 7, 0.08), transparent 28%, rgba(5, 6, 7, 0.16)),
    #efefed;
}

.scooter-render {
  position: relative;
  display: grid;
  align-items: center;
  height: 100%;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  background: transparent;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.scooter-render + .scooter-render {
  position: absolute;
  inset: 0;
}

.scooter-renders[data-scooter-state="extended"] .scooter-render-extended,
.scooter-renders[data-scooter-state="condensed"] .scooter-render-condensed {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.scooter-renders[data-scooter-state="extended"] .scooter-render-condensed,
.scooter-renders[data-scooter-state="condensed"] .scooter-render-extended {
  transform: translateX(1.2rem);
}

.scooter-render::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  border: 1px solid rgba(5, 6, 7, 0.08);
}

.scooter-render img {
  position: absolute;
  inset: 0;
  box-sizing: border-box;
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  padding: 1.1rem;
  object-fit: contain;
  object-position: center;
  filter: contrast(1.03) saturate(0.96);
}

.scooter-render-extended img {
  padding: 0.7rem 0.2rem;
}

.scooter-render-condensed img {
  padding: 1.2rem 0.8rem;
}

.scooter-dimension {
  position: absolute;
  right: 15%;
  bottom: 5.35rem;
  left: 15%;
  z-index: 3;
  height: 1.35rem;
  color: rgba(17, 19, 24, 0.46);
  font-family: "Courier New", Courier, monospace;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  pointer-events: none;
  text-align: center;
  text-transform: uppercase;
}

.scooter-dimension::before {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: 0.85;
}

.scooter-dimension::after {
  position: absolute;
  top: calc(50% - 0.42rem);
  right: 0;
  left: 0;
  height: 0.84rem;
  border-right: 1px solid currentColor;
  border-left: 1px solid currentColor;
  content: "";
}

.scooter-dimension span {
  position: relative;
  display: inline-block;
  padding: 0 0.45rem;
  background: rgba(239, 239, 237, 0.78);
  transform: translateY(-0.2rem);
}

.scooter-detail-condensed .scooter-dimension {
  top: 18.75rem;
  right: 12%;
  bottom: auto;
  left: 12%;
}

.scooter-render figcaption {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 2;
  display: grid;
  gap: 0.18rem;
  min-width: 8rem;
  padding: 0.55rem 0.65rem;
  border: 1px solid rgba(5, 6, 7, 0.2);
  background: rgba(5, 6, 7, 0.72);
  color: var(--ink);
}

.scooter-render figcaption span {
  color: var(--muted);
  font-family: "Courier New", Courier, monospace;
  font-size: 0.72rem;
  text-transform: uppercase;
}

.scooter-render figcaption strong {
  font-size: 0.95rem;
  text-transform: uppercase;
}

.scooter-media .media-caption {
  max-width: 52rem;
}

.services {
  padding-bottom: 5rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.service-tile {
  position: relative;
  display: grid;
  align-content: space-between;
  min-height: 22rem;
  padding: 2.4rem 1.8rem;
  overflow: hidden;
  border-right: 1px solid var(--line);
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    rgba(5, 6, 7, 0.72);
  background-size: 36px 36px;
}

.service-tile::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--service-color, var(--blue));
  content: "";
  opacity: 0.75;
}

.service-tile-vision {
  --service-color: var(--blue);
}

.service-tile-embedded {
  --service-color: var(--cyan);
}

.service-tile-fabrication {
  --service-color: var(--amber);
}

.service-tile-electronics {
  --service-color: var(--green);
}

.service-tile:last-child {
  border-right: 0;
}

.service-symbol {
  position: relative;
  display: block;
  width: 7.4rem;
  height: 5.2rem;
  margin-bottom: 2rem;
  color: var(--service-color, var(--blue));
}

.service-symbol::before,
.service-symbol::after,
.service-symbol i,
.service-symbol b,
.service-symbol em {
  position: absolute;
  display: block;
  content: "";
}

.service-symbol::before {
  inset: 0;
  border: 1px solid currentColor;
  opacity: 0.72;
}

.service-symbol::after {
  inset: 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.service-symbol i,
.service-symbol b,
.service-symbol em {
  background: currentColor;
}

.service-symbol-vision i {
  top: 1.15rem;
  left: 2.3rem;
  width: 2.8rem;
  height: 2.8rem;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
}

.service-symbol-vision b {
  top: 2.55rem;
  right: 1.05rem;
  left: 1.05rem;
  height: 1px;
  box-shadow:
    0 -1.4rem 0 -0.48rem currentColor,
    0 1.4rem 0 -0.48rem currentColor;
}

.service-symbol-vision em {
  top: 1rem;
  bottom: 1rem;
  left: 50%;
  width: 1px;
  box-shadow:
    -1.4rem 0 0 -0.48rem currentColor,
    1.4rem 0 0 -0.48rem currentColor;
}

.service-symbol-embedded i {
  bottom: 1.35rem;
  left: 1.15rem;
  width: 2.45rem;
  height: 1px;
  transform: rotate(-34deg);
  transform-origin: left center;
}

.service-symbol-embedded i::before,
.service-symbol-embedded i::after,
.service-symbol-embedded b::after {
  position: absolute;
  width: 0.42rem;
  height: 0.42rem;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: rgba(5, 6, 7, 0.92);
  content: "";
}

.service-symbol-embedded i::before {
  top: -0.21rem;
  left: -0.21rem;
}

.service-symbol-embedded i::after {
  top: -0.21rem;
  right: -0.21rem;
}

.service-symbol-embedded b {
  top: 2.06rem;
  left: 3.42rem;
  width: 1.8rem;
  height: 1px;
  transform: rotate(18deg);
  transform-origin: left center;
}

.service-symbol-embedded b::after {
  top: -0.21rem;
  right: -0.21rem;
}

.service-symbol-embedded em {
  top: 1.83rem;
  right: 0.9rem;
  width: 1.25rem;
  height: 1.25rem;
  border-left: 1px solid currentColor;
  background: transparent;
}

.service-symbol-embedded em::before,
.service-symbol-embedded em::after {
  position: absolute;
  left: 0.32rem;
  width: 0.82rem;
  height: 1px;
  background: currentColor;
  content: "";
  transform-origin: left center;
}

.service-symbol-embedded em::before {
  top: 0.24rem;
  transform: rotate(-32deg);
}

.service-symbol-embedded em::after {
  bottom: 0.24rem;
  transform: rotate(32deg);
}

.service-symbol-fabrication i {
  top: 0.95rem;
  right: 1.05rem;
  left: 1.05rem;
  height: 1px;
  box-shadow:
    0 2.7rem 0 currentColor,
    1.05rem 1.35rem 0 currentColor;
}

.service-symbol-fabrication b {
  top: 1.05rem;
  left: 3.2rem;
  width: 1rem;
  height: 1.35rem;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  border-left: 1px solid currentColor;
  background: transparent;
}

.service-symbol-fabrication b::after {
  position: absolute;
  bottom: -0.48rem;
  left: 0.18rem;
  width: 0;
  height: 0;
  border-top: 0.48rem solid currentColor;
  border-right: 0.32rem solid transparent;
  border-left: 0.32rem solid transparent;
  content: "";
}

.service-symbol-fabrication em {
  right: 1.4rem;
  bottom: 1rem;
  left: 1.4rem;
  height: 1px;
  box-shadow:
    0 -0.45rem 0 currentColor,
    0 -0.9rem 0 currentColor;
}

.service-symbol-electronics i {
  top: 1.15rem;
  left: 1.25rem;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  box-shadow:
    3.25rem 0.75rem 0 currentColor,
    1.55rem 2.25rem 0 currentColor,
    4.65rem 2.65rem 0 currentColor;
}

.service-symbol-electronics b {
  top: 1.55rem;
  left: 2rem;
  width: 2.15rem;
  height: 1px;
  box-shadow:
    -0.05rem 1.85rem 0 currentColor,
    1.75rem 2.25rem 0 currentColor;
}

.service-symbol-electronics em {
  top: 2.35rem;
  left: 3.55rem;
  width: 1px;
  height: 1.5rem;
  box-shadow: 1.85rem 0.4rem 0 currentColor;
}

.service-tile h3 {
  margin: 0 0 1.2rem;
  font-size: 2rem;
  line-height: 1.04;
  text-transform: uppercase;
}

.service-tile span {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
}

.founder {
  display: grid;
  grid-template-columns: minmax(20rem, 0.72fr) minmax(24rem, 1fr);
  gap: 1px;
  background: var(--line);
}

.founder-heading,
.founder-copy {
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    rgba(5, 6, 7, 0.86);
  background-size: 36px 36px;
}

.founder-heading {
  display: grid;
  align-content: center;
  min-height: 23rem;
  padding: 3.5rem;
}

.founder-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 12.5rem;
  align-items: center;
  gap: 2rem;
  align-content: center;
  padding: 3.5rem;
}

.founder h2 {
  max-width: 42rem;
  font-size: 3.35rem;
}

.founder-copy p {
  max-width: 54rem;
  margin: 0;
  color: var(--ink);
  font-size: 1.25rem;
}

.founder-mark {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 12.5rem;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(rgba(49, 92, 255, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(49, 92, 255, 0.14) 1px, transparent 1px),
    rgba(5, 6, 7, 0.78);
  background-size: 18px 18px;
}

.founder-mark::before,
.founder-mark::after {
  position: absolute;
  content: "";
}

.founder-mark::before {
  inset: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.founder-mark::after {
  width: 7.6rem;
  height: 7.6rem;
  border: 1px solid var(--blue);
}

.founder-mark span {
  position: relative;
  z-index: 2;
  color: var(--ink);
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
}

.founder-mark i {
  position: absolute;
  display: block;
  height: 1px;
  background: var(--blue);
}

.founder-mark i:nth-of-type(1) {
  top: 2.1rem;
  right: 1.1rem;
  width: 4.5rem;
}

.founder-mark i:nth-of-type(2) {
  bottom: 2.3rem;
  left: 1.2rem;
  width: 5.6rem;
}

.founder-mark i:nth-of-type(3) {
  top: 1.2rem;
  bottom: 1.2rem;
  left: 2.4rem;
  width: 1px;
  height: auto;
}

.contact {
  display: grid;
  grid-template-columns: minmax(20rem, 0.9fr) minmax(18rem, 0.6fr);
  gap: 3rem;
  padding: 5rem 3.5rem;
}

.contact-copy {
  align-self: end;
}

.contact-intake {
  display: grid;
  grid-template-columns: 1.1fr repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 1.55rem;
  border: 1px solid var(--line);
  background: var(--line);
}

.contact-intake-label,
.contact-intake div {
  min-height: 4.8rem;
  padding: 0.85rem;
  background: rgba(5, 6, 7, 0.88);
}

.contact-intake-label {
  display: grid;
  align-items: end;
  color: var(--muted);
  font-family: "Courier New", Courier, monospace;
  font-size: 0.72rem;
  text-transform: uppercase;
}

.contact-intake div {
  display: grid;
  align-content: space-between;
}

.contact-intake strong {
  color: var(--blue);
  font-family: "Courier New", Courier, monospace;
  font-size: 0.72rem;
}

.contact-intake span {
  color: var(--ink);
  font-size: 0.95rem;
  text-transform: uppercase;
}

.contact-copy .button {
  margin-top: 1.6rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 1.5rem 3.5rem 3rem;
  color: var(--muted);
  font-family: "Courier New", Courier, monospace;
  font-size: 0.82rem;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0;
}

@keyframes scan-sweep {
  0% {
    transform: translateX(-80%);
  }

  100% {
    transform: translateX(80%);
  }
}

@media (max-width: 1180px) {
  .site-header {
    padding: 0 1.5rem;
  }

  .project-counter {
    padding: 0 1.5rem;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 2rem 1.5rem 4rem;
  }

  .hero-title {
    font-size: 8.2rem;
  }

  .hero-visual {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(100%, 38rem);
    margin-top: 2.5rem;
  }

  .side-index {
    position: relative;
    top: auto;
    grid-template-columns: repeat(5, auto);
    align-self: start;
    justify-content: start;
    margin-top: 1rem;
  }

  .project,
  .founder,
  .contact,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .project-copy {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-tile:nth-child(2) {
    border-right: 0;
  }

  .service-tile:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 760px) {
  body {
    background-size: 54px 54px;
  }

  .site-header {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 1rem;
  }

  .site-nav {
    grid-column: 1 / -1;
    order: 3;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    justify-content: stretch;
    width: 100%;
    gap: 0.4rem;
    padding-top: 0.85rem;
    border-top: 1px solid var(--line);
    font-size: 0.68rem;
    text-align: center;
  }

  .entity {
    display: none;
  }

  .hero {
    min-height: 82svh;
    padding: 2rem 1rem 3rem;
  }

  .hero-title {
    font-size: 4.6rem;
  }

  .hero-lede {
    font-size: 1.08rem;
  }

  .hero-visual {
    display: none;
  }

  .hero-telemetry {
    grid-template-columns: 1fr;
  }

  .hero-telemetry span {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-telemetry span:last-child {
    border-bottom: 0;
  }

  .side-index {
    display: none;
  }

  .project-controls {
    grid-template-columns: 1fr auto;
  }

  .project-slider {
    --project-peek: 0rem;
    --project-gap: 0rem;
  }

  .project-counter {
    min-width: 0;
    padding: 0 1rem;
    border-right: 0;
  }

  .project-arrows {
    border-left: 1px solid var(--line);
  }

  .project-arrow {
    width: 4rem;
  }

  .project-tabs {
    grid-column: 1 / -1;
    order: 3;
    border-top: 1px solid var(--line);
  }

  .project-tab {
    flex: 1 0 50%;
    min-height: 3.7rem;
    padding: 0.8rem 1rem;
  }

  .section-heading,
  .project-copy,
  .project-media,
  .project-details-copy,
  .founder-heading,
  .founder-copy,
  .contact,
  .site-footer {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .section-heading h2,
  .founder h2,
  .contact h2 {
    font-size: 2.7rem;
  }

  .work .section-heading,
  .services .section-heading {
    padding-top: 2.45rem;
    padding-bottom: 1.55rem;
  }

  .work .section-heading h2,
  .services .section-heading h2 {
    font-size: 2.12rem;
  }

  .work .section-heading p:last-child,
  .services .section-heading p:last-child {
    margin-top: 0.8rem;
    font-size: 1rem;
    line-height: 1.5;
  }

  .founder-heading {
    min-height: 16rem;
    padding-top: 2.5rem;
    padding-bottom: 2.1rem;
  }

  .founder-copy {
    grid-template-columns: 1fr;
    padding-top: 2.1rem;
    padding-bottom: 2.4rem;
  }

  .founder-copy p {
    font-size: 1.06rem;
    line-height: 1.55;
  }

  .founder-mark {
    width: min(100%, 13rem);
    min-height: 10rem;
  }

  .service-tile {
    min-height: 17rem;
    align-content: start;
  }

  .service-symbol {
    width: 6rem;
    height: 4.2rem;
    margin-bottom: 1.5rem;
  }

  .service-symbol-vision i {
    top: 1rem;
    left: 1.85rem;
    width: 2.3rem;
    height: 2.3rem;
  }

  .service-symbol-vision b {
    top: 2.15rem;
  }

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

  .contact-intake-label,
  .contact-intake div {
    min-height: 3.9rem;
  }

  .project {
    min-height: auto;
  }

  .project-number {
    font-size: 3.8rem;
  }

  .project h3 {
    font-size: 2.45rem;
  }

  .spec-list,
  .project-scooter .spec-list {
    grid-template-columns: 1fr 1fr;
  }

  .detector-visuals {
    max-width: 100%;
  }

  .detector-grid,
  .detector-readout {
    grid-template-columns: 1fr;
  }

  .detector-support,
  .detector-rgb,
  .detector-query {
    min-height: 14rem;
  }

  .detector-activation {
    min-height: 12rem;
  }

  .scooter-renders {
    max-width: 100%;
  }

  .scooter-stage {
    height: 24rem;
    min-height: 24rem;
  }

  .scooter-render {
    height: 100%;
    min-height: 100%;
  }

  .scooter-render-extended {
    min-height: 100%;
  }

  .scooter-render img {
    padding: 0.8rem;
  }

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

  .project-details-copy {
    padding-top: 1.6rem;
    padding-bottom: 1.6rem;
  }

  .project-detail-grid,
  .project-detail-gallery,
  .project-detail-specs {
    grid-template-columns: 1fr;
  }

  .project-detail-cell {
    min-height: 8rem;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .project-detail-cell:last-child {
    border-bottom: 0;
  }

  .project-detail-gallery figure {
    min-height: 12rem;
  }

  .scooter-detail-gallery figure {
    min-height: 18rem;
  }

  .scooter-detail-gallery img,
  .scooter-detail-extended img {
    height: 16rem;
  }

  .scooter-dimension {
    right: 13%;
    bottom: 4.1rem;
    left: 13%;
    font-size: 0.66rem;
  }

  .scooter-detail-condensed .scooter-dimension {
    top: 14.1rem;
    right: 10%;
    left: 10%;
  }

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

  .service-tile,
  .service-tile:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-tile:last-child {
    border-bottom: 0;
  }

  .service-tile {
    min-height: 19rem;
  }

  .site-footer {
    display: grid;
  }
}

@media (max-width: 420px) {
  .hero-title {
    font-size: 3.9rem;
  }

  .work .section-heading h2,
  .services .section-heading h2,
  .founder h2 {
    font-size: 1.9rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .button {
    justify-content: space-between;
  }

  .spec-list,
  .project-scooter .spec-list {
    grid-template-columns: 1fr;
  }

  .project-media .media-caption,
  .hero-visual-label {
    display: grid;
  }

  .scooter-render figcaption {
    right: 0.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .field-canvas {
    display: none;
  }
}
