*,
*::before,
*::after {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -moz-font-smoothing: antialiased;
  font-smoothing: antialiased;
  background-repeat: no-repeat;
  background-position: center;
}

*,
html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
figure,
blockquote,
dl,
dd {
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeLegibility;
}

ul,
ol {
  list-style: none;
}

img,
picture,
svg,
video,
canvas {
  display: block;
  max-width: 100%;
  height: auto;
}

img {
  border-style: none;
}

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

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
  background: transparent;
  border: 0;
}

button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

textarea {
  resize: vertical;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

fieldset {
  min-width: 0;
  border: 0;
}

iframe {
  border: 0;
}

@font-face {
  font-family: "GT Pressura";
  src: url("../fonts/GT-Pressura-Light.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
:root {
  --tr-change: ease-in-out;
  --tr-appear: ease-out;
  --tr-disappear: ease-in;
  --tr-panel: cubic-bezier(0.22, 1, 0.36, 1);
  --tr-sm: 0.2s;
  --tr-md: 0.4s;
  --tr-lg: 0.8s;
  --tr-change-sm: var(--tr-sm) var(--tr-change);
  --tr-change-md: var(--tr-md) var(--tr-change);
  --tr-change-lg: var(--tr-lg) var(--tr-change);
  --tr-appear-sm: var(--tr-sm) var(--tr-appear);
  --tr-appear-md: var(--tr-md) var(--tr-appear);
  --tr-appear-lg: var(--tr-lg) var(--tr-appear);
  --tr-disappear-sm: var(--tr-sm) var(--tr-disappear);
  --tr-disappear-md: var(--tr-md) var(--tr-disappear);
  --tr-disappear-lg: var(--tr-lg) var(--tr-disappear);
  --tr-panel-sm: var(--tr-sm) var(--tr-panel);
  --tr-panel-md: var(--tr-md) var(--tr-panel);
  --tr-panel-lg: var(--tr-lg) var(--tr-panel);
  --color-black: #000000;
  --color-white: #ffffff;
  --color-primary: #2d0d5d;
  --color-toxic: #8533ff;
  --color-black-rgb: 0 0 0;
  --color-white-rgb: 255 255 255;
  --color-primary-rgb: 45 13 93;
  --color-toxic-rgb: 133 51 255;
  --color-black-05: rgb(var(--color-black-rgb) / 0.05);
  --color-black-10: rgb(var(--color-black-rgb) / 0.1);
  --color-black-20: rgb(var(--color-black-rgb) / 0.2);
  --color-black-30: rgb(var(--color-black-rgb) / 0.3);
  --color-black-40: rgb(var(--color-black-rgb) / 0.4);
  --color-black-50: rgb(var(--color-black-rgb) / 0.5);
  --color-black-60: rgb(var(--color-black-rgb) / 0.6);
  --color-black-70: rgb(var(--color-black-rgb) / 0.7);
  --color-black-80: rgb(var(--color-black-rgb) / 0.8);
  --color-black-90: rgb(var(--color-black-rgb) / 0.9);
  --color-white-05: rgb(var(--color-white-rgb) / 0.05);
  --color-white-10: rgb(var(--color-white-rgb) / 0.1);
  --color-white-20: rgb(var(--color-white-rgb) / 0.2);
  --color-white-30: rgb(var(--color-white-rgb) / 0.3);
  --color-white-40: rgb(var(--color-white-rgb) / 0.4);
  --color-white-50: rgb(var(--color-white-rgb) / 0.5);
  --color-white-60: rgb(var(--color-white-rgb) / 0.6);
  --color-white-70: rgb(var(--color-white-rgb) / 0.7);
  --color-white-80: rgb(var(--color-white-rgb) / 0.8);
  --color-white-90: rgb(var(--color-white-rgb) / 0.9);
  --color-primary-05: rgb(var(--color-primary-rgb) / 0.05);
  --color-primary-10: rgb(var(--color-primary-rgb) / 0.1);
  --color-primary-20: rgb(var(--color-primary-rgb) / 0.2);
  --color-primary-30: rgb(var(--color-primary-rgb) / 0.3);
  --color-primary-40: rgb(var(--color-primary-rgb) / 0.4);
  --color-primary-50: rgb(var(--color-primary-rgb) / 0.5);
  --color-primary-60: rgb(var(--color-primary-rgb) / 0.6);
  --color-primary-70: rgb(var(--color-primary-rgb) / 0.7);
  --color-primary-80: rgb(var(--color-primary-rgb) / 0.8);
  --color-primary-90: rgb(var(--color-primary-rgb) / 0.9);
  --color-toxic-05: rgb(var(--color-toxic-rgb) / 0.05);
  --color-toxic-10: rgb(var(--color-toxic-rgb) / 0.1);
  --color-toxic-20: rgb(var(--color-toxic-rgb) / 0.2);
  --color-toxic-30: rgb(var(--color-toxic-rgb) / 0.3);
  --color-toxic-40: rgb(var(--color-toxic-rgb) / 0.4);
  --color-toxic-50: rgb(var(--color-toxic-rgb) / 0.5);
  --color-toxic-60: rgb(var(--color-toxic-rgb) / 0.6);
  --color-toxic-70: rgb(var(--color-toxic-rgb) / 0.7);
  --color-toxic-80: rgb(var(--color-toxic-rgb) / 0.8);
  --color-toxic-90: rgb(var(--color-toxic-rgb) / 0.9);
}

:root {
  --font-family-base: 'GT Pressura', sans-serif;
}

html {
  scroll-snap-type: y mandatory;
}
html.html--burger {
  overflow: hidden;
  overscroll-behavior: none;
}
@media (hover: hover) and (pointer: fine) {
  html {
    scroll-snap-type: y proximity;
  }
}

body {
  font-family: var(--font-family-base);
  font-size: 1rem;
  line-height: 1.375;
  font-weight: 400;
  background: var(--color-black);
  color: var(--color-white);
}
.html--burger body {
  overflow: hidden;
  overscroll-behavior: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-family-base);
  font-size: 1.125rem;
  line-height: 1.3333333333;
  font-weight: 400;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

p,
ul,
ol,
li,
blockquote,
td,
th {
  font-family: var(--font-family-base);
  font-size: 1rem;
  line-height: 1.375;
  font-weight: 400;
}

p + p {
  margin-top: 8px;
}

strong,
b {
  font-weight: inherit;
}

em,
i {
  font-style: italic;
}

a {
  transition: var(--tr-change-sm);
  transition-property: opacity;
  will-change: opacity;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
}
a:active {
  opacity: 0.7;
}
a {
  color: inherit;
  text-decoration: none;
  border-bottom: 0.5px solid var(--color-white-30);
}
@media (hover: hover) and (pointer: fine) {
  a:hover {
    border-bottom-color: var(--color-white-50);
  }
}

.app {
  padding-bottom: 64px;
}
.app .app__nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  z-index: 998;
  pointer-events: none;
}
.html--burger .app .app__nav {
  pointer-events: auto;
}
.app .app__bio,
.app .app__subheading,
.app .app__table {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}
.app .app__project {
  scroll-snap-align: center;
  scroll-snap-stop: always;
  margin-bottom: 128px;
}
.app .app__heading--snap {
  scroll-snap-align: center;
  scroll-snap-stop: always;
}

.fotorama__nav--dots .fotorama__nav__frame {
  width: 12px;
  height: 32px;
}

.fotorama__dot {
  background-color: var(--color-white-20);
  border: none;
  top: 14px;
  left: 4px;
}

.fotorama__nav__frame.fotorama__active .fotorama__dot {
  background-color: var(--color-white);
  width: 4px;
  height: 4px;
}

.fotorama__arr--prev,
.fotorama__arr--next {
  display: none !important;
}

@media (hover: hover) and (pointer: fine) {
  .fotorama__arr--prev,
  .fotorama__arr--next {
    display: block !important;
    background-position: center;
    background-size: 66.66%;
  }
  .fotorama__arr--prev {
    background-image: url("../images/ui/arrow-left-white.svg");
    left: 8px;
  }
  .fotorama__arr--next {
    background-image: url("../images/ui/arrow-right-white.svg");
    right: 8px;
  }
}
.header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  position: relative;
}
.header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
  border-bottom: 0.5px solid var(--color-toxic);
}
.header .header__logo {
  font-family: var(--font-family-base);
  font-size: 1.125rem;
  line-height: 1.3333333333;
  font-weight: 400;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  flex: 1;
  color: var(--color-toxic);
}
.header .header__logo a {
  border-bottom: none;
  display: block;
  padding: 12px 16px;
}
.header .header__menu {
  transition: var(--tr-change-sm);
  transition-property: opacity;
  will-change: opacity;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
}
.header .header__menu:active {
  opacity: 0.7;
}
.header .header__menu {
  background-image: url("../images/ui/lines-horizontal-tight-toxic.svg");
  height: 72px;
  width: 56px;
  display: block;
}
.nav .header .header__menu {
  background-image: url("../images/ui/arrow-right-white.svg");
}
.nav .header .header__logo {
  color: var(--color-white);
}
.nav .header .header__logo.header__logo--active {
  color: var(--color-toxic);
}
@media (min-width: 768px) {
  .nav .header .header__logo {
    opacity: 0;
    pointer-events: none;
  }
}
@media (hover: hover) and (pointer: fine) {
  .header .header__logo a:hover,
  .header .header__menu:hover {
    opacity: 0.8;
  }
  .header .header__logo a:hover:active,
  .header .header__menu:hover:active {
    opacity: 0.6;
  }
}

.nav {
  display: flex;
  justify-content: flex-end;
}
.nav .nav__overlay {
  transition: var(--tr-change-sm);
  transition-property: opacity;
  will-change: opacity;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
}
.nav .nav__overlay:active {
  opacity: 0.7;
}
.nav .nav__overlay {
  background-color: var(--color-primary-50);
  position: fixed;
  z-index: 996;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 98;
  opacity: 0;
  transition: var(--tr-panel-sm);
  transition-property: opacity;
  will-change: opacity;
}
.nav .nav__wrapper {
  background-color: var(--color-primary);
  min-height: 100dvh;
  max-width: 520px;
  position: relative;
  z-index: 99;
  width: 100%;
  transform: translateX(100%);
  transition: var(--tr-panel-sm);
  transition-property: transform;
  will-change: transform;
}
.nav .nav__link {
  border-bottom: none;
  font-family: var(--font-family-base);
  font-size: 1.125rem;
  line-height: 1.3333333333;
  font-weight: 400;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: var(--tr-change-sm);
  transition-property: opacity;
  will-change: opacity;
  padding: 11px 16px 13px;
  display: block;
}
.nav .nav__link.nav__link--active {
  color: var(--color-toxic);
}
.nav .nav__link--download::after {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background-image: url("../images/ui/arrow-line-down-white.svg");
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}
.nav .nav__link--email::after {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background-image: url("../images/ui/envelope-white.svg");
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}
.nav .nav__link--out::after {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background-image: url("../images/ui/arrow-up-right-white.svg");
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}
.nav .nav__item {
  position: relative;
}
.nav .nav__item::after {
  content: "";
  display: block;
  border-bottom: 0.5px solid var(--color-toxic);
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 0;
}
.nav .nav__item:last-child::after {
  display: none;
}
.html--burger .nav .nav__overlay {
  opacity: 1;
}
.html--burger .nav .nav__wrapper {
  transform: translateX(0);
}
@media (hover: hover) and (pointer: fine) {
  .nav .nav__link:not(.nav__link--active):hover {
    opacity: 0.6;
  }
}

.bio {
  padding: 48px 16px 0;
}
.bio .bio__section {
  flex: 1;
}
.bio .bio__section:has(.bio__portrait) {
  margin-bottom: 16px;
}
.bio .bio__text {
  max-width: 30em;
}
.bio .bio__action {
  max-width: 30em;
  margin-top: 12px;
}
.bio .bio__action a {
  border-bottom: none;
  font-family: var(--font-family-base);
  font-size: 1.125rem;
  line-height: 1.3333333333;
  font-weight: 400;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  display: block;
  border-top: 0.5px solid var(--color-white-20);
  padding: 12px 0;
  position: relative;
}
.bio .bio__action a::after {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background-image: url("../images/ui/arrow-line-down-white.svg");
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
@media (min-width: 1024px) {
  .bio {
    display: flex;
    gap: 16px;
  }
  .bio .bio__section:has(.bio__portrait) {
    order: 2;
    margin-bottom: 0;
  }
  .bio .bio__section:has(.bio__text) {
    order: 1;
  }
}

.heading {
  padding: 11px 16px 128px;
}
.heading .heading__links {
  font-family: var(--font-family-base);
  font-size: 1.125rem;
  line-height: 1.3333333333;
  font-weight: 400;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.project .project__image {
  padding-bottom: 16px;
}
.project .project__image img {
  aspect-ratio: 1/1;
  max-height: calc(100vh - 184px);
  margin-left: auto;
  margin-right: auto;
}
.project .project__body {
  border-bottom: none;
  text-align: center;
  max-width: 45em;
  margin-left: auto;
  margin-right: auto;
  padding-left: 32px;
  padding-right: 32px;
  display: block;
}
.project .project__body:is(a) .project__title span {
  transition: var(--tr-change-sm);
  transition-property: border-bottom-color;
  will-change: border-bottom-color;
  border-bottom: 0.5px solid var(--color-white-30);
}
.project .project__title {
  text-wrap: balance;
}
.project .project__description {
  text-wrap: balance;
  padding-top: 4px;
  color: var(--color-white-50);
  font-variant-numeric: lining-nums;
  font-feature-settings: "case" 1;
}
.project .project__link {
  color: var(--color-white-30);
}
@media (hover: hover) and (pointer: fine) {
  .project .project__body:is(a):hover .project__title span {
    border-bottom-color: var(--color-white-50);
  }
}

.subheading {
  padding: 48px 16px 12px;
}
.subheading .subheading__h2 {
  color: var(--color-toxic);
  text-wrap: balance;
}
.subheading .subheading__description {
  text-wrap: balance;
  max-width: 30em;
}

.table {
  width: 100%;
  padding: 0 16px;
}
.table .table__row {
  display: flex;
  border-top: 0.5px solid var(--color-white-20);
}
.table .table__row:has(.table__cell--video) {
  border-top: none;
}
.table .table__cell {
  padding: 12px 16px 12px 0;
  border: none;
  flex: 1;
}
.table .table__cell:last-child {
  padding-right: 0;
}
.table .table__cell.table__cell--video {
  padding-top: 0;
  padding-bottom: 16px;
}
@media (min-width: 1024px) {
  .table .table__cell.table__cell--video {
    padding-left: calc(50% + 8px);
  }
}

.li .li__primary {
  text-wrap: balance;
  max-width: 30em;
}
.li .li__secondary {
  text-wrap: balance;
  color: var(--color-white-50);
  max-width: 30em;
  font-variant-numeric: lining-nums;
  font-feature-settings: "case" 1;
}

.video {
  width: 100%;
  aspect-ratio: 16/9;
}
.video .video__thumbnail {
  border-bottom: none;
  position: relative;
  display: block;
}
.video .video__thumbnail::after {
  transition: var(--tr-change-md);
  transition-property: opacity;
  will-change: opacity;
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  background-color: var(--color-white-10);
}
.video .video__thumbnail::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  z-index: 3;
  pointer-events: none;
  background-image: url("/assets/images/ui/youtube.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
.video .video__thumbnail:active::after {
  opacity: 0.8;
}
.video iframe {
  width: 100%;
  height: 100%;
  display: block;
  width: 100%;
  position: relative;
}
@media (hover: hover) and (pointer: fine) {
  .video .video__thumbnail:hover {
    opacity: 0.9;
  }
}