@font-face {
  font-family: Manrope;
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('/fonts/manrope-latin.woff2') format('woff2');
}
@font-face {
  font-family: Manrope;
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('/fonts/manrope-latin-ext.woff2') format('woff2');
  unicode-range:
    U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329,
    U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F,
    U+A720-A7FF;
}
:root {
  --color-background: #0a0b12;
  color-scheme: dark;
  background: var(--color-background);
}
body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(ellipse at 5% 0%, #28213c 0, transparent 40%), var(--color-background);
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
a:focus-visible,
button:focus-visible {
  outline: 2px solid #ff8b7a;
  outline-offset: 6px;
}
.skip-link {
  position: absolute;
  left: 20px;
  top: -100px;
  z-index: 3;
  background: #f5f3fb;
  color: #0a0b12;
  padding: 12px;
  font:
    16px Manrope,
    sans-serif;
}
.skip-link:focus {
  top: 20px;
}

#site {
  --color-text: #f5f3fb;
  --color-muted: #a7a6b8;
  --color-accent: #ff8b7a;
  --color-secondary: #b6a0ff;
  --color-border: #2b2a3c;
  --studio-background: #13121d;
  --studio-key: #fff0e5;
  --studio-accent: #ff7666;
  --studio-secondary: #b6a0ff;
  --studio-metal: #f0c6b7;
  --studio-metal-secondary: #bcb9df;
  color: var(--color-text);
  font-family:
    Manrope,
    -apple-system,
    sans-serif;
  line-height: 1.6;
  padding: 0 5.5%;
  container-type: inline-size;
  isolation: isolate;
}
#site * {
  box-sizing: border-box;
}
#site h1,
#site h2,
#site h3,
#site p {
  margin: 0;
  color: inherit;
  font-family: inherit;
}
#site a {
  color: inherit;
  text-decoration: none;
}
#site button {
  font: inherit;
}
#site .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 21px;
  padding: 26px 0;
  border-bottom: 1px solid var(--color-border);
}
#site .logo {
  display: inline-flex;
  align-items: baseline;
  font-size: 21px;
  letter-spacing: -0.065em;
  font-weight: 600;
  font-kerning: normal;
}
#site .logo span {
  font-weight: 400;
  color: #c7c1d1;
}
#site .nav {
  display: flex;
  gap: 26px;
  align-items: center;
  font-size: 12px;
  color: #c8c5d3;
}
#site .lang {
  color: #d7d1e4;
  background: #201e2d;
  border: 1px solid #3b354e;
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 11px;
  min-height: 34px;
}
#site .hero {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  padding: 89px 0;
  border-bottom: 1px solid var(--color-border);
}
#site .eyebrow {
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--color-accent);
  font-weight: 600;
}
#site h1 {
  font-size: clamp(30px, 4.8cqw, 47px);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1.2;
  margin: 21px 0 26px;
  text-wrap: balance;
}
#site h1 span {
  color: var(--color-accent);
}
#site .intro {
  font-size: 14px;
  line-height: 1.85;
  color: var(--color-muted);
  max-width: 390px;
  text-wrap: pretty;
}
#site .presence {
  height: 430px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}
#site .presence canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0;
  transition: opacity 0.3s;
}
#site .presence[data-ready='true'] canvas {
  opacity: 1;
}
#site .presence::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse, #d3756126, transparent 65%);
  filter: blur(13px);
}
#site .experience {
  padding: 55px 0;
}
#site .experience > h2 {
  font-size: 27px;
  letter-spacing: -0.035em;
  font-weight: 500;
  line-height: 1.3;
}
#site .experience > p {
  font-size: 13px;
  color: var(--color-muted);
  margin-top: 13px;
  max-width: 610px;
}
#site .work {
  padding-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
}
#site .work h3 {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 8px;
}
#site .work p {
  font-size: 12px;
  line-height: 1.7;
  color: var(--color-muted);
}
#site .employer {
  font-size: 11px;
  color: #c2b4d4;
  line-height: 1.7;
  margin-top: 16px;
  display: block;
}
#site .footer {
  border-top: 1px solid var(--color-border);
  padding: 26px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 21px;
  flex-wrap: wrap;
  font-size: 11px;
  color: #a69cb6;
}
#site .socials {
  display: flex;
  flex-wrap: wrap;
  gap: 21px;
}
#site .footer a {
  color: #e8cad2;
  overflow-wrap: anywhere;
}
@container (max-width:650px) {
  #site .hero {
    grid-template-columns: 1fr;
    gap: 21px;
    padding: 55px 0 34px;
  }
  #site h1 {
    font-size: clamp(30px, 7cqw, 42px);
  }
  #site .presence {
    height: 310px;
  }
  #site .work {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  #site .nav {
    gap: 16px;
  }
  #site .experience {
    padding: 34px 0;
  }
}
@container (max-width:390px) {
  #site .header {
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    padding: 21px 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  #site * {
    animation: none !important;
    transition: none !important;
  }
}
@media (pointer: coarse) {
  #site button,
  #site .nav a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
}

#site {
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: clamp(21px, 5.5vw, 80px);
  min-height: 100vh;
}
#site .fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.3s;
}
#site .presence[data-ready='true'] .fallback {
  opacity: 0;
}
#site .presence canvas {
  pointer-events: none;
}
#site .nav a {
  padding-block: 10px;
}
#site .lang[hidden] {
  display: none;
}
#site .experience-heading {
  display: flex;
  gap: 34px;
  align-items: flex-end;
  justify-content: space-between;
}
#site .experience-heading h2 {
  font-size: 27px;
  letter-spacing: -0.035em;
  font-weight: 500;
  line-height: 1.3;
}
#site .experience-heading p {
  font-size: 14px;
  color: var(--color-muted);
  margin-top: 13px;
  max-width: 610px;
  line-height: 1.8;
}
#site [data-project-status] {
  font-size: 12px;
  color: var(--color-muted);
  min-width: 40px;
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
}
#site .carousel .work {
  display: flex;
  gap: 34px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 4px;
  overscroll-behavior-x: contain;
}
#site .carousel .work::-webkit-scrollbar {
  display: none;
}
#site .carousel .project {
  flex: 0 0 calc((100% - 68px) / 3);
}
#site .project {
  min-width: 0;
  padding-right: 3px;
  display: flex;
  flex-direction: column;
}
#site .project h3 {
  font-size: 19px;
  line-height: 1.4;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 13px 0;
}
#site .project p {
  font-size: 14px;
  line-height: 1.8;
}
#site .project .dates {
  color: var(--color-accent);
  font-size: 12px;
  letter-spacing: 0.02em;
}
#site .project .employer {
  margin-top: auto;
  padding-top: 21px;
  font-size: 12px;
  line-height: 1.6;
}
@media (max-width: 760px) {
  #site .experience-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 21px;
  }
  #site .carousel .project {
    flex-basis: 100%;
  }
  #site .project {
    padding-right: 13px;
  }
}
#site .carousel .work {
  cursor: grab;
  touch-action: pan-x pan-y pinch-zoom;
}
#site .carousel .work.is-dragging {
  cursor: grabbing;
  user-select: none;
  -webkit-user-select: none;
}
#site .carousel .work:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 5px;
}
#site .pagination[hidden] {
  display: none;
}

html {
  scrollbar-gutter: stable;
}
html.dialog-open {
  overflow: hidden;
}
#site .dialog-trigger {
  border: 0;
  padding: 10px 0;
  background: none;
  color: inherit;
  font: inherit;
}
#site .footer .dialog-trigger {
  color: #e8cad2;
}
#site .dialog {
  position: fixed;
  inset: 0;
  width: min(610px, calc(100% - 32px));
  max-width: none;
  max-height: calc(100dvh - 32px);
  margin: auto;
  padding: 34px;
  border: 1px solid #d5c8ff24;
  border-radius: 26px;
  color: var(--color-text);
  background: radial-gradient(ellipse at 0 0, #34274080, transparent 65%), #13121d;
  box-shadow:
    0 32px 100px #0008,
    inset 0 1px 0 #ffffff08;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: #4b405f transparent;
}
#site .dialog[open] {
  animation: dialog-enter 440ms cubic-bezier(0.16, 1, 0.3, 1) both;
}
#site .dialog::backdrop {
  background: #070810a8;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: dialog-shade 360ms ease both;
}
#site .dialog[data-closing] {
  animation: dialog-leave 240ms cubic-bezier(0.4, 0, 1, 1) both;
  pointer-events: none;
}
#site .dialog[data-closing]::backdrop {
  animation: dialog-shade 240ms ease reverse both;
}
#site .contact-intro {
  margin-bottom: 28px;
  padding-right: 28px;
}
#site .dialog-close {
  position: absolute;
  top: 20px;
  right: 20px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid #ffffff12;
  border-radius: 50%;
  color: var(--color-muted);
  background: #ffffff05;
  transition:
    color 180ms,
    background 180ms,
    transform 180ms;
}
#site .dialog-close:hover {
  color: var(--color-text);
  background: #ffffff10;
  transform: rotate(90deg);
}
#site .dialog[open] .contact-form {
  animation: contact-fields 480ms 70ms cubic-bezier(0.16, 1, 0.3, 1) both;
}
#site .dialog[data-closing] .contact-form {
  animation: none;
}
@keyframes dialog-enter {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes dialog-leave {
  from {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  to {
    opacity: 0;
    transform: translateY(12px) scale(0.985);
  }
}
@keyframes dialog-shade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes contact-fields {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  #site .dialog::backdrop {
    animation: none;
  }
}
#site .dialog h2 {
  font-size: 27px;
  font-weight: 500;
  letter-spacing: -0.035em;
  margin: 0 0 13px;
}
#site .contact-intro p {
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.8;
}
#site .contact-form {
  min-width: 0;
}
#site .contact-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 21px;
}
#site .contact-form label {
  display: grid;
  gap: 8px;
  font-size: 13px;
  margin-bottom: 21px;
}
#site .contact-form input,
#site .contact-form textarea {
  width: 100%;
  min-width: 0;
  color: var(--color-text);
  background: #ffffff04;
  border: 1px solid #ffffff26;
  border-radius: 10px;
  padding: 13px 16px;
  font: inherit;
  font-size: 15px;
  line-height: 1.6;
  transition:
    border-color 160ms,
    background-color 160ms;
}
#site .contact-form textarea {
  resize: vertical;
  min-height: 160px;
}
#site .contact-form input:focus-visible,
#site .contact-form textarea:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
  border-color: transparent;
  background: #ffffff08;
}
#site .contact-privacy,
#site .contact-status {
  font-size: 12px;
  line-height: 1.8;
  color: var(--color-muted);
}
#site .contact-privacy {
  margin: 0 0 24px;
}
#site .contact-verification-group {
  width: 300px;
  max-width: 100%;
  min-width: 0;
}
#site [data-contact-verification] {
  min-height: 65px;
}
#site .contact-actions {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  align-items: center;
  gap: 24px;
}
#site .send {
  justify-self: end;
  min-height: 48px;
  white-space: nowrap;
  border: 0;
  border-radius: 999px;
  padding: 13px 21px;
  background: var(--color-accent);
  color: #17121a;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition:
    opacity 160ms,
    transform 160ms;
}
#site .send:hover:not(:disabled) {
  transform: translateY(-1px);
}
#site .send:disabled {
  opacity: 0.45;
  cursor: default;
}
#site .contact-retry {
  border: 0;
  background: none;
  color: var(--color-text);
  font: inherit;
  font-size: 12px;
  cursor: pointer;
  text-decoration: underline;
  margin-top: 10px;
  padding: 0;
}
#site .contact-retry[hidden] {
  display: none;
}
#site .contact-status {
  margin-top: 12px;
}
#site .contact-status:empty {
  margin: 0;
}
#site .contact-status[data-error='true'] {
  color: var(--color-accent);
}
#site .contact-trap {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
}
@media (max-width: 600px) {
  #site .dialog {
    padding: 28px 16px;
    border-radius: 21px;
  }
  #site .contact-actions {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
  }
  #site .send {
    justify-self: stretch;
    width: 100%;
  }
}
@media (max-width: 480px) {
  #site .contact-fields {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

#site .nav {
  font-size: 13px;
}
#site .nav a,
#site .nav button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
#site .nav .lang[hidden] {
  display: none;
}
#site .hero {
  padding-block: 72px;
}
#site .intro {
  max-width: 440px;
  font-size: 16px;
  line-height: 1.8;
}
#site .work-link {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-height: 44px;
  margin-top: 21px;
  font-size: 14px;
  color: #e8cad2;
}
#site .work-link span:last-child {
  transition: transform 180ms ease;
}
#site .work-link:hover span:last-child {
  transform: translate(2px, -2px);
}

#site .experience-heading h2 {
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.3;
}
#site .experience-heading p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-muted);
  max-width: 650px;
}

#site .experience {
  padding-block: 64px;
}
#site .project p {
  font-size: 16px;
  line-height: 1.8;
}
#site .project .dates,
#site .project .employer {
  font-size: 13px;
}
#site .project h3 {
  font-size: 21px;
}
#site .history-hint {
  margin-top: 24px;
  font-size: 13px;
  color: var(--color-muted);
}
#site .footer {
  font-size: 13px;
}
#site .contact-form label,
#site .contact-intro p {
  font-size: 15px;
}
#site .contact-form input,
#site .contact-form textarea {
  font-size: 16px;
}
@media (max-width: 760px) {
  #site .hero {
    padding-block: 42px 34px;
  }

  #site .experience {
    padding-block: 40px;
  }

  #site .experience-heading h2 {
    font-size: 28px;
  }
  #site .carousel .work {
    gap: 24px;
    mask-image: linear-gradient(to right, #000 calc(100% - 22px), transparent);
  }
  #site .carousel .project {
    flex-basis: calc(100% - 56px);
    padding-right: 0;
  }
  #site .socials {
    gap: 16px;
  }
  #site .nav {
    gap: 14px;
  }
}

#site .company {
  width: min(520px, calc(100% - 32px));
}
#site .company h2 {
  padding-right: 44px;
  margin-bottom: 28px;
}
#site .company-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin: 0;
}
#site .company-details dt {
  color: var(--color-muted);
  font-size: 12px;
  margin-bottom: 6px;
}
#site .company-details dd {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  font-variant-numeric: tabular-nums;
  overflow-wrap: anywhere;
}
#site .company-name,
#site .company-address {
  grid-column: 1 / -1;
}
#site .company-name dd {
  font-size: 19px;
  letter-spacing: -0.025em;
}
