:root {
  color-scheme: dark;
  --bg: #0b0f0c;
  --panel: #101612;
  --panel-strong: #131914;
  --line: #1f2a22;
  --line-strong: #2a362d;
  --text: #e6e6e6;
  --muted: #9ca3af;
  --accent: #4ade80;
  --accent-soft: rgba(74, 222, 128, 0.12);
  --font-sans: Satoshi, Geist, "SF Pro Display", "Segoe UI", system-ui,
    sans-serif;
  --font-mono: "IBM Plex Mono", "SFMono-Regular", "SF Mono", Consolas,
    "Liberation Mono", Menlo, monospace;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
}

body {
  min-height: 100vh;
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.splash-cursor-canvas {
  position: fixed;
  inset: 0;
  z-index: 2;
  display: block;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  mix-blend-mode: screen;
}

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

.page-shell {
  width: min(900px, calc(100vw - 2rem));
  margin: 0 auto;
  padding:
    max(1.25rem, env(safe-area-inset-top))
    max(1rem, env(safe-area-inset-right))
    max(4rem, env(safe-area-inset-bottom))
    max(1rem, env(safe-area-inset-left));
}

.site-header,
.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem 1.5rem;
}

.site-header {
  justify-content: space-between;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.site-footer {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.brand,
.back-link,
.site-nav,
.site-footer,
.eyebrow,
.focus-list,
.section-link,
.cta-link,
.email-link,
.subhead,
.diagram {
  font-family: var(--font-mono);
}

.brand,
.back-link,
.site-nav a,
.site-footer a {
  font-size: 0.9rem;
}

.brand {
  font-weight: 600;
  letter-spacing: 0.04em;
}

.back-link {
  color: var(--muted);
}

.site-nav,
.site-footer {
  color: var(--muted);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.25rem;
}

.site-nav a,
.site-footer a,
.back-link,
.section-link,
.cta-link,
.email-link {
  text-underline-offset: 0.18em;
  transition:
    color 120ms ease,
    text-decoration-color 120ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-footer a:hover,
.site-footer a:focus-visible,
.back-link:hover,
.back-link:focus-visible,
.section-link:hover,
.section-link:focus-visible,
.cta-link:hover,
.cta-link:focus-visible,
.email-link:hover,
.email-link:focus-visible {
  color: var(--accent);
  text-decoration: underline;
}

.section {
  margin-top: 3rem;
}

.hero {
  margin-top: 2rem;
}

.eyebrow,
.subhead {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p,
ul,
ol,
pre {
  margin: 0;
}

h1 {
  margin-top: 0.65rem;
  font-size: clamp(3rem, 8vw, 5rem);
  line-height: 0.94;
  letter-spacing: 0;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.hero h2,
.section-heading h2 {
  font-size: clamp(1.25rem, 3.5vw, 1.75rem);
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 0;
}

.hero h2 {
  margin-top: 0.85rem;
}

.lede,
.panel li,
.panel p,
.work-list li {
  max-width: 42rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
}

.lede {
  margin-top: 1.25rem;
  color: var(--muted);
}

.updated-note {
  margin-top: 0.75rem;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.focus-list,
.panel ul,
.work-list {
  padding-left: 0;
  list-style: none;
}

.focus-list {
  margin-top: 1.5rem;
  display: grid;
  gap: 0.55rem;
  font-size: 0.95rem;
}

.hero-actions {
  display: grid;
  gap: 0.55rem;
  margin-top: 1.5rem;
}

.cta-link,
.section-link,
.email-link {
  width: fit-content;
  font-size: 0.95rem;
}

.email-link {
  color: var(--muted);
}

.section-heading {
  margin-bottom: 1rem;
}

.section-copy {
  max-width: 42rem;
  margin-top: 0.5rem;
  color: var(--muted);
  line-height: 1.7;
}

.panel-stack {
  display: grid;
  gap: 1rem;
}

.panel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.panel {
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--panel);
}

.answer-panel {
  border-color: var(--line-strong);
  background: var(--panel-strong);
}

.answer-panel p + p,
.faq-list article p + p,
.source-list p + p {
  margin-top: 0.75rem;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--line);
  background: var(--panel);
  font-size: 0.95rem;
  line-height: 1.55;
}

.comparison-table th,
.comparison-table td {
  padding: 0.85rem;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.comparison-table th {
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.comparison-table td {
  color: var(--text);
}

.faq-list,
.source-list {
  display: grid;
  gap: 1rem;
}

.panel h3 {
  font-size: 1.15rem;
  line-height: 1.25;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.panel ul,
.work-list {
  display: grid;
  gap: 0.5rem;
  margin-top: 1rem;
}

.panel ul li {
  position: relative;
  padding-left: 1rem;
}

.panel ul li::before {
  content: "-";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-family: var(--font-mono);
}

.section-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--accent);
}

.diagram {
  padding: 1rem;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  background: var(--panel-strong);
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.6;
  overflow-x: auto;
}

.subhead {
  margin-top: 1.25rem;
}

.statement {
  margin-top: 1.25rem;
  font-weight: 600;
}

.evidence-list {
  display: grid;
  gap: 0.85rem;
  margin-top: 1rem;
  padding-left: 0;
  list-style: none;
}

.evidence-list li {
  color: var(--text);
  line-height: 1.65;
}

.work-list {
  counter-reset: work;
}

.work-list li {
  position: relative;
  padding-left: 2rem;
}

.work-list li::before {
  counter-increment: work;
  content: counter(work) ".";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-family: var(--font-mono);
}

::selection {
  background: var(--accent-soft);
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100vw, calc(100vw - 1rem));
    padding:
      max(1rem, env(safe-area-inset-top))
      max(0.75rem, env(safe-area-inset-right))
      max(2.5rem, env(safe-area-inset-bottom))
      max(0.75rem, env(safe-area-inset-left));
  }

  .site-header,
  .site-nav,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .panel {
    padding: 1rem;
  }

  .comparison-table,
  .comparison-table thead,
  .comparison-table tbody,
  .comparison-table tr,
  .comparison-table th,
  .comparison-table td {
    display: block;
  }

  .comparison-table tr + tr {
    border-top: 1px solid var(--line-strong);
  }

  .comparison-table th,
  .comparison-table td {
    border: 0;
  }

  .diagram {
    font-size: 0.88rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .splash-cursor-canvas {
    display: none;
  }

  .site-nav a,
  .site-footer a,
  .section-link,
  .cta-link,
  .email-link {
    transition: none;
  }
}

.home-bio {
  --bg: #11120f;
  --panel: #181a15;
  --panel-strong: #202218;
  --line: rgba(231, 223, 205, 0.16);
  --line-strong: rgba(231, 223, 205, 0.28);
  --text: #eee6d7;
  --muted: #b4b0a5;
  --accent: #c78a58;
  --accent-soft: rgba(199, 138, 88, 0.16);
  --font-sans: "Sora", Satoshi, Geist, "SF Pro Display", "Segoe UI",
    system-ui, sans-serif;
  --font-mono: "Chakra Petch", "IBM Plex Mono", "SF Mono", Consolas,
    monospace;
  background:
    radial-gradient(circle at 82% 8%, rgba(199, 138, 88, 0.16),
      transparent 28rem),
    radial-gradient(circle at 15% 55%, rgba(116, 135, 105, 0.1),
      transparent 24rem),
    linear-gradient(90deg, rgba(231, 223, 205, 0.035) 1px,
      transparent 1px) 0 0 / 5rem 5rem,
    var(--bg);
  overflow-x: hidden;
}

.home-bio::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.016) 1px, transparent 1px);
  background-size: 100% 10px, 12px 100%;
  mix-blend-mode: soft-light;
}

.home-bio .page-shell {
  width: min(1340px, calc(100vw - 2rem));
  padding-top: max(1.25rem, env(safe-area-inset-top));
}

.home-bio .site-header {
  border-bottom-color: rgba(231, 223, 205, 0.08);
}

.home-bio .brand {
  color: var(--text);
}

.home-bio .site-nav {
  gap: 0.7rem 1.1rem;
}

.home-bio .cta-link,
.home-bio .section-link,
.project-cta {
  color: var(--text);
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
}

.home-bio .cta-link,
.home-bio .section-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  border-bottom: 1px solid rgba(238, 230, 215, 0.42);
  padding-bottom: 0.16rem;
}

.home-bio .cta-link:hover,
.home-bio .cta-link:focus-visible,
.home-bio .section-link:hover,
.home-bio .section-link:focus-visible {
  color: var(--accent);
  border-bottom-color: currentColor;
  text-decoration: none;
}

.home-bio .cta-link,
.home-bio .email-link,
.home-bio .section-link,
.project-feature,
.project-card {
  transition:
    border-color 220ms cubic-bezier(0.16, 1, 0.3, 1),
    color 220ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 220ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.home-bio .cta-link:active,
.home-bio .email-link:active,
.home-bio .section-link:active,
.project-feature:active,
.project-card:active {
  transform: translateY(1px);
}

.bio-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.34fr) minmax(18rem, 0.66fr);
  gap: clamp(1.5rem, 6vw, 6.5rem);
  align-items: center;
  min-height: min(48rem, calc(100dvh - 6.5rem));
  padding: clamp(2.4rem, 5vw, 4.75rem) 0 clamp(2.6rem, 6vw, 5rem);
}

.bio-copy,
.bio-brief,
.featured-projects,
.hire-band {
  animation: home-rise 760ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.bio-copy,
.bio-brief,
.section-kicker > *,
.project-showcase > *,
.project-feature,
.project-card,
.hire-band > * {
  min-width: 0;
}

.bio-copy h1 {
  max-width: 14ch;
  margin-top: 0.85rem;
  font-size: clamp(3.45rem, 7.35vw, 6.85rem);
  line-height: 0.88;
  letter-spacing: -0.055em;
  font-weight: 700;
  text-wrap: balance;
}

.bio-kicker {
  max-width: 44rem;
  margin-top: 1.35rem;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.bio-kicker a {
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-underline-offset: 0.2em;
}

.bio-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.3rem;
  align-items: center;
  margin-top: 1.5rem;
}

.bio-brief {
  align-self: end;
  display: grid;
  gap: 1.15rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line-strong);
  animation-delay: 80ms;
}

.bio-avatar {
  width: clamp(4.6rem, 7.4vw, 6.6rem);
  aspect-ratio: 1;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.04);
}

.bio-brief-copy {
  display: grid;
  gap: 1.2rem;
}

.bio-brief p {
  max-width: 29rem;
  color: var(--text);
  font-size: clamp(0.96rem, 1.2vw, 1.08rem);
  line-height: 1.68;
  overflow-wrap: anywhere;
}

.bio-facts {
  display: grid;
  gap: 0.9rem;
  margin: 0;
}

.bio-facts div {
  display: grid;
  gap: 0.25rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
}

.bio-facts dt {
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.bio-facts dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.featured-projects {
  padding: clamp(3rem, 7vw, 6rem) 0;
  border-top: 1px solid var(--line);
  animation-delay: 140ms;
}

.section-kicker {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(16rem, 0.42fr);
  gap: 1.25rem clamp(1.5rem, 5vw, 4rem);
  align-items: end;
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
}

.section-kicker .eyebrow {
  grid-column: 1 / -1;
}

.section-kicker h2 {
  max-width: 13ch;
  color: var(--text);
  font-size: clamp(2.4rem, 5vw, 4.9rem);
  line-height: 0.92;
  letter-spacing: -0.055em;
  font-weight: 700;
  text-wrap: balance;
}

.section-kicker .section-link {
  justify-self: end;
}

.project-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(19rem, 0.84fr);
  gap: clamp(1rem, 2.5vw, 1.65rem);
}

.project-feature,
.project-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  color: var(--text);
  isolation: isolate;
}

.project-feature:hover,
.project-card:hover,
.project-feature:focus-visible,
.project-card:focus-visible {
  border-color: rgba(238, 230, 215, 0.42);
  outline: 0;
}

.project-feature:hover .project-cta,
.project-card:hover .project-cta,
.project-feature:focus-visible .project-cta,
.project-card:focus-visible .project-cta {
  color: #ffffff;
  border-bottom-color: currentColor;
}

.project-automic {
  min-height: clamp(33rem, 58vw, 45rem);
  display: grid;
  grid-template-rows: auto 1fr;
  padding: clamp(1.2rem, 3vw, 2rem);
  background:
    radial-gradient(circle at 82% 20%, rgba(98, 255, 194, 0.16),
      transparent 28%),
    linear-gradient(145deg, #071112 0%, #0b1819 52%, #0a0d12 100%);
}

.project-automic::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(130, 255, 210, 0.08) 1px,
      transparent 1px),
    linear-gradient(rgba(130, 255, 210, 0.06) 1px, transparent 1px);
  background-size: 3.1rem 3.1rem;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.92),
    rgba(0, 0, 0, 0.3));
  pointer-events: none;
}

.project-copy {
  position: relative;
  z-index: 1;
  max-width: 35rem;
}

.project-label {
  margin: 0;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.project-automic .project-label {
  color: rgba(132, 255, 212, 0.88);
}

.project-copy h3,
.project-card h3 {
  margin-top: 0.75rem;
  color: var(--text);
  font-size: clamp(2rem, 4.1vw, 4rem);
  line-height: 0.94;
  letter-spacing: -0.052em;
  text-wrap: balance;
}

.project-copy p,
.project-card p:not(.project-label) {
  max-width: 34rem;
  margin-top: 0.85rem;
  color: rgba(238, 230, 215, 0.76);
  font-size: 1rem;
  line-height: 1.65;
}

.project-cta {
  display: inline-flex;
  width: fit-content;
  margin-top: 1.15rem;
  border-bottom: 1px solid rgba(238, 230, 215, 0.34);
  padding-bottom: 0.14rem;
  color: rgba(238, 230, 215, 0.74);
  font-size: 0.9rem;
}

.vault-media {
  position: relative;
  z-index: 1;
  align-self: end;
  min-height: clamp(25rem, 34vw, 30rem);
  margin: 1.8rem -0.35rem -0.45rem 1.2rem;
}

.vault-logo {
  position: absolute;
  top: 0;
  right: 4%;
  width: clamp(4.8rem, 11vw, 8.2rem);
  filter: drop-shadow(0 1.2rem 2.4rem rgba(0, 0, 0, 0.44));
  transform: rotate(5deg);
  animation: home-float 7.5s ease-in-out infinite;
}

.vault-screen {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(105%, 47rem);
  border: 1px solid rgba(211, 255, 239, 0.2);
  border-radius: 8px;
  box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.46);
  transform: rotate(-1.8deg);
}

.project-pair {
  display: grid;
  gap: clamp(1rem, 2.5vw, 1.65rem);
}

.project-card {
  min-height: 21rem;
  padding: clamp(1.1rem, 2.6vw, 1.55rem);
  display: grid;
  align-content: end;
}

.project-card-top {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  left: 1.1rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.project-card-top img {
  width: 4.4rem;
  aspect-ratio: 1;
  border-radius: 1rem;
  filter: drop-shadow(0 1rem 1.6rem rgba(0, 0, 0, 0.34));
}

.project-clawlicious {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 35%),
    linear-gradient(160deg, #1b120d 0%, #3f2418 55%, #151713 100%);
}

.project-clawlicious::before {
  content: "";
  position: absolute;
  inset: auto -18% -32% auto;
  width: 58%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(199, 138, 88, 0.28),
    transparent 66%);
  filter: blur(12px);
}

.project-colossal {
  background:
    radial-gradient(circle at 79% 15%, rgba(255, 146, 64, 0.2),
      transparent 24%),
    linear-gradient(180deg, #20130d 0%, #121018 100%);
}

.claw-slashes {
  position: absolute;
  top: 1.25rem;
  right: 1.2rem;
  display: grid;
  gap: 0.36rem;
  transform: rotate(15deg);
}

.claw-slashes span {
  width: 4.8rem;
  height: 0.3rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 235, 205, 0.94),
    rgba(255, 124, 65, 0.58));
  animation: claw-mark 6.4s ease-in-out infinite;
}

.claw-slashes span:nth-child(2) {
  animation-delay: 0.28s;
}

.claw-slashes span:nth-child(3) {
  animation-delay: 0.56s;
}

.hire-band {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(18rem, 0.72fr) auto;
  gap: 1rem clamp(1.25rem, 4vw, 3rem);
  align-items: end;
  margin: clamp(1.5rem, 5vw, 3rem) 0 clamp(3rem, 6vw, 5rem);
  padding: clamp(1.15rem, 2.5vw, 1.7rem) 0 0;
  border-top: 1px solid var(--line-strong);
  animation-delay: 200ms;
}

.hire-band h2 {
  margin-top: 0.7rem;
  max-width: 18ch;
  font-size: clamp(1.6rem, 3vw, 2.7rem);
  line-height: 1;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.hire-band p:not(.eyebrow) {
  max-width: 36rem;
  color: var(--muted);
  line-height: 1.65;
}

.hire-band .cta-link {
  justify-self: end;
  white-space: nowrap;
}

@keyframes home-rise {
  from {
    opacity: 0;
    transform: translateY(1.4rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes home-float {
  0%,
  100% {
    transform: translateY(0) rotate(5deg);
  }

  50% {
    transform: translateY(-0.45rem) rotate(2deg);
  }
}

@keyframes claw-mark {
  0%,
  100% {
    opacity: 0.74;
    transform: translateX(0);
  }

  45% {
    opacity: 1;
    transform: translateX(0.22rem);
  }
}

@media (max-width: 980px) {
  .bio-hero,
  .section-kicker,
  .project-showcase,
  .hire-band {
    grid-template-columns: 1fr;
  }

  .bio-hero {
    min-height: auto;
    padding-top: 3rem;
  }

  .bio-brief {
    max-width: 38rem;
  }

  .section-kicker .section-link,
  .hire-band .cta-link {
    justify-self: start;
  }

  .project-automic {
    min-height: 38rem;
  }
}

@media (max-width: 640px) {
  .home-bio .page-shell {
    width: 100%;
    max-width: 100%;
    padding-right: max(1.25rem, env(safe-area-inset-right));
    padding-left: max(1.25rem, env(safe-area-inset-left));
  }

  .bio-hero {
    gap: 2rem;
    padding: 2.6rem 0 3rem;
  }

  .bio-copy h1 {
    max-width: 100%;
    font-size: clamp(2.55rem, 10.5vw, 3.35rem);
    line-height: 0.98;
    text-wrap: normal;
    overflow-wrap: break-word;
    word-break: break-word;
  }

  .bio-kicker,
  .bio-brief p,
  .bio-facts dd,
  .project-copy p,
  .project-card p:not(.project-label),
  .hire-band p:not(.eyebrow) {
    max-width: 100%;
    overflow-wrap: break-word;
    word-break: break-word;
  }

  .bio-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .section-kicker h2 {
    max-width: none;
    font-size: clamp(2.15rem, 10.5vw, 3rem);
    line-height: 0.98;
    text-wrap: normal;
  }

  .project-automic {
    min-height: 35rem;
  }

  .vault-media {
    min-height: 18rem;
    margin: 1.2rem -0.75rem -0.75rem 0;
  }

  .vault-screen {
    width: 130%;
    max-width: none;
  }

  .project-card {
    min-height: 20rem;
  }

  .project-copy h3,
  .project-card h3 {
    max-width: 100%;
    font-size: clamp(1.75rem, 8.6vw, 2.55rem);
    line-height: 1;
    text-wrap: normal;
    overflow-wrap: anywhere;
  }

  .hire-band .cta-link {
    white-space: normal;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bio-copy,
  .bio-brief,
  .featured-projects,
  .hire-band,
  .vault-logo,
  .claw-slashes span {
    animation: none;
  }

  .home-bio .cta-link,
  .home-bio .email-link,
  .home-bio .section-link,
  .project-feature,
  .project-card {
    transition: none;
  }
}

/* 2026 Automic homepage skin */
.home-bio {
  --bg: #07090c;
  --panel: #0e1116;
  --panel-strong: #151a20;
  --line: rgba(167, 177, 186, 0.2);
  --line-strong: rgba(245, 243, 233, 0.28);
  --text: #f5f3e9;
  --muted: #a7b1ba;
  --accent: #39ff9b;
  --accent-2: #9ef7c5;
  --accent-soft: rgba(57, 255, 155, 0.13);
  --font-sans: Sora, Geist, "SF Pro Display", "Segoe UI", system-ui,
    sans-serif;
  --font-mono: "IBM Plex Mono", "Chakra Petch", "SF Mono", Consolas,
    monospace;
  background:
    radial-gradient(circle at 16% 11%, rgba(57, 255, 155, 0.12),
      transparent 24rem),
    radial-gradient(circle at 86% 28%, rgba(158, 247, 197, 0.08),
      transparent 21rem),
    linear-gradient(90deg, rgba(167, 177, 186, 0.08) 1px, transparent 1px)
      0 0 / 7.5rem 7.5rem,
    linear-gradient(rgba(167, 177, 186, 0.055) 1px, transparent 1px)
      0 0 / 7.5rem 7.5rem,
    var(--bg);
}

.home-bio::before {
  z-index: 0;
  background-image:
    radial-gradient(rgba(245, 243, 233, 0.2) 0.7px, transparent 0.7px),
    linear-gradient(rgba(57, 255, 155, 0.035) 1px, transparent 1px);
  background-size: 7px 7px, 100% 13px;
  opacity: 0.42;
  mix-blend-mode: normal;
}

.home-bio .page-shell {
  position: relative;
  z-index: 1;
  width: min(1440px, calc(100vw - 2rem));
}

.home-bio .site-header {
  position: sticky;
  top: 0;
  z-index: 3;
  align-items: center;
  padding: 1rem 0;
  border-bottom-color: rgba(245, 243, 233, 0.16);
  background: rgba(7, 9, 12, 0.78);
  backdrop-filter: blur(16px);
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.03);
}

.home-bio .brand {
  display: inline-flex;
  align-items: center;
  gap: 0.78rem;
  color: var(--text);
  letter-spacing: 0;
}

.brand-mark,
.signature-mark {
  display: inline-grid;
  place-items: center;
  width: 2.45rem;
  aspect-ratio: 1;
  border: 1px solid var(--line-strong);
  color: var(--accent);
  font-weight: 700;
  line-height: 1;
}

.home-bio .site-nav a,
.home-bio .site-footer a {
  color: var(--muted);
  letter-spacing: 0;
}

.home-bio .site-nav a:hover,
.home-bio .site-nav a:focus-visible,
.home-bio .site-footer a:hover,
.home-bio .site-footer a:focus-visible {
  color: var(--accent);
  text-decoration: none;
}

.home-bio h1,
.home-bio h2,
.home-bio h3,
.home-bio p,
.home-bio dt,
.home-bio dd,
.home-bio a,
.home-bio li {
  letter-spacing: 0;
}

.bio-hero {
  position: relative;
  grid-template-columns: minmax(18rem, 0.94fr) minmax(22rem, 0.86fr)
    minmax(16rem, 0.48fr);
  gap: clamp(1.5rem, 4.2vw, 4.8rem);
  align-items: end;
  min-height: min(53rem, calc(100dvh - 5.5rem));
  padding: clamp(3rem, 5.4vw, 5.75rem) 0 clamp(3.25rem, 6vw, 6rem);
}

.bio-hero::after {
  content: "";
  position: absolute;
  right: 8%;
  bottom: 2.4rem;
  width: min(41rem, 52vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(57, 255, 155, 0.64),
    transparent);
}

.hero-portrait {
  position: relative;
  align-self: center;
  aspect-ratio: 1;
  border: 2px solid rgba(57, 255, 155, 0.74);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 45%, rgba(57, 255, 155, 0.11),
      transparent 42%),
    #090c10;
  overflow: visible;
  animation: home-rise 720ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-portrait img {
  position: absolute;
  inset: 4.5%;
  width: 91%;
  height: 91%;
  border-radius: 50%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.06);
}

.bio-copy {
  animation: home-rise 760ms 70ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.home-bio .eyebrow,
.project-label {
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.bio-copy h1 {
  max-width: 10.5ch;
  margin-top: 0.82rem;
  color: var(--text);
  font-size: clamp(3.05rem, 6vw, 6rem);
  line-height: 0.96;
  letter-spacing: 0;
  font-weight: 800;
  text-wrap: balance;
}

.bio-kicker {
  max-width: 39rem;
  color: #cbd2d4;
}

.home-bio .cta-link,
.home-bio .section-link,
.home-bio .email-link,
.project-cta {
  border-bottom: 0;
  color: var(--text);
  letter-spacing: 0;
}

.home-bio .cta-link,
.home-bio .section-link {
  position: relative;
  padding: 0.72rem 0.95rem;
  border: 1px solid rgba(245, 243, 233, 0.34);
  background: rgba(245, 243, 233, 0.04);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.home-bio .cta-link::after,
.home-bio .section-link::after {
  content: "";
  position: absolute;
  right: 0.65rem;
  bottom: 0.52rem;
  width: 0.42rem;
  height: 1px;
  background: var(--accent);
}

.home-bio .cta-link:hover,
.home-bio .cta-link:focus-visible,
.home-bio .section-link:hover,
.home-bio .section-link:focus-visible {
  border-color: var(--accent);
  color: var(--accent);
}

.home-bio .email-link {
  color: var(--muted);
}

.home-bio .bio-brief {
  align-self: stretch;
  display: grid;
  align-content: end;
  gap: 1.35rem;
  padding: 1.15rem 0 0 clamp(1rem, 2vw, 2rem);
  border-top: 0;
  border-left: 1px solid var(--line);
  animation: home-rise 760ms 140ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.signature-lockup {
  display: grid;
  gap: 1rem;
  color: var(--text);
  font-family: var(--font-mono);
  font-size: clamp(1.1rem, 1.7vw, 1.45rem);
  letter-spacing: 0;
  text-transform: uppercase;
}

.signature-mark {
  width: 4rem;
  color: var(--accent);
  font-size: 1.75rem;
  letter-spacing: 0;
}

.bio-brief p {
  color: #d4d6d1;
}

.bio-brief a,
.bio-prose a {
  color: var(--accent-2);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

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

.operator-strip p {
  max-width: none;
  margin: 0;
  padding: 1rem clamp(0.8rem, 2vw, 1.4rem);
  border-right: 1px solid var(--line);
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: clamp(0.8rem, 1.1vw, 0.95rem);
}

.operator-strip p:last-child {
  border-right: 0;
}

.systems-section,
.workflow-section,
.bio-dossier {
  padding: clamp(4rem, 8vw, 7.8rem) 0;
  border-bottom: 1px solid var(--line);
}

.systems-section {
  border-top: 0;
}

.home-bio .section-kicker {
  grid-template-columns: minmax(0, 0.78fr) minmax(13rem, 0.28fr);
  align-items: end;
}

.home-bio .section-kicker h2 {
  max-width: 14ch;
  color: var(--text);
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  line-height: 1;
  letter-spacing: 0;
  font-weight: 800;
}

.systems-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(19rem, 0.82fr);
  gap: clamp(1rem, 2vw, 1.35rem);
}

.system-stack {
  display: grid;
  gap: clamp(1rem, 2vw, 1.35rem);
}

.system-panel {
  position: relative;
  display: grid;
  overflow: hidden;
  min-width: 0;
  border: 1px solid var(--line-strong);
  color: var(--text);
  isolation: isolate;
  transition:
    border-color 220ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.system-panel:hover,
.system-panel:focus-visible {
  border-color: rgba(57, 255, 155, 0.78);
  outline: 0;
}

.system-panel:active {
  transform: translateY(1px);
}

.system-vault {
  min-height: clamp(34rem, 58vw, 47rem);
  grid-template-rows: auto 1fr;
  padding: clamp(1.2rem, 3vw, 2rem);
  background:
    radial-gradient(circle at 80% 18%, rgba(216, 58, 47, 0.28),
      transparent 27%),
    radial-gradient(circle at 24% 84%, rgba(107, 255, 176, 0.16),
      transparent 24%),
    linear-gradient(145deg, #050809 0%, #0a0d10 48%, #151b1f 100%);
  border-color: rgba(214, 199, 161, 0.45);
  box-shadow: 0 28px 80px -52px rgba(216, 58, 47, 0.64);
}

.system-vault::before,
.workflow-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(57, 255, 155, 0.08) 1px,
      transparent 1px),
    linear-gradient(rgba(57, 255, 155, 0.055) 1px, transparent 1px);
  background-size: 3.25rem 3.25rem;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.95),
    rgba(0, 0, 0, 0.2));
  pointer-events: none;
}

.system-vault::before {
  background:
    linear-gradient(90deg, rgba(214, 199, 161, 0.1) 1px,
      transparent 1px),
    linear-gradient(rgba(214, 199, 161, 0.08) 1px, transparent 1px);
  background-size: 3.5rem 3.5rem;
}

.project-copy {
  z-index: 1;
}

.project-copy h3,
.system-compact h3 {
  margin-top: 0.78rem;
  color: var(--text);
  font-size: clamp(1.8rem, 3.8vw, 3.75rem);
  line-height: 1;
  letter-spacing: 0;
}

.project-copy p,
.system-compact p:not(.project-label) {
  max-width: 35rem;
  margin-top: 0.88rem;
  color: rgba(245, 243, 233, 0.74);
  line-height: 1.65;
}

.project-cta {
  width: fit-content;
  margin-top: 1.15rem;
  padding-bottom: 0.12rem;
  border-bottom: 1px solid rgba(57, 255, 155, 0.46);
  color: var(--accent-2);
  font-family: var(--font-mono);
  font-size: 0.9rem;
}

.vault-media {
  min-height: clamp(25rem, 33vw, 30rem);
}

.vault-screen {
  transform: none;
}

.system-vault .project-label {
  color: #ffb347;
}

.system-vault .project-copy h3 {
  color: #d6c7a1;
  font-family: "Chakra Petch", var(--font-sans);
  text-transform: uppercase;
}

.system-vault .project-copy p {
  color: rgba(214, 199, 161, 0.8);
}

.system-vault .project-cta {
  border-bottom-color: rgba(255, 179, 71, 0.62);
  color: #ffb347;
}

.system-vault .vault-logo {
  top: 0.2rem;
  right: 0.2rem;
  width: clamp(4.2rem, 8vw, 6.6rem);
  transform: none;
  animation: none;
}

.system-compact {
  min-height: 22rem;
  align-content: end;
  padding: clamp(1.1rem, 2.5vw, 1.55rem);
}

.system-clawlicious {
  background:
    radial-gradient(circle at 84% 16%, rgba(232, 74, 58, 0.16),
      transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
  border-color: #e5e5e5;
  color: #111111;
  box-shadow: 0 24px 60px -48px rgba(17, 17, 17, 0.48);
}

.system-colossal {
  min-height: clamp(25rem, 36vw, 28rem);
  align-content: start;
  padding: clamp(10.5rem, 18vw, 12.5rem) clamp(1.1rem, 2.5vw, 1.55rem)
    clamp(1.1rem, 2.5vw, 1.55rem);
  background:
    linear-gradient(90deg, rgba(168, 201, 68, 0.28) 0 24%,
      transparent 24%),
    linear-gradient(180deg, #fff7ef 0%, #f5f1eb 100%);
  border: 3px solid #121212;
  color: #121212;
  box-shadow: 8px 8px 0 #121212;
}

.system-clawlicious .project-label {
  color: #e84a3a;
}

.system-clawlicious h3 {
  max-width: 13ch;
  color: #111111;
  letter-spacing: 0;
}

.system-clawlicious p:not(.project-label) {
  color: #666666;
}

.system-clawlicious .project-cta {
  border-bottom-color: rgba(232, 74, 58, 0.5);
  color: #e84a3a;
}

.system-clawlicious .project-card-top img {
  width: 4.8rem;
  border-radius: 1.1rem;
  filter: drop-shadow(0 0.85rem 1.5rem rgba(232, 74, 58, 0.24));
}

.system-colossal::before,
.system-colossal::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.system-colossal::before {
  top: 1rem;
  right: 1rem;
  width: 38%;
  height: 30%;
  border: 3px solid #28a8ea;
  border-left-color: #a12990;
}

.system-colossal::after {
  right: 0;
  bottom: 0;
  width: 42%;
  height: 1rem;
  background: #f15b24;
}

.colossal-media {
  position: absolute;
  inset: 0 0 auto;
  height: 44%;
  overflow: hidden;
  border-bottom: 3px solid #121212;
  background:
    linear-gradient(135deg, rgba(248, 231, 216, 0.96),
      rgba(245, 241, 235, 0.9));
}

.colossal-media .line {
  position: absolute;
  border: 3px solid currentColor;
}

.colossal-media .line-green {
  color: #a8c944;
  width: 46%;
  height: 58%;
  top: -3px;
  left: -3px;
  border-top: 0;
  border-left: 0;
}

.colossal-media .line-orange {
  color: #f15b24;
  width: 48%;
  height: 74%;
  top: -3px;
  left: 35%;
  border-top: 0;
}

.colossal-media .line-pink {
  color: #a12990;
  width: 43%;
  height: 58%;
  left: -3px;
  bottom: -3px;
}

.colossal-media .line-blue {
  right: 12%;
  bottom: 10%;
  width: 34%;
  height: 52%;
  color: #28a8ea;
  background: #28a8ea;
  transform: rotate(14deg);
}

.system-colossal .project-label,
.system-colossal h3,
.system-colossal p,
.system-colossal .project-cta {
  position: relative;
  z-index: 1;
}

.system-colossal .project-label {
  color: #a12990;
}

.system-colossal h3 {
  max-width: 15ch;
  color: #121212;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 800;
  text-transform: uppercase;
}

.system-colossal p:not(.project-label) {
  color: #121212;
  font-weight: 600;
}

.system-colossal .project-cta {
  border-bottom: 3px solid #121212;
  color: #121212;
  font-weight: 800;
}

.workflow-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(18rem, 0.68fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: stretch;
}

.workflow-panel,
.workflow-steps {
  position: relative;
  min-width: 0;
  border: 1px solid var(--line-strong);
  background: rgba(14, 17, 22, 0.74);
}

.workflow-panel {
  overflow: hidden;
  padding: clamp(1rem, 2.4vw, 1.6rem);
}

.workflow-panel .diagram {
  position: relative;
  margin-top: 1rem;
  border: 0;
  background: transparent;
  color: var(--text);
  font-size: clamp(1rem, 1.7vw, 1.45rem);
}

.workflow-steps {
  display: grid;
  align-content: center;
  gap: 0;
  padding: 0;
}

.workflow-steps li {
  min-height: 4.5rem;
  padding: 1rem 1rem 1rem 3.25rem;
  border-bottom: 1px solid var(--line);
  color: #d7ddd8;
}

.workflow-steps li:last-child {
  border-bottom: 0;
}

.workflow-steps li::before {
  left: 1rem;
  top: 1rem;
  color: var(--accent);
}

.hire-band {
  grid-template-columns: minmax(0, 0.25fr) minmax(0, 0.8fr)
    minmax(18rem, 0.6fr) auto;
  margin: 0;
  padding: clamp(2.4rem, 5vw, 4rem) 0;
  border-top: 0;
  border-bottom: 1px solid var(--line);
}

.hire-band h2 {
  max-width: 20ch;
  margin-top: 0;
  color: var(--text);
  font-size: clamp(1.65rem, 3vw, 2.85rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.hire-band p:not(.eyebrow) {
  color: #d6ddd8;
}

.bio-dossier .section-kicker {
  margin-bottom: clamp(1.6rem, 4vw, 2.8rem);
}

.bio-prose {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(1rem, 3.2vw, 2.6rem);
  max-width: none;
}

.bio-prose p {
  max-width: 46rem;
  margin: 0;
  color: #d5d7d1;
  font-size: clamp(0.96rem, 1.15vw, 1.08rem);
  line-height: 1.78;
}

.bio-prose p:first-child {
  color: var(--text);
  font-size: clamp(1.05rem, 1.35vw, 1.25rem);
}

.home-bio .site-footer {
  padding: 1.3rem 0 0;
  border-top: 0;
}

@media (max-width: 1120px) {
  .bio-hero {
    grid-template-columns: minmax(18rem, 0.82fr) minmax(20rem, 1fr);
  }

  .home-bio .bio-brief {
    grid-column: 1 / -1;
    grid-template-columns: minmax(13rem, 0.42fr) 1fr;
    align-items: start;
    padding-left: 0;
    padding-top: 1.4rem;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

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

@media (max-width: 980px) {
  .home-bio .section-kicker,
  .systems-grid,
  .workflow-grid,
  .hire-band,
  .bio-prose {
    grid-template-columns: 1fr;
  }

  .home-bio .section-kicker .section-link {
    justify-self: start;
  }

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

  .operator-strip p:nth-child(2) {
    border-right: 0;
  }

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

  .hire-band .cta-link {
    justify-self: start;
  }
}

@media (max-width: 760px) {
  .home-bio .site-header {
    position: static;
    align-items: flex-start;
  }

  .bio-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 2.4rem;
  }

  .hero-portrait {
    width: min(100%, 30rem);
  }

  .bio-copy h1,
  .home-bio .section-kicker h2 {
    max-width: 100%;
    text-wrap: normal;
  }

  .home-bio .bio-brief {
    grid-template-columns: 1fr;
  }

  .bio-facts {
    grid-template-columns: 1fr;
  }

  .signature-lockup {
    letter-spacing: 0;
  }
}

@media (max-width: 640px) {
  .home-bio .page-shell {
    width: 100%;
  }

  .operator-strip {
    grid-template-columns: 1fr;
  }

  .operator-strip p {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .operator-strip p:last-child {
    border-bottom: 0;
  }

  .system-vault {
    min-height: 36rem;
  }

  .vault-media {
    min-height: 17rem;
    margin: 1.2rem -0.75rem -0.75rem 0;
  }

  .vault-screen {
    width: 132%;
  }

  .workflow-steps li {
    min-height: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-portrait,
  .bio-copy,
  .home-bio .bio-brief,
  .vault-logo {
    animation: none;
  }
}
