@property --pill-box-h {
  syntax: "<length>";
  inherits: true;
  initial-value: 0px;
}

:root {
  color-scheme: dark;
  --bg: #050505;
  --text: #f2f2ef;
  --text-faint: rgba(255, 255, 255, 0.3);
  --text-muted: rgba(255, 255, 255, 0.7);
  --muted: rgba(244, 241, 234, 0.62);
  --dim: rgba(244, 241, 234, 0.4);
  --line: rgba(244, 241, 234, 0.18);
  --line-strong: rgba(244, 241, 234, 0.34);
  --hairline: 1px;
  --glass: rgba(255, 255, 255, 0.1);
  --pill-tint: rgba(0, 0, 0, 0.25);
  --pill-tint-hover: rgba(0, 0, 0, 0.35);
  --pill-tint-dim: rgba(0, 0, 0, 0.13);
  --pill-invert: rgba(255, 255, 255, 0.2);
  --pill-invert-hover: rgba(255, 255, 255, 0.4);
  --pill-invert-dim: rgba(255, 255, 255, 0.1);
  --skeleton-shimmer: linear-gradient(110deg, #2a2a2a 25%, #3d3d3d 50%, #2a2a2a 75%);
  --accent: #f07b2b;
  --cyan: #9ac4ce;
  --edge: 0.625rem;
  --edge-inset: var(--edge);
  --text-inset: 0.315rem;
  --rhythm-cols: 1fr 1fr 1fr;
  --rhythm-gap: 0.63rem;
  --section-gap: 1.26rem;
  --nav-col: calc((100vw - 2 * var(--edge-inset) - 2 * var(--rhythm-gap)) / 3);
  --prose-inset-right: calc(6 * var(--edge-inset));
  --pill-line-height: 1.2;
  --pill-box-h: calc(0.7rem * var(--pill-line-height) + 2 * var(--text-inset));
  --open-ease: linear(
    0,
    0.18 6%,
    0.36 13%,
    0.48 22%,
    0.5 26%,
    0.5 65%,
    0.55 70%,
    0.65 77%,
    0.77 84%,
    0.86 89%,
    0.93 93%,
    0.97 97%,
    1
  );
  --surface-dark: #000;
  --surface: #fff;
  --text-invert: #f2f2ef;
  --z-nav: 999;
  --z-window: 9000;
  --z-window-nav: 9100;
  --z-modal: 9999;
  --z-cursor-hint: 10000;
  --z-loader: 10010;
  --z-terminal: 10020;
  --nav-h: 1.875rem;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans SC", sans-serif;
  --micro: "ABC Diatype", sans-serif;
  --mono: "SFMono-Regular", "SF Mono", Consolas, "Liberation Mono", Menlo, monospace;
}

* {
  box-sizing: border-box;
}

svg {
  max-width: 100%;
}

html,
body {
  height: 100%;
  height: 100dvh;
  margin: 0;
  letter-spacing: 0;
  position: fixed;
  inset: 0;
  width: 100%;
  overflow: hidden;
  overscroll-behavior: none;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

html {
  color: #000;
  font-size: 1vw;
}

@media screen and (max-width: 1440px) {
  html {
    font-size: 1.1118vw;
  }
}

@media screen and (max-width: 991px) {
  html {
    font-size: 2.0857vw;
  }
}

@media screen and (max-width: 767px) {
  html {
    font-size: 2.8141vw;
  }
}

@media screen and (max-width: 568px) {
  html {
    font-size: 2.8225vw;
  }
}

@media screen and (max-width: 479px) {
  html {
    font-size: 4.0989vw;
  }
}

@media screen and (max-width: 390px) {
  html {
    font-size: 4.1131vw;
  }
}

body {
  min-height: 100vh;
  background: #000;
  color: #000;
  font-family: var(--micro);
  font-size: 0.7rem;
  line-height: 1;
}

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

a:hover,
button:hover {
  color: #fff;
}

.inline-link {
  color: rgba(255, 255, 255, 0.7);
}

.row-link {
  display: inline-block;
  max-width: 100%;
  border-radius: 0.315rem;
  padding: 0 var(--text-inset);
  color: var(--text-invert);
  font-size: 0.7rem;
  line-height: 1;
  text-align: left;
  cursor: pointer;
  position: relative;
}

.row-link--dense {
  padding: 0.25rem 0;
}

button {
  font: inherit;
}

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

.page-wrapper {
  position: static;
  overflow: visible;
  background: transparent;
}

.loader {
  position: fixed;
  z-index: var(--z-loader);
  inset: 0;
  pointer-events: none;
  background-color: var(--surface-dark);
}

.loader.loader--done {
  display: none;
}

.loader_progress {
  position: absolute;
  top: 45svh;
  left: var(--edge-inset);
  right: var(--edge-inset);
  height: 1px;
  transform: scaleX(0) scaleY(0.5);
  transform-origin: left top;
  background-color: var(--text-invert);
  animation: loaderLine 780ms ease forwards;
}

.loader.loader--done .loader_progress {
  animation: none;
}

.navigation-top {
  position: fixed;
  z-index: var(--z-nav);
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: var(--rhythm-cols);
  column-gap: var(--rhythm-gap);
  align-items: start;
  width: 100%;
  padding: var(--edge-inset) var(--edge-inset) 0;
}

.home-window-open .navigation-top {
  z-index: var(--z-window-nav);
}

.nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  max-width: 100%;
  height: var(--pill-box-h);
  border: 0;
  border-radius: 0.315rem;
  padding: 0 var(--text-inset);
  background-color: var(--pill-tint);
  color: var(--text-invert);
  backdrop-filter: blur(6px) saturate(160%) brightness(0.85);
  -webkit-backdrop-filter: blur(6px) saturate(160%) brightness(0.85);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.25), inset 0 -1px 1px rgba(255, 255, 255, 0.1);
  font-family: var(--micro);
  font-size: 0.7rem;
  line-height: 1;
  position: relative;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s, opacity 0.2s;
}

a.nav-link {
  display: inline-flex;
}

.nav-link[aria-current="page"] {
  color: var(--text-invert);
}

.navigation-top.no-fixed > .nav-link {
  background-color: var(--pill-invert);
}

.navigation-top.no-fixed > .nav-link:hover {
  background-color: var(--pill-invert-hover);
}

body.ascii-on .navigation-top.no-fixed > .nav-link {
  background-color: var(--pill-tint);
}

body.ascii-on .navigation-top.no-fixed > .nav-link:hover,
.nav-link:hover {
  background-color: var(--pill-tint-hover);
}

.navigation-top > .nav-link--brand,
.navigation-top > .nav-link--works,
.navigation-top > .nav-link--profile {
  display: flex;
  justify-content: flex-start;
  justify-self: stretch;
}

.navigation-top > .nav-link--brand {
  grid-column: 1;
  white-space: nowrap;
}

.navigation-top > .nav-link--works {
  grid-column: 2;
}

.navigation-top > .nav-link--profile {
  grid-column: 3;
}

@media (prefers-reduced-motion: no-preference) {
  html.is-js .navigation-top:not(.nav-pills-armed) > .nav-link--brand,
  html.is-js .navigation-top:not(.nav-pills-armed) > .nav-link--works,
  html.is-js .navigation-top:not(.nav-pills-armed) > .nav-link--profile {
    min-width: var(--pill-box-h);
    clip-path: inset(0 100% 0 0 round 0.315rem);
  }
}

.navigation-top.nav-pills-armed > .nav-link--brand,
.navigation-top.nav-pills-armed > .nav-link--works,
.navigation-top.nav-pills-armed > .nav-link--profile {
  min-width: var(--pill-box-h);
  clip-path: inset(0 100% 0 0 round 0.315rem);
}

.navigation-top.nav-pills-armed.nav-pills-in > .nav-link--brand,
.navigation-top.nav-pills-armed.nav-pills-in > .nav-link--works,
.navigation-top.nav-pills-armed.nav-pills-in > .nav-link--profile {
  animation: pill-blink-in 0.72s linear calc(var(--pill-i, 0) * 90ms) forwards;
}

.navigation-top.nav-pills-armed.nav-pills-out > .nav-link--brand,
.navigation-top.nav-pills-armed.nav-pills-out > .nav-link--works,
.navigation-top.nav-pills-armed.nav-pills-out > .nav-link--profile {
  animation: pill-blink-out 0.72s linear calc(var(--pill-r, 0) * 90ms) both;
}

.ftd-m {
  display: inline-block;
  min-width: 0;
}

.ftd-mt {
  display: block;
  min-width: 0;
}

.nav-link .ftd-mt,
.copy-button .ftd-mt {
  line-height: 1;
  min-height: 1em;
}

.toggle_wrap {
  position: fixed;
  right: var(--edge);
  z-index: 999;
  display: none;
  justify-content: flex-start;
  width: 2.5rem;
  min-height: 0;
  bottom: var(--edge);
  padding: 0 0.315rem;
  cursor: pointer;
  backdrop-filter: blur(6px) saturate(160%) brightness(0.85);
  -webkit-backdrop-filter: blur(6px) saturate(160%) brightness(0.85);
}

.toggle_inner {
  display: block;
  height: calc(0.7rem * var(--pill-line-height));
  background: var(--text-invert);
  border-radius: 0.125rem;
  transform-origin: center;
  transition: all 0s ease 0s;
}

body[data-magic="off"] .toggle_inner,
body.magic-off .toggle_inner {
  transform: scaleX(0.28);
  opacity: 0.48;
}

@keyframes pill-blink-in {
  0% {
    clip-path: inset(0 calc(100% - var(--pill-box-h)) 0 0 round 0.315rem);
    animation-timing-function: steps(1, end);
  }
  13% {
    clip-path: inset(0 100% 0 0 round 0.315rem);
    animation-timing-function: steps(1, end);
  }
  23% {
    clip-path: inset(0 calc(100% - var(--pill-box-h)) 0 0 round 0.315rem);
    animation-timing-function: steps(1, end);
  }
  36% {
    clip-path: inset(0 100% 0 0 round 0.315rem);
    animation-timing-function: steps(1, end);
  }
  46% {
    clip-path: inset(0 calc(100% - var(--pill-box-h)) 0 0 round 0.315rem);
    animation-timing-function: ease;
  }
  to {
    clip-path: inset(0 0 0 0 round 0.315rem);
  }
}

@keyframes pill-blink-out {
  0% {
    clip-path: inset(0 0 0 0 round 0.315rem);
    animation-timing-function: ease;
  }
  46% {
    clip-path: inset(0 calc(100% - var(--pill-box-h)) 0 0 round 0.315rem);
    animation-timing-function: steps(1, end);
  }
  59% {
    clip-path: inset(0 100% 0 0 round 0.315rem);
    animation-timing-function: steps(1, end);
  }
  69% {
    clip-path: inset(0 calc(100% - var(--pill-box-h)) 0 0 round 0.315rem);
    animation-timing-function: steps(1, end);
  }
  82%,
  to {
    clip-path: inset(0 100% 0 0 round 0.315rem);
  }
}

@media (hover: hover) and (min-width: 480px) {
  .navigation-top:has(> .nav-link:hover) > .nav-link:not(:hover) {
    background-color: var(--pill-tint-dim);
    color: color-mix(in srgb, var(--text-invert) 50%, transparent);
  }

  body:not(.ascii-on) .navigation-top.no-fixed:has(> .nav-link:hover) > .nav-link:not(:hover) {
    background-color: var(--pill-invert-dim);
  }
}

@media (min-width: 480px) {
  body.home-window-open .navigation-top > .nav-link:not([aria-current="page"]):not(:hover) {
    background-color: var(--pill-tint-dim);
    color: color-mix(in srgb, var(--text-invert) 50%, transparent);
  }
}

@media (hover: hover) and (pointer: fine) {
  .nav-link,
  .copy-button,
  .row-link:not(.row-link--dense) {
    --pill-box-h: calc(0.7rem * var(--pill-line-height) + 0.4rem);
  }
}

.hero-video,
.hero-ascii,
.scrim,
.image-wrap {
  inset: 0;
}

.hero-video {
  position: fixed;
  pointer-events: none;
  width: 100%;
  max-width: 100%;
  height: 100vh;
  object-fit: cover;
  object-position: 50% center;
  overflow: hidden;
  background: transparent;
}

.hero-ascii {
  position: fixed;
  pointer-events: none;
  width: 100%;
  height: 100vh;
  max-width: 100%;
  opacity: 0;
  will-change: opacity;
}

.ascii-on .hero-ascii {
  opacity: 1;
}

.scrim {
  position: absolute;
  z-index: 1;
  opacity: 0;
  pointer-events: none;
}

.image-wrap {
  position: absolute;
  z-index: 2;
  overflow: clip;
}

.trail-lines {
  position: absolute;
  z-index: 2147483000;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
  mix-blend-mode: difference;
}

.trail-lines line {
  stroke: #fff;
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.main-wrapper {
  position: static;
}

.hero-container {
  display: flex;
  position: relative;
  height: 100vh;
  justify-content: space-between;
  align-items: center;
}

.hero-container--grad {
  overflow: hidden;
}

.hero-frame {
  position: absolute;
  top: 0;
  right: var(--edge);
  bottom: var(--edge);
  left: var(--edge);
  width: auto;
  min-height: 0;
  margin: 0;
}

.hero-content {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  top: 45vh;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: normal;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  width: 100%;
  height: 100%;
  grid-template-columns: var(--rhythm-cols);
  grid-template-rows: 1fr auto;
  column-gap: var(--rhythm-gap);
  row-gap: var(--rhythm-gap);
}

.hero-identity {
  grid-column: 1;
  grid-row: 1;
  align-self: start;
  padding-left: 0.315rem;
}

.hero-list {
  display: flex;
  flex-direction: column;
  row-gap: var(--rhythm-gap);
  padding: 0.03125rem 0 0 0.315rem;
  font-family: var(--micro);
}

.hero-list > .body,
.hero-list .dropdown-wrapper > .body,
.hero-list .list-items > .body {
  line-height: 1;
}

.hero-list > .body,
.hero-list .dropdown-wrapper > .body {
  position: relative;
  z-index: 1;
  pointer-events: none;
}

.hero-list .list-items:not(.list-items--no-gap) {
  row-gap: 0.5rem;
}

.hero-list--design {
  grid-column: 2;
  grid-row: 1;
  align-self: start;
}

.hero-list--engineering {
  grid-column: 3;
  grid-row: 1;
  align-self: start;
}

.hero-list--featured {
  grid-column: 3;
  grid-row: 1;
  align-self: start;
  justify-self: end;
  position: relative;
  z-index: 0;
  width: 9.1rem;
  min-width: 9.1rem;
}

.hero-line {
  display: block;
}

.on-dark {
  color: var(--text);
}

.display.on-dark {
  margin: 0;
}

.list-items {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 0;
  margin: 0;
  padding: 0 0 0 var(--edge);
  list-style: none;
}

.list-items > .body {
  position: relative;
}

.list-items--no-gap {
  row-gap: 0;
}

.dropdown-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  line-height: 1;
}

.dropdown-wrapper .body {
  line-height: 1;
}

.dropdown-arrow-icon-wrapper {
  display: none;
  width: 0.7rem;
  height: 0.7rem;
  align-items: center;
  justify-content: center;
}

.dropdown-arrow-icon {
  display: flex;
  width: 0.8rem;
  height: 0.6rem;
  align-items: center;
  justify-content: center;
  transform-origin: center;
  transition: all 0s ease 0s;
}

.dropdown-arrow-icon svg {
  width: 100%;
  height: 100%;
}

.featured-hitplate {
  display: none;
}

body.magic-off .hero-list--featured {
  cursor: pointer;
}

body.magic-off .hero-list--featured .dropdown-arrow-icon-wrapper {
  display: inline-flex;
}

.hero-list--featured .list-items {
  margin-top: -0.25rem;
}

body.home-window-open .hero-list--design > .body,
body.home-window-open .hero-list--engineering > .body,
body.home-window-open .hero-list--featured .dropdown-wrapper {
  height: 0;
}

body.home-window-open .hero-list--design .list-items > .body,
body.home-window-open .hero-list--engineering .list-items > .body {
  height: 0;
}

body.home-window-open .hero-list--featured .featured-row {
  height: 0.75rem;
}

body.home-window-open .hero-identity {
  height: 0;
  overflow: visible;
}

body.home-window-open .hero-identity .hero-line {
  height: 0;
}

[data-droplist="featured"] {
  align-items: flex-start;
  padding-right: 0.6rem;
}

html:not(.featured-ready) [data-droplist="featured"] > .featured-row {
  height: 0;
}

[data-droplist="featured"] > .featured-row {
  flex-shrink: 0;
  overflow: hidden;
}

[data-droplist="featured"].is-scrollable {
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-mask-image: linear-gradient(to bottom, #000 calc(100% - 1.5rem), transparent);
  mask-image: linear-gradient(to bottom, #000 calc(100% - 1.5rem), transparent);
}

[data-droplist="featured"].is-scrollable.is-at-bottom {
  -webkit-mask-image: none;
  mask-image: none;
}

.featured-row {
  display: inline-flex;
  width: max-content;
  height: 1.2rem;
  align-items: center;
  column-gap: 0.4rem;
  color: #000;
  font-size: 0.7rem;
  line-height: 1;
  transition: transform 200ms ease;
}

.featured-row .link-icon {
  width: 0.75rem;
  height: 0.75rem;
  color: #fff;
  opacity: 0;
  transition: opacity 200ms ease;
}

@media (min-width: 480px) {
  body:not(.ascii-on) .featured-hitplate {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: var(--featured-rest-h, 0);
  }
}

@media (hover: hover) {
  [data-droplist="featured"] .row-link {
    transition: opacity 200ms ease;
  }

  [data-droplist="featured"]:has(.row-link:hover) .row-link:not(:hover) {
    opacity: 0.5;
  }

  [data-droplist="featured"] .row-link:hover {
    opacity: 1;
  }

  [data-droplist="featured"]:not(.is-scrollable) .featured-row:has(.row-link:hover) {
    transform: translateX(-0.3rem);
  }

  .hero-grid > * {
    transition: opacity 0.2s;
  }

  .hero-grid:has(.hero-list--featured:hover) > *:not(.hero-list--featured) {
    opacity: 0.5;
  }
}

.hero-grid > * {
  transition: opacity 0.2s;
}

body.trail-hero-hidden .hero-grid > * {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-0.25rem);
}

body.trail-hero-hidden .hero-list--featured {
  pointer-events: none;
}

.bottom-bar {
  position: fixed;
  z-index: 4;
  left: var(--edge-inset);
  right: var(--edge-inset);
  bottom: var(--text-inset);
  display: grid;
  grid-template-columns: var(--rhythm-cols);
  column-gap: var(--rhythm-gap);
  align-items: end;
  color: #000;
  font-family: var(--micro);
  font-size: 0.7rem;
  line-height: var(--pill-line-height);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.45s ease;
}

.bottom-bar.is-revealed {
  opacity: 1;
}

.home-window-open .bottom-bar,
body.ascii-on .bottom-bar {
  opacity: 0;
}

body.trail-hero-hidden .bottom-bar {
  opacity: 0;
}

html.case-route .hero-content,
html.case-route .bottom-bar {
  opacity: 0;
  pointer-events: none;
}

.bb-tagline {
  grid-column: 2;
  grid-row: 1;
  justify-self: start;
  white-space: nowrap;
}

.bb-size {
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
}

.bb-os,
.bb-clock {
  grid-column: 3;
  grid-row: 1;
}

.bb-size,
.bb-os,
.bb-clock {
  z-index: 1;
  opacity: 0.5;
  white-space: nowrap;
}

.bottom-bar .dim {
  color: var(--text);
}

.bb-os {
  justify-self: start;
}

.bb-clock {
  justify-self: end;
}

.bottom-bar .body {
  font-size: 0.7rem;
  line-height: var(--pill-line-height);
  position: relative;
  white-space: nowrap;
}

.home-window {
  position: fixed;
  z-index: var(--z-window);
  inset: 0;
  display: none;
  opacity: 1;
  pointer-events: auto;
}

.home-window.is-open {
  display: block;
  opacity: 1;
  pointer-events: auto;
}

.home-window_backdrop {
  position: absolute;
  inset: 0;
  background: transparent;
  opacity: 0;
  transition: opacity 0.35s;
}

.home-window.is-open .home-window_backdrop {
  opacity: 1;
  transition-duration: 1s;
}

.home-window_pane {
  --hw-radius: calc(0.315rem + var(--text-inset));
  position: absolute;
  display: flex;
  flex-direction: column;
  top: var(--hw-top, 3rem);
  left: var(--edge-inset);
  right: var(--edge-inset);
  bottom: var(--edge-inset);
  width: auto;
  border: 0;
  border-radius: var(--hw-radius);
  background: transparent;
  box-shadow: 0 1.5rem 4rem -1rem rgba(0, 0, 0, 0.5);
  color: var(--text-invert);
  overflow: hidden;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.18) transparent;
  transform-origin: center center;
  will-change: transform;
}

.home-window_glass {
  position: absolute;
  inset: 0;
  z-index: -1;
  display: block;
  border-radius: inherit;
  pointer-events: none;
  background: color-mix(in srgb, var(--surface-dark) 25%, transparent);
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.25),
    inset 0 -1px 1px rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(28px) saturate(160%) brightness(0.85);
  -webkit-backdrop-filter: blur(28px) saturate(160%) brightness(0.85);
}

.home-window_pane.is-section-portfolio {
  left: calc(var(--edge-inset) + var(--nav-col) + var(--rhythm-gap));
  right: calc(var(--edge-inset) + var(--nav-col) + var(--rhythm-gap));
  width: auto;
}

.home-window_pane.is-section-profile {
  left: auto;
  right: var(--edge-inset);
  width: min(32.405vw, 30rem);
}

.home-window_pane.is-fullscreen,
.home-window_pane.is-expanded {
  left: var(--edge-inset);
  right: var(--edge-inset);
  width: auto;
}

.home-window_pane.is-fullscreen .home-window_content,
.home-window_pane.is-expanded .home-window_content {
  width: 100%;
  height: 50%;
  zoom: 2;
}

.home-window_pane.is-fullscreen.is-section-portfolio .home-window_content > [data-window-section="portfolio"],
.home-window_pane.is-expanded.is-section-portfolio .home-window_content > [data-window-section="portfolio"] {
  max-width: calc(var(--nav-col) + var(--rhythm-gap) / 2);
}

.home-window_pane.is-fullscreen .home-window_content > .home-window_section,
.home-window_pane.is-expanded .home-window_content > .home-window_section {
  padding-top: calc((45vh - var(--hw-content-top, 5.5rem)) / 2);
}

.home-window_pane.is-fullscreen.is-section-portfolio .home-window_content > .home-window_section:nth-child(2),
.home-window_pane.is-expanded.is-section-portfolio .home-window_content > .home-window_section:nth-child(2),
.home-window_pane.is-fullscreen.is-section-profile .home-window_content > .home-window_section:first-child,
.home-window_pane.is-expanded.is-section-profile .home-window_content > .home-window_section:first-child {
  padding-top: calc((45vh - var(--hw-content-top, 2.25rem)) / 2);
}

.home-window_controls {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  gap: 0.4rem;
  padding: var(--text-inset);
  background: transparent;
  pointer-events: none;
}

.home-window_controls > * {
  pointer-events: auto;
}

.home-window_btn,
.home-window_socials a,
.home-window_socials button {
  border: 0;
  border-radius: 0.315rem;
  background: rgba(0, 0, 0, 0.25);
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.25),
    inset 0 -1px 1px rgba(255, 255, 255, 0.1);
  color: var(--text-invert);
  backdrop-filter: blur(6px) saturate(160%) brightness(0.85);
  -webkit-backdrop-filter: blur(6px) saturate(160%) brightness(0.85);
  font-family: var(--micro);
  font-size: 0.7rem;
  line-height: 1;
}

.home-window_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.24rem;
  height: 1.24rem;
  aspect-ratio: 1 / 1;
  padding: 0;
  font-size: 0;
}

.home-window_btn {
  font-size: 0;
}

.nav-link.home-window_btn {
  font-size: 0;
}

.home-window_btn::before {
  font-size: 0.7rem;
}

.home-window_btn:not(.home-window_fs)::before {
  content: "x";
}

.home-window_fs::before {
  content: none;
}

.home-window_fs {
  aspect-ratio: 1 / 1;
  font-size: 0.7rem;
  line-height: 1;
}

.home-window_fs .link-icon {
  opacity: 1;
}

.nav-link.home-window_btn.home-window_fs {
  font-size: 0.7rem;
  line-height: 1;
}

.home-window_btn:not(.home-window_fs) {
  display: none;
  width: auto;
  aspect-ratio: auto;
  padding: 0 var(--text-inset);
  font-size: 0.7rem;
  line-height: 1;
}

.link-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: calc(0.7rem * var(--pill-line-height));
  height: calc(0.7rem * var(--pill-line-height));
  color: inherit;
  opacity: 0.5;
  pointer-events: none;
  transition: opacity 200ms ease;
}

.link-icon svg {
  width: 100%;
  height: 100%;
}

button.home-window_btn,
.home-window_socials button {
  cursor: pointer;
}

.home-window_socials {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin-left: auto;
}

.home-window_pane:not(.is-section-profile) .home-window_socials {
  display: none;
}

.home-window_socials a,
.home-window_socials button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 1.24rem;
  padding: 0 var(--text-inset);
}

.home-window_socials button {
  appearance: none;
}

.copy-button {
  max-width: 100%;
  transition: background-color 0.2s, color 0.2s;
}

.home-window_title {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  font-weight: 400;
}

.home-window_zoom-label {
  display: none;
  align-self: center;
  color: rgba(242, 242, 239, 0.5);
  font-size: 0.7rem;
  line-height: var(--pill-line-height);
  pointer-events: none;
}

.home-window_pane.is-fullscreen .home-window_zoom-label,
.home-window_pane.is-expanded .home-window_zoom-label {
  display: block;
}

[hidden] {
  display: none;
}

html.deeplink-intro .home-window {
  visibility: hidden;
}

.home-window_content {
  --modal-text-inset: var(--edge-inset);
  --prose-inset-right: 3.75rem;
  --text: var(--text-invert);
  --text-faint: rgba(255, 255, 255, 0.3);
  --text-muted: rgba(255, 255, 255, 0.7);
  --line: rgba(255, 255, 255, 0.15);
  display: block;
  flex: 1 1 auto;
  overflow: auto;
  isolation: isolate;
  color: var(--text-invert);
}

.home-window_content > .home-window_section {
  padding-top: calc(45vh - var(--hw-content-top, 5.5rem));
}

.home-window_pane.is-section-portfolio .home-window_content > .home-window_section:nth-child(2),
.home-window_pane.is-section-profile .home-window_content > .home-window_section:first-child {
  padding-top: calc(45vh - var(--hw-content-top, 2.25rem));
}

.home-window_content .info-section,
.home-window_content .project-item:first-child {
  padding-top: 0;
}

.home-window_content .project-item {
  padding-top: 6vh;
}

.home-window_content .project-desc {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: var(--rhythm-gap);
  row-gap: 0;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 2.5rem;
}

.home-window_content .project-desc > .project-title,
.home-window_content .project-desc > .project-about {
  grid-column: 1 / -1;
  padding-left: var(--modal-text-inset);
  padding-right: var(--modal-text-inset);
}

.home-window_content .project-desc > .project-about {
  max-width: none;
  padding-right: var(--prose-inset-right);
}

.info-wrapper {
  display: flex;
  flex-direction: column;
}

.projects-wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  padding-bottom: 0;
}

.project-item {
  width: 100%;
  height: auto;
  padding-top: 45vh;
  border-top: 0;
  content-visibility: auto;
  contain-intrinsic-size: auto 1px auto 1500px;
}

.project-desc {
  z-index: 1;
  width: 100%;
  min-height: 0;
  padding: 0 0 2.35rem;
}

.project-title {
  display: grid;
  grid-template-columns: 1fr auto;
  flex-direction: column;
  gap: 0.315rem 0.63rem;
  align-items: baseline;
  padding: 0 0.625rem;
  font-size: 0.7rem;
  line-height: 1;
}

.project-title.without-top-padding {
  padding-top: 0;
}

.project-title .body.loose {
  line-height: 1.3;
}

.project-title .job-title {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.project-title .display {
  line-height: 1.3;
}

.project-title .link-icon {
  margin-left: 0.315rem;
  vertical-align: middle;
}

.job-title,
.display {
  color: var(--text);
  font-size: 0.7rem;
  font-weight: 400;
}

.job-title {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.display {
  line-height: 1.3;
}

.job-title span {
  color: var(--dim);
}

.body {
  color: var(--text);
  font-size: 0.7rem;
  line-height: 1.44;
  text-align: left;
}

.body.loose {
  line-height: 1.5;
}

.dim {
  color: var(--text);
  opacity: 0.5;
  z-index: 1;
}

.faint {
  color: var(--dim);
}

.project-about {
  display: flex;
  flex-direction: column;
  gap: 1.7rem;
  max-width: none;
  margin-top: 0;
  padding: 1.26rem 3.752rem 0 0.625rem;
}

.project-about .body.loose {
  line-height: 1.3;
}

.featured-wrp {
  display: flex;
  flex-direction: column;
  gap: 0.63rem;
}

.job-desc-list {
  display: flex;
  flex-direction: column;
  gap: 0.315rem;
  padding-left: 0.63rem;
}

.job-desc-list-item {
  display: flex;
  gap: 0.315rem;
  align-items: flex-start;
  justify-content: flex-start;
}

.dot-icon-wrp {
  flex: 0 0 auto;
  width: 0.125rem;
  height: 0.125rem;
  margin-top: 0.35rem;
  border-radius: 50%;
  background: #f2f2ef;
  opacity: 0.4;
}

.project-images {
  display: block;
  background: transparent;
}

.project-images > img {
  --frame-ar: 16 / 9;
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: var(--frame-ar);
  min-height: 0;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  object-fit: fill;
  filter: none;
  transition: opacity 0.35s;
  animation: none;
  cursor: auto;
}

.project-images > img[data-loaded="false"] {
  background: var(--skeleton-shimmer);
  background-size: 200% 100%;
  animation: vshShimmer 1.4s linear infinite;
}

.project-images > img:nth-child(3n + 2) {
  --frame-h: 128vh;
}

.general-description {
  display: grid;
  grid-template-columns: 1fr;
  column-gap: 0.63rem;
  min-height: 0;
  padding: 0;
}

@media (min-width: 521px) {
  .home-window_pane.is-section-profile .general-description {
    min-height: 6.082rem;
  }
}

.info-section,
.profile {
  display: flex;
  flex-direction: column;
}

.info-section {
  z-index: 3;
}

.profile {
  gap: 2.506rem;
}

.general-description > .display {
  grid-column: 1 / -1;
  padding: 0 0.626rem;
}

.general-description p {
  margin: 0;
  color: var(--text);
  font-size: inherit;
  line-height: inherit;
}

.profile-title-wrp {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 0.63rem;
  margin: 0;
  padding: 0;
}

.profile-title-wrp .body {
  padding: 0 0.626rem;
  font-size: 0.7rem;
  line-height: 1;
}

.spacer-md {
  margin-top: 0;
  height: 2.5rem;
}

.profile-block {
  padding: 2.3rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.profile-project-block {
  padding-top: 0;
}

.profile-block > h2 {
  margin: 0 0 2.2rem;
  padding: 0 0.5rem;
  font-weight: 400;
}

.job-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 0.63rem;
  row-gap: 0;
  padding: var(--rhythm-gap) 0 2.5rem;
  border-top: 1px solid var(--line);
  color: #fff;
}

.job-head,
.job-name {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column-reverse;
  justify-content: space-between;
  gap: 0.315rem;
  margin: 0;
  padding: 0 var(--modal-text-inset);
}

.job-title-text {
  display: flex;
  flex-direction: column;
}

.job-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.63rem;
  color: var(--dim);
  font-family: var(--micro);
  font-size: 0.7rem;
  line-height: 1;
}

.job-meta .body.loose {
  line-height: 1.3;
}

.job-desc > .body.loose,
.job-desc-list-item .body.loose {
  line-height: 1.3;
}

.job-desc > .body.loose {
  min-height: 6.369rem;
}

.job-items-container .job-row:nth-child(1) .job-desc-list {
  min-height: 14.631rem;
}

.job-items-container .job-row:nth-child(2) .job-desc-list {
  min-height: 9.45rem;
}

.job-items-container .job-row:nth-child(3) .job-desc-list {
  min-height: 8.538rem;
}

.job-items-container .job-row:nth-child(4) .job-desc-list {
  min-height: 8.856rem;
}

.job-items-container .job-row:nth-child(5) .job-desc-list {
  min-height: 4.581rem;
}

.job-title-text .link-icon {
  width: 0.75rem;
  height: 0.75rem;
  margin-left: 0.315rem;
  color: var(--text-invert);
  opacity: 0;
  vertical-align: middle;
}

.job-desc {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  gap: 1.7rem;
  padding: var(--section-gap) var(--modal-text-inset) 0;
}

.home-window_content .job-row > .job-desc {
  padding-right: var(--prose-inset-right);
  max-width: none;
}

.job-row > .job-desc-list {
  margin-top: 1.35rem;
}

#glass-defs {
  position: fixed;
  width: 0;
  height: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.cursor-hint {
  position: fixed;
  z-index: 10000;
  top: 0;
  left: 0;
  padding: 4px 7px;
  color: #fff;
  font-family: var(--micro);
  font-size: 0.7rem;
  line-height: 1;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  mix-blend-mode: difference;
  transform: translate3d(-9999px, -9999px, 0);
  translate: 0 -100%;
  transition: opacity 180ms cubic-bezier(0.215, 0.61, 0.355, 1);
  will-change: transform;
}

.cursor-hint.is-visible {
  opacity: 1;
}

.cursor-hint_mask {
  display: inline-block;
  min-width: 3em;
  min-height: 1.2em;
  line-height: 1.2;
  text-align: center;
  vertical-align: top;
}

.cursor-hint_layer {
  display: block;
  line-height: 1.2;
  text-align: center;
}

.main-cursor-hint .cursor-hint_mask {
  min-width: 16.5em;
}

.main-cursor-hint .cursor-hint_coords {
  display: none;
  min-width: 6em;
  font-variant-numeric: tabular-nums;
  text-align: left;
  white-space: nowrap;
}

.main-cursor-hint.is-coords .cursor-hint_mask {
  display: none;
}

.main-cursor-hint.is-coords .cursor-hint_coords {
  display: inline-block;
}

.compact-project-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  padding: 0.8rem 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text);
  font-size: 0.72rem;
}

.compact-project-row span {
  color: var(--dim);
  font-family: var(--micro);
  font-size: 0.68rem;
}

.content__img {
  --trail-unit: 15rem;
  --img-width: var(--trail-unit);
  --img-height: auto;
  position: absolute;
  top: 0;
  left: 0;
  width: var(--img-width);
  height: var(--img-height);
  pointer-events: none;
  overflow: hidden;
  backface-visibility: hidden;
  opacity: 0;
  will-change: transform, filter;
  background-color: rgba(13, 13, 13, 0);
  background-size: cover;
  background-position: center;
}

.content__img--horizontal {
  --img-width: var(--trail-unit);
  --img-height: calc(var(--trail-unit) * 3 / 4);
}

.content__img--vertical {
  --img-width: calc(var(--trail-unit) * 3 / 4);
  --img-height: var(--trail-unit);
}

.content__img.is-live {
  opacity: 0.74;
  transform: translate(-50%, -50%) scale(1);
  transition: opacity 210ms ease, transform 520ms ease;
}

.content__img-inner {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  will-change: transform;
  image-rendering: crisp-edges;
  image-rendering: -webkit-optimize-contrast;
}

body[data-magic="off"] .content__img {
  display: none;
}

body.magic-off .content__img {
  display: none;
}

@media screen and (max-width: 991px) {
  .content__img {
    --trail-unit: 13rem;
  }
}

@media screen and (max-width: 767px) {
  .content__img {
    --trail-unit: 11rem;
  }
}

@media screen and (max-width: 479px) {
  .content__img {
    --trail-unit: 9rem;
  }
}

.image-modal {
  --image-modal-pad: 1.5rem;
  position: fixed;
  z-index: var(--z-modal);
  inset: 0;
  display: block;
  padding: 0;
  background: transparent;
  opacity: 0;
  pointer-events: none;
  backdrop-filter: blur(0);
  -webkit-backdrop-filter: blur(0);
  transition:
    backdrop-filter 1s var(--open-ease),
    -webkit-backdrop-filter 1s var(--open-ease);
}

.image-modal.is-open,
.image-modal[aria-hidden="false"] {
  opacity: 1;
  pointer-events: auto;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.image-modal.is-closing {
  pointer-events: none;
  backdrop-filter: blur(0);
  -webkit-backdrop-filter: blur(0);
  transition:
    backdrop-filter 0.35s cubic-bezier(0.4, 0, 1, 1),
    -webkit-backdrop-filter 0.35s cubic-bezier(0.4, 0, 1, 1);
}

body.image-modal-locked {
  overflow: hidden;
}

.image-modal_stage {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  cursor: auto;
  overflow: hidden;
}

.image-modal.is-full .image-modal_stage {
  display: block;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.image-modal_inner {
  position: relative;
  transform-origin: center center;
  will-change: transform;
}

.image-modal.is-full .image-modal_inner {
  width: min(100%, calc(100vw - var(--image-modal-pad) * 2));
  margin: var(--image-modal-pad) auto;
}

.image-modal_img {
  display: block;
  width: auto;
  height: auto;
  max-width: calc(100vw - var(--image-modal-pad) * 2);
  max-height: calc(100svh - var(--image-modal-pad) * 2);
  min-height: auto;
  object-fit: fill;
  cursor: pointer;
  user-select: none;
}

.image-modal.is-full .image-modal_img {
  width: 100%;
  max-width: none;
  max-height: none;
}

.reveal {
  opacity: 0;
  transform: translateY(0.8rem);
  transition:
    opacity 700ms ease var(--delay, 0ms),
    transform 700ms ease var(--delay, 0ms);
}

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

.terminal:not(.xterm) {
  display: none;
  position: fixed;
  z-index: 10020;
  inset: 0;
  overflow: hidden;
  background: #000;
  color: #dffdcc;
  font-family: var(--micro);
}

html.terminal-on {
  overflow: hidden;
}

html.terminal-on .terminal:not(.xterm) {
  display: block;
}

.terminal__xterm {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  pointer-events: none;
}

.terminal:not(.xterm) .xterm {
  position: relative;
  z-index: 10020;
  width: 100%;
  height: 504px;
  overflow: hidden;
  background: #000;
  font-family: var(--micro);
  pointer-events: none;
}

.terminal:not(.xterm) .xterm-viewport {
  position: absolute;
  inset: 0;
  height: 504px;
  overflow-x: auto;
  overflow-y: scroll;
}

.terminal:not(.xterm) .xterm-scrollable-element {
  position: relative;
  min-height: 504px;
  background-color: #000;
}

.terminal:not(.xterm) .xterm-screen {
  position: relative;
}

.terminal:not(.xterm) .xterm-helpers {
  position: absolute;
  inset: 0 auto auto 0;
  width: 0;
  height: 0;
}

.terminal:not(.xterm) .composition-view {
  display: none;
  position: absolute;
}

.terminal:not(.xterm) .xterm-width-cache-measure-container {
  position: absolute;
  visibility: hidden;
  pointer-events: none;
}

.terminal:not(.xterm) .xterm-rows {
  font-size: 15px;
  line-height: normal;
}

.terminal:not(.xterm) .xterm-selection,
.terminal:not(.xterm) .xterm-decoration-container {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.terminal:not(.xterm) canvas {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.terminal.terminal--boot::before {
  content: "";
  position: absolute;
  z-index: 3;
  inset: 0;
  pointer-events: none;
  background: #000;
  animation: crtBootReveal 600ms ease-out forwards;
}

.terminal.terminal--boot > canvas {
  animation: crtBootWarm 600ms ease-out forwards;
}

.terminal.terminal--off > canvas {
  transform-origin: center center;
  animation: crtPowerOff 480ms cubic-bezier(0.5, 0, 0.75, 0) forwards;
}

.xterm-helper-textarea {
  position: absolute;
  padding: 0;
  border: 0;
  outline: 0;
  resize: none;
  opacity: 0;
  overflow: hidden;
  font-family: var(--micro);
  font-size: 11.2069px;
  white-space: nowrap;
  z-index: -5;
}

@keyframes crtBootReveal {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes crtBootWarm {
  from {
    filter: brightness(0.65);
  }
  to {
    filter: brightness(1);
  }
}

@keyframes crtPowerOff {
  0% {
    transform: scale(1);
    filter: brightness(1);
  }
  16% {
    transform: scaleX(1.01);
    filter: brightness(2.4);
  }
  46% {
    transform: scaleY(0.006);
    filter: brightness(3);
  }
  78% {
    transform: scale(0.1, 0.006);
    filter: brightness(3);
    opacity: 1;
  }
  to {
    transform: scale(0, 0.004);
    filter: brightness(3);
    opacity: 0;
  }
}

@keyframes loaderLine {
  from {
    transform: scaleX(0) scaleY(0.5);
  }
  to {
    transform: scaleX(1) scaleY(0.5);
  }
}

@keyframes vshShimmer {
  from {
    background-position: 200% 0;
  }
  to {
    background-position: -200% 0;
  }
}

@keyframes featuredRowIntro {
  from {
    height: 0.75rem;
  }
  to {
    height: 1.2rem;
  }
}

@keyframes stageDrift {
  from {
    transform: scale(1.02) translate3d(-0.5%, -0.4%, 0);
  }
  to {
    transform: scale(1.06) translate3d(0.6%, 0.5%, 0);
  }
}

@media screen and (max-width: 991px) {
  .navigation-top {
    grid-template-columns: var(--rhythm-cols);
    column-gap: var(--rhythm-gap);
  }

  .home-window-open .navigation-top {
    position: fixed;
    z-index: 9100;
  }

  .navigation-top > .nav-link {
    justify-self: start;
    width: auto;
    min-width: 1.24rem;
    max-width: 100%;
    padding: 0 0.315rem;
    overflow: visible;
    color: var(--text-invert);
  }

  .navigation-top > .nav-link--works,
  .navigation-top > .nav-link--profile {
    justify-self: stretch;
  }

  .nav-link {
    font-size: 0.7rem;
  }

  .hero-frame {
    right: var(--edge);
    bottom: var(--edge);
    left: var(--edge);
  }

  .hero-grid {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto 1fr auto;
    column-gap: var(--rhythm-gap);
    row-gap: var(--section-gap);
  }

  .hero-identity {
    grid-column: 1 / span 3;
    grid-row: 1;
    padding-left: 0.315rem;
  }

  .hero-list--design {
    grid-column: 1;
    grid-row: 2;
    align-self: auto;
    display: flex;
  }

  .hero-list--engineering {
    grid-column: 2;
    grid-row: 2;
    align-self: auto;
    display: flex;
  }

  .hero-list--featured {
    position: relative;
    left: auto;
    bottom: auto;
    grid-column: 3;
    grid-row: 2;
    align-self: start;
    justify-self: start;
    width: min(37.45vw, 9.125rem);
    min-width: 0;
  }

  .home-window-open .hero-list--featured {
    min-height: 0;
  }

  .home-window-open .hero-list--featured .featured-row {
    height: 0.751rem;
  }

  .bottom-bar {
    display: none;
  }

  .home-window_pane.is-section-portfolio,
  .home-window_pane.is-section-profile,
  .home-window_pane.is-fullscreen,
  .home-window_pane.is-expanded {
    left: var(--edge);
    right: var(--edge);
    top: var(--hw-top, 3rem);
    bottom: var(--edge);
    width: auto;
  }

  .home-window_fs {
    display: none;
    width: auto;
    height: var(--pill-box-h);
    aspect-ratio: 1 / 1;
    font-size: 0.7rem;
    line-height: 1;
  }

  .home-window_btn:not(.home-window_fs) {
    display: none;
    width: auto;
    height: var(--pill-box-h);
    aspect-ratio: auto;
    padding: 0 var(--text-inset);
    font-size: 0.7rem;
    line-height: 1;
  }

  .home-window_btn:not(.home-window_fs)::before {
    content: none;
  }

  .home-window_socials a,
  .home-window_socials button {
    height: var(--pill-box-h);
  }

  .project-desc {
    min-height: auto;
    padding-bottom: 2rem;
  }

  .project-title {
    justify-content: space-between;
    flex-direction: row;
  }

  .home-window_pane.is-section-portfolio .home-window_content > .home-window_section:nth-child(2),
  .home-window_pane.is-section-profile .home-window_content > .home-window_section:first-child {
    padding-top: calc(45vh - var(--hw-content-top, 2.25rem));
  }
}

@media (max-width: 520px) {
  :root {
    --edge: 0.625rem;
  }

  .navigation-top.no-fixed {
    position: relative;
  }

  .navigation-top {
    grid-template-columns: 1fr auto auto;
  }

  a.nav-link {
    padding: 0 0.315rem;
  }

  .nav-link--brand {
    font-size: 0.7rem;
  }

  .hero-content {
    flex: 1;
    height: auto;
    position: relative;
    top: 2.52rem;
    bottom: 0;
  }

  .hero-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto auto;
    column-gap: var(--rhythm-gap);
    row-gap: var(--section-gap);
  }

  .hero-identity {
    grid-column: 1 / -1;
    grid-row: 1;
    align-self: auto;
    justify-self: auto;
  }

  .hero-list--design {
    grid-column: 1;
    grid-row: 3;
    align-self: auto;
    justify-self: auto;
    margin-top: 0.74rem;
  }

  .hero-list--engineering {
    grid-column: 2;
    grid-row: 3;
    align-self: auto;
    justify-self: auto;
    margin-top: 0.74rem;
  }

  .hero-list--featured {
    position: fixed;
    left: var(--edge);
    bottom: var(--edge);
    z-index: 2;
    width: min(37.45vw, 9.125rem);
    min-width: 0;
  }

  .hero-video {
    position: absolute;
    inset: 0;
  }

  .general-description {
    min-height: 7.925rem;
  }

  .home-window_content .job-row > .job-desc,
  .home-window_content .project-desc > .project-about {
    padding-right: var(--modal-text-inset);
  }

  .job-desc > .body.loose {
    min-height: 6.388rem;
  }

  .job-items-container .job-row:nth-child(1) .job-desc-list {
    min-height: 19.225rem;
  }

  .job-items-container .job-row:nth-child(2) .job-desc-list {
    min-height: 10.381rem;
  }

  .job-items-container .job-row:nth-child(3) .job-desc-list {
    min-height: 9.469rem;
  }

  .job-items-container .job-row:nth-child(4) .job-desc-list {
    min-height: 8.875rem;
  }

  .job-items-container .job-row:nth-child(5) .job-desc-list {
    min-height: 4.594rem;
  }

  .job-head,
  .job-name,
  .compact-project-row {
    grid-template-columns: 1fr;
  }

  .job-meta {
    justify-items: start;
  }
}

@media (hover: none), (pointer: coarse) {
  .content__img {
    display: none;
  }
}

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

  .content__img {
    display: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
