@font-face {
  font-family: Manrope;
  src: url("/assets/fonts/manrope.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
}
@font-face {
  font-family: "DM Mono";
  src: url("/assets/fonts/dm-mono.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Mrs Saint Delafield";
  src: url("/assets/fonts/mrs-saint-delafield.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
:root {
  --bg: #161714;
  --panel: #211c1c;
  --fg: #f1f1e9;
  --muted: #aaada2;
  --accent: #ff4242;
  --accent-hover: #ff6868;
  --line: #3b3333;
  --mono: "DM Mono", ui-monospace, SFMono-Regular, Consolas, monospace;
  --sans: Manrope, Arial, sans-serif;
  color-scheme: dark;
}
:root[data-theme="amber"] {
  --accent: #ffcb79;
  --accent-hover: #ffdc9f;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 28px;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
}
body:has(dialog[open]) {
  overflow: hidden;
}
::selection {
  background: var(--accent);
  color: var(--bg);
}
button,
input {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
  color: inherit;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
h1,
h2,
h3,
p,
figure {
  margin: 0;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 5px;
}
[hidden] {
  display: none !important;
}
.wrap {
  width: min(1240px, calc(100% - 96px));
  margin-inline: auto;
}
.eyebrow {
  font-family: var(--mono);
  font-size: 10px;
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: 1.3px;
}
.eyebrow > span:first-child:not(.status-dot) {
  color: var(--muted);
}
.status-dot {
  display: inline-block;
  flex: none;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.section-space {
  padding-block: 90px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 44px;
  font-size: 12px;
  font-weight: 600;
  border: 0;
  padding: 0;
  background: none;
}
.text-link:hover {
  color: var(--accent);
}
.text-link > span {
  font-size: 20px;
  font-weight: 400;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  min-height: 52px;
  padding: 12px 22px;
  font-size: 12px;
  font-weight: 700;
  border: 1px solid transparent;
  border-radius: 4px;
  transition:
    transform 160ms,
    background 160ms;
}
.button:hover {
  transform: translateY(-3px);
}
.button > span {
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
}
.button-primary {
  background: var(--accent);
  color: #201616;
}
.button-primary:hover {
  background: var(--accent-hover);
}
.round-arrow {
  display: grid;
  place-items: center;
  flex: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 25px;
  line-height: 1;
}
.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  padding: 12px;
  background: var(--accent);
  color: var(--bg);
  z-index: 20;
  transform: translateY(-200%);
}
.skip-link:focus {
  transform: none;
}

/* Navigation */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 106px;
  border-bottom: 1px solid var(--line);
}
.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -1.2px;
  white-space: nowrap;
}
.wordmark svg {
  width: 26px;
  height: 26px;
  color: var(--accent);
}
.wordmark-dot {
  align-self: flex-start;
  padding-top: 5px;
  margin-left: -5px;
  font-size: 16px;
  letter-spacing: 0;
  font-weight: 400;
  color: var(--accent);
}
.main-nav {
  display: flex;
  gap: 34px;
  margin-left: auto;
  margin-right: 45px;
}
.main-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-width: 44px;
  min-height: 44px;
  font-size: 12px;
}
.main-nav a:hover {
  color: var(--accent);
}
.main-nav span {
  font-family: var(--mono);
  font-size: 8px;
  color: var(--muted);
}
.main-nav a:last-child span {
  font-size: 14px;
  color: var(--accent);
}
.terminal-launch {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  padding: 8px 12px;
  border: 1px solid #514242;
  border-radius: 4px;
  background: none;
  font-size: 11px;
}
.terminal-launch:hover {
  border-color: var(--accent);
}
.terminal-launch > span:first-child {
  font-family: var(--mono);
  font-size: 16px;
  color: var(--accent);
}
kbd {
  padding: 0 6px;
  border: 1px solid var(--line);
  border-radius: 2px;
  color: var(--muted);
  font: 10px var(--mono);
}

/* A physical object, a digital hello */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  min-height: 680px;
  gap: 20px;
  padding-block: 48px 32px;
}
.hero-copy {
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  margin-bottom: 36px;
  color: var(--muted);
}
h1 {
  line-height: 1;
  letter-spacing: -0.065em;
  font-weight: 500;
}
.hero-greeting {
  display: block;
  font-size: clamp(44px, 5.4vw, 76px);
  letter-spacing: -0.06em;
}
.hero-name {
  position: relative;
  display: inline-block;
  font-size: clamp(92px, 12.3vw, 172px);
  letter-spacing: -0.075em;
  font-weight: 600;
  line-height: 1.15;
}
.marker-underline {
  position: absolute;
  width: 94%;
  height: auto;
  left: 4%;
  bottom: -5px;
  transform: rotate(-2deg);
}
.hero-description {
  color: var(--muted);
  max-width: 360px;
  font-size: 17px;
  line-height: 1.8;
  margin-top: 34px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 30px;
}
.employment {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  align-items: start;
  gap: 24px;
  max-width: 360px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.employment-logo .eyebrow {
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 1px;
}
.employment-logo img {
  width: 86px;
  margin-top: 9px;
}
.employment-title {
  font-size: 13px;
  font-weight: 600;
}
.employment-type {
  color: var(--muted);
  font: 10px/1.8 var(--mono);
}
.employment-video {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  font-size: 12px;
}
.employment-video > span {
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: var(--muted);
}
.employment-video:hover {
  color: var(--accent);
}
.employment-video svg {
  flex: none;
  width: 32px;
  height: 24px;
  stroke: var(--accent);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.location {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font: 10px/1.8 var(--mono);
  color: var(--muted);
  margin-top: 42px;
}
.hero-art {
  position: relative;
  align-self: center;
  justify-self: end;
  width: 100%;
  max-width: 570px;
}
.maker-portrait {
  width: 100%;
}
.hero-disk {
  position: absolute;
  z-index: 2;
  bottom: 66px;
  left: -8%;
  width: clamp(128px, 15vw, 200px);
  padding: 8px;
  border: 0;
  background: none;
  transform: rotate(-10deg);
}
.hero-disk img {
  width: 100%;
  filter: drop-shadow(0 12px 10px #0009);
  transition: transform 200ms ease;
}
.hero-disk:hover img,
.hero-disk:focus-visible img {
  transform: translateY(-6px) rotate(6deg);
}
.disk-invitation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  font: 10px/1.5 var(--mono);
  color: var(--fg);
  white-space: nowrap;
  transform: rotate(10deg);
  text-shadow: 0 1px 4px #000;
}
.disk-invitation > span {
  color: #ff4242;
  font-size: 18px;
}
.hero-art figcaption {
  margin-inline: 5%;
  font: 11px/1.6 var(--mono);
  color: var(--muted);
}
.hero-art figcaption a {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  min-height: 44px;
}
.hero-art figcaption a:hover {
  color: var(--accent);
}
.art-arrow {
  font-size: 28px;
  color: var(--accent);
}
.system-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 18px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font: 9px/1.7 var(--mono);
  color: var(--muted);
}
.boot-status {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
}
.strip-end {
  font-size: 8px;
  letter-spacing: 1px;
  white-space: nowrap;
}

/* Work, with both sides out in the open */
.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 38px;
}
.section-heading h2 {
  margin-top: 12px;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 500;
  letter-spacing: -1.8px;
  line-height: 1.3;
}
.section-heading .eyebrow {
  color: #d1d4c8;
}
.section-aside {
  font-size: 12px;
  color: var(--muted);
}
.work-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 46px 28px;
}
.work-card {
  min-width: 0;
}
.work-visual {
  display: block;
  height: 420px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}
.work-visual:focus-visible {
  outline-offset: 5px;
}
.visual-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
  padding: 20px 26px;
  font: 9px var(--mono);
  letter-spacing: 1px;
}
.visual-topline .round-arrow {
  width: 32px;
  height: 32px;
  font-size: 21px;
}
.work-visual:hover .round-arrow {
  transform: rotate(45deg);
  transition: transform 180ms;
}
.visual-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 26px;
  background: #351c1c;
  color: #f4e9e3;
  font: 8px var(--mono);
  letter-spacing: 1px;
  z-index: 3;
}
.visual-footer > span {
  font-size: 20px;
}
.orden-visual {
  background: #efdad1;
  color: #3b2222;
}
.orden-brand {
  font-size: 52px;
  font-weight: 800;
  letter-spacing: -4px;
  line-height: 1;
  margin: 8px 30px 0;
}
.orden-brand > span {
  font: 13px var(--mono);
  vertical-align: top;
  display: inline-block;
  padding-top: 8px;
  margin-left: 5px;
}
.orden-tagline {
  font-size: 27px;
  line-height: 1.2;
  letter-spacing: -1px;
  margin: 16px 30px 0;
}
.orden-tagline em {
  font-family: Georgia, serif;
  font-size: 30px;
  font-weight: 400;
}
.orden-files {
  position: absolute;
  width: 66%;
  height: 265px;
  right: -18px;
  bottom: -8px;
  transform: rotate(-10deg);
  transition: transform 250ms;
}
.orden-visual:hover .orden-files {
  transform: rotate(-6deg) translateY(-7px);
}
.folder {
  position: absolute;
  width: 100%;
  height: 210px;
  border: 1px solid #78504c;
  border-radius: 0 10px 6px 6px;
  box-shadow: 0 3px 15px #3516161a;
  padding: 18px 20px;
  font: 8px var(--mono);
}
.folder::before {
  content: "";
  position: absolute;
  top: -18px;
  left: -1px;
  width: 45%;
  height: 18px;
  background: inherit;
  border: 1px solid #78504c;
  border-bottom: 0;
  border-radius: 6px 18px 0 0;
}
.folder-back {
  background: #d99791;
  top: -3px;
  left: 22px;
  transform: rotate(-6deg);
}
.folder-middle {
  background: #efb6ae;
  top: 34px;
  left: 2px;
}
.folder-front {
  background: #fff0e7;
  top: 77px;
  left: -17px;
}
.folder-front div {
  display: flex;
  gap: 5px;
  margin-top: 28px;
}
.folder-front i {
  display: block;
  width: 20px;
  height: 20px;
  border: 1px solid #87524c;
  border-radius: 50%;
}
.folder-front i:nth-child(2) {
  background: #ff7474;
}
.folder-front i:nth-child(3) {
  background: #6d2e2e;
}
.folder-front b {
  display: block;
  font: 18px/1.25 var(--sans);
  margin-top: 16px;
  letter-spacing: -0.5px;
}
.folder-mark {
  font: 54px/1 var(--sans);
  font-weight: 800;
  letter-spacing: -6px;
  position: absolute;
  right: 26px;
  bottom: 45px;
}
.project-visual {
  container-type: inline-size;
}
.idk-visual {
  background: #f0e6d8;
  color: #9b2f24;
}
.idk-wordmark {
  padding-left: 26px;
  font:
    italic 700 clamp(70px, 22cqw, 120px) / 1 Georgia,
    serif;
  letter-spacing: -8px;
}
.idk-wordmark span {
  color: #77613e;
}
.idk-tagline {
  position: absolute;
  top: 88px;
  right: 26px;
  font:
    32px/1.1 Georgia,
    serif;
  letter-spacing: -1px;
}
.recipe-note {
  position: absolute;
  right: 7%;
  bottom: 24px;
  width: 58%;
  padding: 22px 18px;
  color: #40342d;
  background: #fffaf3;
  box-shadow: 0 8px 18px #654c3926;
  transform: rotate(-7deg);
}
.recipe-note > span,
.recipe-note b {
  font: 8px/1.5 var(--mono);
}
.recipe-note p {
  padding-block: 10px;
  border-bottom: 1px solid #dfd4c4;
  font: 11px/1.4 var(--sans);
}
.recipe-note p::before {
  content: "+";
  margin-right: 7px;
  color: #9b2f24;
}
.recipe-note b {
  display: block;
  margin-top: 16px;
  color: #9b2f24;
}
.pokemon-visual {
  background: #273337;
  color: #f3e8dd;
}
.pokemon-wordmark {
  margin: 6px 26px 0;
  font: 700 clamp(31px, 8cqw, 42px) / 1.2 var(--sans);
  letter-spacing: -2px;
}
.pokemon-wordmark > span {
  color: #ff7770;
}
.pokemon-tagline {
  margin: 8px 26px;
  font:
    16px/1.4 Georgia,
    serif;
}
.pokemon-deck {
  position: absolute;
  left: 50%;
  bottom: 30px;
  width: 154px;
  height: 212px;
  transform: translateX(-35%);
}
.collector-card {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 10px;
  border: 6px solid #d8be83;
  border-radius: 9px;
  background: #f5ebd5;
  color: #35352e;
  box-shadow: 0 10px 24px #0004;
  transform: rotate(10deg);
}
.collector-card > span {
  font: 6px/1.5 var(--mono);
}
.collector-card > b {
  font:
    700 17px/1.1 Georgia,
    serif;
}
.collector-card-back {
  background: repeating-linear-gradient(
    45deg,
    #375263,
    #375263 8px,
    #304859 8px,
    #304859 16px
  );
  transform: translate(-38px, -6px) rotate(-13deg);
}
.collector-art {
  display: grid;
  place-items: center;
  flex: 1;
  background: #d1d6c4;
}
.pokeball {
  position: relative;
  width: 60px;
  height: 60px;
  border: 3px solid #35352e;
  border-radius: 50%;
  background: linear-gradient(
    #db443b 46%,
    #35352e 46%,
    #35352e 54%,
    #fff8e9 54%
  );
  transform: rotate(-18deg);
}
.pokeball::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 3px solid #35352e;
  border-radius: 50%;
  background: #fff8e9;
}
.photo-visual,
.default-visual {
  background: #292120;
  color: #f3e8dd;
}
.photo-wordmark,
.project-wordmark {
  position: relative;
  z-index: 2;
  margin: 8px 26px;
  font:
    54px/0.95 Georgia,
    serif;
  letter-spacing: -2px;
}
.photo-strips {
  position: absolute;
  right: 11%;
  top: 100px;
  width: 34%;
  max-width: 165px;
}
.photo-strip {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 7px;
  padding: 9px 9px 16px;
  background: #faf2e8;
  box-shadow: 0 12px 24px #0005;
  transform: rotate(11deg);
}
.photo-strip > span {
  display: grid;
  place-items: center;
  height: 66px;
  background: #664b4a;
  color: #faf2e8;
  font:
    italic 36px Georgia,
    serif;
}
.photo-strip > span:nth-child(2) {
  background: #9b6460;
}
.photo-strip > span:nth-child(3) {
  background: #383230;
}
.photo-strip b {
  color: #40342d;
  font: 6px/1.5 var(--mono);
  text-align: center;
}
.photo-strip-back {
  position: absolute;
  inset: 5px 0 auto;
  z-index: 0;
  transform: rotate(-13deg) translateX(-43%);
}
.recipe-note,
.collector-card,
.photo-strip {
  transition: transform 320ms cubic-bezier(0.2, 0.7, 0.3, 1);
}
@media (prefers-reduced-motion: no-preference) {
  .work-card:is(:hover, :focus-within, :active) .recipe-note {
    transform: rotate(-3deg) translateY(-7px);
  }
  .work-card:is(:hover, :focus-within, :active) .collector-card {
    transform: translate(6px, -5px) rotate(14deg);
  }
  .work-card:is(:hover, :focus-within, :active) .collector-card-back {
    transform: translate(-44px, -8px) rotate(-18deg);
  }
  .work-card:is(:hover, :focus-within, :active) .photo-strip {
    transform: rotate(6deg) translateY(-7px);
  }
  .work-card:is(:hover, :focus-within, :active) .photo-strip-back {
    transform: rotate(-20deg) translate(-49%, -5px);
  }
}
.work-caption {
  padding: 21px 0 0;
}
.caption-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}
.caption-title h3 {
  font-size: 19px;
  line-height: 1.4;
  letter-spacing: -0.5px;
  font-weight: 500;
}
.pill {
  display: inline-flex;
  padding: 4px 9px;
  border: 1px solid #554747;
  border-radius: 20px;
  font: 8px var(--mono);
  white-space: nowrap;
  color: var(--muted);
}
.work-caption > p {
  font-size: 12px;
  line-height: 1.8;
  color: var(--muted);
  margin-top: 11px;
  max-width: 450px;
}
.translation {
  color: var(--fg);
}
.caption-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  margin-top: 14px;
}
.caption-bottom > span {
  font: 8px/1.5 var(--mono);
  color: var(--muted);
}
.caption-bottom .text-link {
  font-size: 10px;
  gap: 10px;
  white-space: nowrap;
}

.brands-section {
  padding-block: 36px 40px;
  border-bottom: 1px solid var(--line);
}
.brands-section h2 {
  color: var(--muted);
  font-size: 9px;
}
.brands-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand-toggle {
  flex: none;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font: 9px var(--mono);
  cursor: pointer;
}
.brand-toggle:hover {
  color: var(--fg);
  border-color: var(--muted);
}
.brand-marquee {
  overflow: hidden;
  margin-top: 18px;
  mask-image: linear-gradient(
    to right,
    transparent,
    #000 24px,
    #000 calc(100% - 24px),
    transparent
  );
}
.brand-track {
  display: flex;
  width: max-content;
  transform: translate3d(0, 0, 0);
}
.brand-track[data-ready="true"] {
  animation: brand-roll 42s linear infinite;
}
.brand-track[data-paused="true"] {
  animation-play-state: paused;
}
.brand-list {
  display: flex;
  flex: none;
  align-items: center;
  gap: 64px;
  list-style: none;
  padding: 0 64px 0 0;
  margin: 0;
}
.brand-list li {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 160px;
  min-height: 72px;
  color: #fff;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.8px;
}
.brand-list img {
  display: block;
  width: 100%;
  height: 48px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
@keyframes brand-roll {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}
/* Video showcase */
.content-section {
  padding-top: 0;
}
.content-intro {
  color: var(--muted);
  max-width: 670px;
  font-size: 13px;
  margin-top: -20px;
}
.sample-note {
  font: 9px/1.7 var(--mono);
  color: var(--muted);
  margin-block: 24px 14px;
}
.featured-grid {
  display: grid;
  gap: 0;
}
.featured-piece {
  min-width: 0;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.video-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(32px, 7vw, 100px);
  padding-block: 30px;
}
.video-stage {
  min-width: 0;
}
.phone-shell {
  width: min(100%, 366px);
  margin-inline: auto;
  border: 1px solid #8d8d88;
  border-radius: 48px;
  padding: 9px;
  background: linear-gradient(145deg, #737570, #20211e 38%, #575953);
  box-shadow:
    12px 18px 0 #ff424215,
    0 24px 48px #0005;
}
.phone-screen {
  overflow: hidden;
  border-radius: 39px;
  background: #080908;
  border: 1px solid #151615;
}
.phone-top,
.phone-bottom {
  display: grid;
  place-items: center;
  height: 30px;
}
.phone-top > span {
  width: 64px;
  height: 7px;
  border-radius: 20px;
  background: #30322e;
}
.phone-bottom > span {
  width: 92px;
  height: 4px;
  border-radius: 10px;
  background: #c1c2bd;
}
.phone-player {
  position: relative;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  background: #0d0e0c;
}
.phone-player iframe,
.phone-player video {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: contain;
}
.phone-player iframe {
  transform-origin: top left;
}
.phone-placeholder {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 28px;
  background: linear-gradient(160deg, #411b1d, #171412 75%);
}
.phone-placeholder-copy {
  position: relative;
  z-index: 1;
}
.phone-placeholder .eyebrow {
  font-size: 8px;
  letter-spacing: 0.7px;
}
.phone-placeholder h3 {
  font-size: clamp(36px, 4vw, 62px);
  letter-spacing: -2px;
  font-weight: 600;
  line-height: 1.08;
  white-space: pre-line;
  color: #ff6868;
  margin-block: 30px;
}
.video-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}
.video-load {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  border: 0;
  border-radius: 3px;
  padding: 12px 18px;
  background: var(--fg);
  color: var(--bg);
  font: 12px var(--mono);
}
.video-load::before {
  content: "";
  width: 0;
  height: 0;
  border-block: 6px solid transparent;
  border-left: 9px solid currentColor;
}
.phone-hint {
  font: 10px/1.8 var(--mono);
  margin-top: 18px;
  color: var(--muted);
}
.video-source {
  min-height: 70px;
  text-align: center;
  margin-top: 18px;
}
.video-source p {
  max-width: 310px;
  margin-inline: auto;
  font-size: 10px;
  color: var(--muted);
}
.video-playlist {
  min-width: 0;
}
.playlist-intro {
  color: var(--muted);
  font-size: 14px;
  margin-block: 12px 20px;
}
.video-select {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 66px;
  gap: 22px;
  padding: 8px 10px;
  border: 1px solid transparent;
  border-radius: 3px;
  background: none;
  text-align: left;
}
.video-select[aria-pressed="true"] {
  background: #ff42420d;
  border-color: #ff4242;
}
.video-select[aria-pressed="true"]::after {
  content: "←";
  margin-left: auto;
}
.video-select:hover {
  background: #ffffff08;
}
.video-number {
  font: 19px var(--mono);
  color: var(--accent);
}
.video-kind {
  display: block;
  font: 9px var(--mono);
  color: var(--muted);
}
.piece-name {
  display: block;
  margin-top: 5px;
  font-size: 16px;
  font-weight: 600;
}
.piece-note {
  font-size: 11px;
  line-height: 1.7;
  color: var(--muted);
  margin: 8px 0 0 55px;
}
.piece-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font: 9px var(--mono);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.piece-placeholder {
  display: block;
  margin-top: 8px;
  font: 8px var(--mono);
  color: var(--muted);
}
.featured-piece .piece-link,
.piece-placeholder {
  margin-left: 55px;
}
.player-note {
  margin-top: 20px;
  font: 10px/1.8 var(--mono);
  color: var(--muted);
}
.social-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  padding-block: 28px;
  margin-top: 30px;
  border-bottom: 1px solid var(--line);
}
.social-row > .eyebrow {
  color: var(--muted);
  font-size: 8px;
}
#social-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px;
}
.social-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font: 10px var(--mono);
}
span.social-link {
  color: var(--muted);
}

/* Personal, rather than a CV */
.about-section {
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  padding-top: 10px;
  gap: 65px;
}
.about-label {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.about-label > .eyebrow:last-child {
  color: var(--muted);
  font-size: 8px;
}
.about-symbol {
  font-size: 134px;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: -15px;
  line-height: 1.35;
}
.about-symbol span {
  color: #727866;
}
.about-copy h2 {
  font-size: clamp(27px, 3vw, 42px);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -1.6px;
}
.about-copy h2 span {
  color: var(--muted);
}
#bio {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
  margin-top: 25px;
}
#bio p + p {
  margin-top: 14px;
}
.about-signoff {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 25px;
  margin-top: 24px;
}
.signature {
  position: relative;
  display: inline-block;
  font:
    400 clamp(64px, 5.5vw, 78px) / 1.3 "Mrs Saint Delafield",
    cursive;
  color: var(--accent);
  transform: rotate(-6deg);
}
.signature svg {
  position: absolute;
  width: 100%;
  height: 18px;
  left: 0;
  bottom: 9px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4px;
  stroke-linecap: round;
}
.about-signoff .eyebrow {
  font-size: 8px;
  color: var(--muted);
}
.stack-section {
  display: flex;
  align-items: center;
  gap: 35px;
  padding-block: 26px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 90px;
}
.stack-section h2 {
  font-size: 8px;
  color: var(--muted);
  white-space: nowrap;
}
.stack-list {
  display: flex;
  flex: 1;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 24px;
  font-size: 12px;
}
.stack-list span::before {
  content: "+";
  color: var(--accent);
  margin-right: 9px;
  font-family: var(--mono);
}
.stack-section .text-link {
  font: 10px var(--mono);
  white-space: nowrap;
}

/* Leave the conversation open */
.contact-section {
  border-radius: 10px;
  background: var(--accent);
  color: #201616;
  padding: 38px 46px 30px;
  margin-bottom: 34px;
}
.contact-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.contact-top .eyebrow {
  font-size: 8px;
}
.contact-top .eyebrow > span:first-child {
  color: #301616;
}
.contact-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 36px;
}
.contact-heading h2 {
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 500;
  line-height: 1.03;
  letter-spacing: -4px;
}
.contact-heading h2 > span {
  font-family: Georgia, serif;
  font-style: italic;
}
.contact-arrow {
  font-size: 126px;
  line-height: 1;
  font-weight: 400;
}
.contact-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-top: 35px;
  padding-top: 25px;
  border-top: 1px solid #20161655;
}
.contact-bottom p {
  font-size: 12px;
}
#contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}
.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  font: clamp(14px, 1.5vw, 18px) / 1.5 var(--mono);
  text-decoration: underline;
  text-underline-offset: 4px;
}
span.contact-link {
  text-decoration: none;
}
.contact-link .token {
  color: inherit;
}
.contact-placeholder-note {
  font: 8px/1.6 var(--mono);
  margin-top: 18px;
}
.contact-section :focus-visible {
  outline-color: #201616;
}
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-block: 0 28px;
}
.site-footer .wordmark {
  font-size: 17px;
}
.site-footer p {
  font: 9px var(--mono);
  color: var(--muted);
}
.site-footer .text-link {
  font-size: 10px;
}

/* Optional terminal */
.terminal {
  width: min(820px, calc(100% - 32px));
  max-height: calc(100dvh - 32px);
  padding: 0;
  border: 1px solid #6b5050;
  border-radius: 10px;
  background: var(--bg);
  color: var(--fg);
  box-shadow: 0 30px 100px #0009;
  overflow: hidden;
}
.terminal::backdrop {
  background: #0b0808ba;
  backdrop-filter: blur(7px);
}
.terminal-chrome {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 8px 12px 8px 22px;
  background: #292121;
  border-bottom: 1px solid var(--line);
}
.terminal-chrome h2 {
  display: flex;
  align-items: center;
  gap: 10px;
  font: 12px var(--mono);
}
.terminal-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}
.terminal-controls button {
  min-width: 44px;
  min-height: 44px;
  background: none;
  border: 0;
}
.theme-toggle {
  font: 10px var(--mono);
  color: var(--accent);
}
.terminal-close {
  font-size: 28px;
  font-weight: 400;
}
.terminal-body {
  position: relative;
  display: flex;
  flex-direction: column;
  max-height: calc(100dvh - 96px);
  padding: 20px;
  font: 12px/1.7 var(--mono);
}
.crt {
  pointer-events: none;
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(transparent 0 3px, #0001 3px 4px);
  z-index: 2;
}
.screen {
  height: 340px;
  min-height: 90px;
  flex: 1 1 auto;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 5px 6px 20px;
  scrollbar-color: #806060 var(--bg);
  scroll-behavior: auto;
}
.block {
  margin-bottom: 18px;
}
.line {
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}
.line--head {
  color: var(--muted);
  border-bottom: 1px dashed var(--line);
  padding-bottom: 6px;
  margin-bottom: 8px;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 1px;
}
.line--echo,
.token {
  color: var(--accent);
}
.line--echo {
  margin-top: 10px;
}
.line--dim,
.dim {
  color: var(--muted);
}
.line--error {
  color: #ffa58c;
}
.line--boot::before {
  content: "› ";
  color: var(--accent);
}
.list {
  padding-left: 20px;
  margin: 0;
}
.screen a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  overflow-wrap: anywhere;
}
.card {
  border-left: 2px solid var(--accent);
  background: var(--panel);
  padding: 12px;
  margin-block: 12px;
}
.card__title {
  font-weight: 600;
}
.card__meta {
  color: var(--muted);
  font-size: 10px;
  margin-block: 4px;
}
.kv {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 6px 15px;
}
.kv dt {
  color: var(--muted);
}
.kv dd {
  margin: 0;
  overflow-wrap: anywhere;
  min-width: 0;
}
.chips {
  display: flex;
  flex-wrap: wrap;
  flex: none;
  gap: 3px;
  padding-block: 9px;
  border-top: 1px solid var(--line);
}
.chip {
  min-width: 44px;
  min-height: 44px;
  padding: 8px 10px;
  border: 1px solid transparent;
  background: #292121;
  border-radius: 3px;
  color: var(--accent);
  font: 10px var(--mono);
}
.chip:hover {
  border-color: var(--accent);
}
.prompt {
  display: flex;
  flex: none;
  align-items: center;
  gap: 8px;
  padding: 4px 8px 4px 12px;
  border: 1px solid #906363;
  border-radius: 4px;
}
.prompt__label {
  white-space: nowrap;
  font-size: 11px;
  color: var(--muted);
}
.prompt__user {
  color: var(--accent);
}
.prompt__input {
  min-width: 0;
  width: 100%;
  background: none;
  border: 0;
  padding: 8px 0;
  color: var(--fg);
  font: 16px var(--mono);
}
.prompt:focus-within {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.prompt__input:focus {
  outline: none;
}
.prompt__input::placeholder {
  color: var(--muted);
  font-size: 12px;
}
.prompt__run {
  min-width: 44px;
  min-height: 44px;
  background: none;
  border: 0;
  color: var(--accent);
  font: 20px var(--mono);
}
.terminal-hint {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font: 8px/1.5 var(--mono);
  margin-top: 12px;
}
.noscript {
  padding-bottom: 30px;
  color: var(--muted);
  font-size: 12px;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

@media (min-width: 1550px) {
  .hero {
    min-height: 700px;
  }
}
@media (max-width: 1100px) {
  .wrap {
    width: calc(100% - 64px);
  }
  .hero {
    min-height: 580px;
  }
  .main-nav {
    margin-right: 10px;
    gap: 22px;
  }
  .work-visual {
    height: 360px;
  }
  .recipe-note {
    right: 7%;
    width: 64%;
    padding: 17px 12px;
  }
  .idk-tagline {
    top: 76px;
    font-size: 24px;
  }
  .photo-wordmark {
    font-size: clamp(36px, 11cqw, 46px);
  }
  .photo-strips {
    top: 156px;
    max-width: 120px;
  }
  .photo-strip {
    gap: 5px;
    padding: 7px 7px 11px;
  }
  .photo-strip > span {
    height: 38px;
    font-size: 28px;
  }
  .pokemon-wordmark {
    font-size: 34px;
  }
  .pokemon-deck {
    bottom: 18px;
    width: 140px;
    height: 184px;
  }
  .orden-files {
    bottom: -65px;
  }
  .orden-tagline {
    font-size: 24px;
  }
  .caption-title {
    align-items: flex-start;
  }
  .caption-title h3 {
    font-size: 17px;
  }
  .caption-bottom {
    flex-wrap: wrap;
    gap: 0;
  }
  .contact-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
}
@media (max-width: 700px) {
  .wrap {
    width: calc(100% - 40px);
  }
  .site-header {
    height: 80px;
    gap: 10px;
    flex-wrap: wrap;
  }
  .wordmark {
    font-size: 17px;
    gap: 5px;
  }
  .wordmark svg {
    width: 22px;
    height: 22px;
  }
  .main-nav {
    margin: 0 0 0 auto;
    gap: 16px;
  }
  .main-nav a {
    font-size: 11px;
  }
  .main-nav a:nth-child(2),
  .main-nav a span,
  .terminal-launch-label,
  .terminal-launch kbd {
    display: none;
  }
  .terminal-launch {
    padding: 8px;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 40px;
    padding-bottom: 0;
  }
  .hero-eyebrow {
    font-size: 9px;
    margin-bottom: 28px;
  }
  .hero-greeting {
    font-size: clamp(42px, 10vw, 58px);
  }
  .hero-name {
    font-size: clamp(98px, 25vw, 150px);
  }
  .marker-underline {
    bottom: -4px;
  }
  .hero-description {
    font-size: 15px;
    margin-top: 28px;
  }
  .hero-actions {
    margin-top: 24px;
    gap: 25px;
  }
  .button {
    min-height: 50px;
    font-size: 11px;
    gap: 20px;
    padding-inline: 17px;
  }
  .hero-actions .text-link {
    font-size: 11px;
    gap: 12px;
  }
  .location {
    margin-top: 25px;
    font-size: 9px;
    gap: 10px;
  }
  .hero-art {
    width: 100%;
    justify-self: center;
    max-width: 480px;
    margin-top: 22px;
  }
  .hero-art figcaption {
    font-size: 10px;
  }
  .hero-disk {
    left: 3%;
    width: 42%;
    max-width: 180px;
  }
  .disk-invitation {
    font-size: 9px;
    gap: 5px;
  }
  .art-arrow {
    font-size: 24px;
  }
  .system-strip {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 5px;
    padding-block: 15px;
    font-size: 8px;
    margin-top: 16px;
  }
  .boot-status {
    width: 100%;
  }
  .strip-end {
    display: none;
  }
  .section-space {
    padding-block: 56px;
  }
  .brands-section {
    padding-block: 26px;
  }
  .brand-list {
    gap: 48px;
    padding-right: 48px;
  }
  .brand-list li {
    width: 128px;
    min-height: 64px;
  }
  .section-heading {
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 25px;
    flex-direction: column;
  }
  .section-heading h2 {
    font-size: 29px;
    letter-spacing: -1.3px;
    margin-top: 10px;
  }
  .section-heading .eyebrow {
    font-size: 8px;
  }
  .section-aside {
    font-size: 11px;
  }
  .section-aside br {
    display: none;
  }
  .work-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .work-visual {
    height: 360px;
  }
  .caption-title {
    align-items: center;
  }
  .caption-title h3 {
    font-size: 17px;
  }
  .caption-bottom {
    gap: 5px;
  }
  .work-caption > p {
    font-size: 12px;
  }
  .orden-files {
    width: 66%;
    bottom: -60px;
  }
  .content-section {
    padding-top: 0;
  }
  .content-section .section-heading {
    margin-bottom: 16px;
  }
  .content-intro {
    margin-top: 0;
    font-size: 12px;
  }
  .sample-note {
    font-size: 8px;
  }
  .video-showcase {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-top: 20px;
  }
  .phone-placeholder {
    padding: 24px;
  }
  .phone-placeholder h3 {
    font-size: clamp(40px, 11vw, 56px);
  }
  .piece-name {
    font-size: 15px;
  }
  .piece-note {
    font-size: 10px;
  }
  .piece-placeholder {
    font-size: 8px;
  }
  .social-row {
    gap: 6px;
    padding-bottom: 18px;
  }
  #social-links {
    gap: 5px 18px;
  }
  .social-link {
    font-size: 9px;
  }
  .about-section {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 0;
  }
  .about-label {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .about-symbol {
    display: none;
  }
  .about-label > .eyebrow:last-child {
    font-size: 7px;
  }
  .about-copy h2 {
    font-size: 31px;
  }
  #bio {
    font-size: 12px;
    margin-top: 20px;
  }
  .stack-section {
    flex-wrap: wrap;
    gap: 14px;
    padding-block: 20px;
    margin-bottom: 55px;
  }
  .stack-section h2 {
    flex-basis: 100%;
  }
  .stack-list {
    font-size: 11px;
    gap: 10px 16px;
  }
  .stack-section .text-link {
    margin-left: auto;
  }
  .contact-section {
    padding: 25px 22px 24px;
    margin-bottom: 20px;
  }
  .contact-top > .eyebrow:last-child {
    display: none;
  }
  .contact-heading {
    margin-top: 28px;
    gap: 10px;
  }
  .contact-heading h2 {
    font-size: clamp(38px, 10vw, 60px);
    letter-spacing: -2px;
  }
  .contact-arrow {
    font-size: 62px;
  }
  .contact-bottom {
    margin-top: 25px;
    padding-top: 18px;
  }
  .contact-bottom p {
    font-size: 11px;
  }
  .contact-bottom p br {
    display: none;
  }
  #contact-links {
    gap: 5px 16px;
  }
  .contact-link {
    font-size: 16px;
  }
  .contact-placeholder-note {
    font-size: 7px;
  }
  .site-footer {
    gap: 8px 20px;
    flex-wrap: wrap;
    padding-bottom: calc(20px + env(safe-area-inset-bottom));
  }
  .site-footer p {
    order: 3;
    width: 100%;
    font-size: 8px;
  }
  .site-footer .text-link {
    font-size: 9px;
    margin-left: auto;
  }
  .terminal {
    width: calc(100% - 20px);
    max-height: calc(100dvh - 20px);
  }
  .terminal-body {
    padding: 12px;
    max-height: calc(100dvh - 85px);
  }
  .terminal-chrome {
    padding-left: 15px;
  }
  .screen {
    height: 290px;
    font-size: 11px;
  }
  .prompt__host {
    display: none;
  }
  .prompt__label {
    font-size: 10px;
  }
  .chip {
    font-size: 9px;
    padding-inline: 9px;
  }
  .terminal-hint {
    font-size: 7px;
  }
}
@media (max-width: 360px) {
  .orden-tagline {
    position: relative;
    z-index: 1;
  }
  .site-header {
    gap: 4px;
  }
  .main-nav {
    gap: 2px;
  }
  .site-header .wordmark svg {
    display: none;
  }
}
@media (max-height: 500px) {
  .terminal-body {
    padding-block: 7px;
  }
  .chips {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-block: 4px;
  }
  .chip {
    flex: none;
  }
  .terminal-hint {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
  .brand-toggle,
  .brand-list[aria-hidden="true"] {
    display: none;
  }
  .brand-marquee {
    overflow: visible;
    mask-image: none;
  }
  .brand-track {
    width: auto;
    transform: none;
  }
  .brand-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
    gap: 20px;
    width: 100%;
    padding: 0;
  }
  .brand-list li {
    width: auto;
  }
}
@media (prefers-contrast: more) {
  :root {
    --muted: #ded1d1;
    --line: #938080;
  }
  .crt {
    display: none;
  }
}
