:root {
  color-scheme: dark;
  --ink: #050609;
  --ink-2: #101217;
  --panel: #f5f7ff;
  --panel-2: #cbd5df;
  --line: #050609;
  --text: #f8fbff;
  --muted: #b9c1cc;
  --cyan: #56f1ff;
  --pink: #ff4fd8;
  --lime: #c9ff4b;
  --yellow: #fff26b;
  --orange: #ff8d39;
  --blue: #4a75ff;
  --chrome: #d9e5ef;
  --shadow-hard: 6px 6px 0 #050609;
  --shadow-soft: 0 24px 80px rgb(0 0 0 / 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    linear-gradient(90deg, rgb(255 255 255 / 0.13) 0 1px, transparent 1px 54px),
    linear-gradient(0deg, rgb(86 241 255 / 0.16) 0 1px, transparent 1px 54px),
    radial-gradient(circle at 18% 14%, rgb(86 241 255 / 0.5), transparent 17rem),
    radial-gradient(circle at 82% 9%, rgb(255 79 216 / 0.4), transparent 18rem),
    linear-gradient(135deg, #88eafb 0%, #c7d1ff 22%, #111421 58%, #050609 100%);
  color: var(--text);
  font-family:
    "Trebuchet MS",
    "Arial Black",
    Arial,
    sans-serif;
  letter-spacing: 0;
}

img {
  display: block;
  max-width: 100%;
  user-select: none;
  -webkit-user-drag: none;
}

a,
button {
  color: inherit;
  font: inherit;
}

button {
  cursor: pointer;
}

.noise,
.scanlines {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 50;
}

.noise {
  opacity: 0.08;
  background-image:
    repeating-radial-gradient(circle at 20% 20%, #fff 0 1px, transparent 1px 3px),
    repeating-radial-gradient(circle at 70% 80%, #000 0 1px, transparent 1px 4px);
  mix-blend-mode: overlay;
}

.scanlines {
  opacity: 0.12;
  background: repeating-linear-gradient(
    0deg,
    transparent 0,
    transparent 3px,
    rgb(255 255 255 / 0.28) 4px
  );
}

.topbar {
  position: fixed;
  top: 12px;
  left: 50%;
  z-index: 60;
  width: min(1120px, calc(100% - 24px));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 8px;
  border: 2px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, #ffffff 0%, #d5e0ec 42%, #8c99a8 43%, #f6f9ff 100%);
  box-shadow: var(--shadow-hard);
  color: #050609;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  color: #050609;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 2px solid #050609;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--cyan), var(--lime));
  box-shadow: 3px 3px 0 #050609;
  font-size: 0.78rem;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 10px;
  border: 2px solid #050609;
  border-radius: 6px;
  background: #fff;
  color: #050609;
  font-size: 0.78rem;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 2px 2px 0 #050609;
}

.nav-links a.nav-stacked {
  flex-direction: column;
  gap: 1px;
  min-width: 92px;
  padding: 5px 10px;
  line-height: 1;
}

.nav-links a.nav-stacked small {
  color: #4a2aa8;
  font-size: 0.56rem;
  font-weight: 900;
  text-transform: uppercase;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: var(--yellow);
}

.hero {
  position: relative;
  min-height: 92vh;
  padding: 128px max(22px, calc((100vw - 1120px) / 2)) 80px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 455px);
  gap: 42px;
  align-items: center;
  overflow: hidden;
  border-bottom: 2px solid rgb(255 255 255 / 0.2);
  background:
    linear-gradient(90deg, rgb(255 255 255 / 0.3) 0 1px, transparent 1px 42px),
    linear-gradient(0deg, rgb(5 6 9 / 0.12) 0 1px, transparent 1px 42px),
    radial-gradient(circle at 74% 22%, rgb(255 255 255 / 0.72), transparent 7rem),
    radial-gradient(circle at 12% 74%, rgb(255 79 216 / 0.42), transparent 12rem),
    linear-gradient(135deg, #8ff3ff 0%, #c6d1ff 34%, #f7fbff 52%, #161828 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgb(255 255 255 / 0.08), rgb(5 6 9 / 0.08) 50%, rgb(5 6 9 / 0.3)),
    linear-gradient(180deg, transparent 75%, var(--ink) 100%);
  z-index: 1;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.hero-backdrop [data-draggable],
.hero-backdrop a,
.hero-backdrop [role="button"] {
  pointer-events: auto;
}

.desktop-window,
.desktop-folder,
.chrome-bubble {
  position: absolute;
}

.draggable-window {
  --drag-x: 0px;
  --drag-y: 0px;
  touch-action: none;
  cursor: grab;
  user-select: none;
  will-change: transform;
}

.draggable-window.is-dragging {
  cursor: grabbing;
  transition: none;
}

.desktop-window {
  border: 2px solid #050609;
  border-radius: 8px;
  background:
    linear-gradient(180deg, #ffffff 0%, #dce8f5 74%, #aeb9c6 100%);
  color: #050609;
  box-shadow: 8px 8px 0 rgb(5 6 9 / 0.58);
  overflow: hidden;
  animation: window-glow 6s ease-in-out infinite;
}

.mini-titlebar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-height: 24px;
  padding: 4px 7px;
  border-bottom: 2px solid #050609;
  background: linear-gradient(90deg, #1a55ff, #ff4fd8);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 900;
  text-transform: uppercase;
  text-shadow: 1px 1px 0 #050609;
}

.mini-controls {
  width: 28px;
  height: 10px;
  border: 2px solid #050609;
  border-radius: 3px;
  background: var(--yellow);
}

.desktop-window strong,
.desktop-window p {
  margin: 0;
}

.bg-x-window {
  left: max(18px, calc((100vw - 1120px) / 2 - 126px));
  top: 150px;
  width: 220px;
  padding-bottom: 12px;
  transform: translate3d(var(--drag-x), var(--drag-y), 0) rotate(-6deg);
  opacity: 0.86;
}

.bg-x-window strong,
.bg-x-window p {
  display: block;
  padding: 10px 12px 0;
}

.bg-x-window strong {
  font-size: 1rem;
  text-transform: uppercase;
}

.bg-x-window p {
  color: #27313d;
  font-size: 0.8rem;
  font-weight: 900;
  line-height: 1.35;
}

.bg-vmw-window {
  right: max(18px, calc((100vw - 1120px) / 2 - 132px));
  top: 154px;
  width: 190px;
  transform: translate3d(var(--drag-x), var(--drag-y), 0) rotate(7deg);
  opacity: 0.9;
  animation-delay: -2s;
}

.bg-only-window {
  left: max(18px, calc((100vw - 1120px) / 2 + 210px));
  bottom: 96px;
  width: 160px;
  transform: translate3d(var(--drag-x), var(--drag-y), 0) rotate(5deg);
  opacity: 0.78;
  animation-delay: -4s;
}

.desktop-window img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.bg-vmw-window img {
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
}

.desktop-window p {
  padding: 7px 9px 9px;
  color: #050609;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.desktop-folder {
  width: 86px;
  transform: translate3d(var(--drag-x), var(--drag-y), 0) rotate(-8deg);
  color: #050609;
  text-align: center;
  text-decoration: none;
  opacity: 0.82;
  animation: float-sticker 5.5s ease-in-out infinite;
}

.desktop-folder:hover,
.desktop-folder:focus-visible {
  text-decoration: none;
  outline: none;
  filter: saturate(1.25) brightness(1.04);
}

.desktop-folder * {
  pointer-events: none;
  text-decoration: none;
}

.desktop-folder span {
  display: block;
  height: 62px;
  border: 2px solid #050609;
  border-radius: 4px 8px 8px 8px;
  background:
    linear-gradient(180deg, var(--yellow), #f6c64d);
  box-shadow: 5px 5px 0 rgb(5 6 9 / 0.58);
}

.desktop-folder span::before {
  content: "";
  display: block;
  width: 38px;
  height: 14px;
  margin: -13px 0 0 6px;
  border: 2px solid #050609;
  border-bottom: 0;
  border-radius: 5px 5px 0 0;
  background: var(--yellow);
}

.desktop-folder p {
  margin: 8px 0 0;
  color: #050609;
  font-size: 0.72rem;
  font-weight: 900;
  text-shadow: 1px 1px 0 #fff;
  text-transform: uppercase;
  text-decoration: none;
}

.folder-projects {
  right: max(22px, calc((100vw - 1120px) / 2 + 120px));
  bottom: 138px;
}

.chrome-bubble {
  display: grid;
  place-items: center;
  width: 86px;
  aspect-ratio: 1 / 1;
  border: 2px solid rgb(5 6 9 / 0.42);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, rgb(255 255 255 / 0.95), transparent 0.8rem),
    radial-gradient(circle at 48% 52%, transparent 0 24%, rgb(255 255 255 / 0.9) 25% 28%, transparent 29%),
    conic-gradient(from 24deg, #fff, #74efff, #ff6de2, #fff26b, #fff, #9cf7ff, #fff);
  box-shadow: 8px 8px 0 rgb(5 6 9 / 0.42);
  opacity: 0.62;
  animation: spin-soft 16s linear infinite;
  transform: translate3d(var(--drag-x), var(--drag-y), 0);
}

.chrome-bubble span {
  min-width: 52px;
  padding: 4px 6px;
  border: 2px solid #050609;
  border-radius: 5px;
  background: var(--pink);
  color: #050609;
  font-size: 0.62rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  box-shadow: 2px 2px 0 #050609;
  transform: rotate(8deg);
}

.chrome-bubble:hover,
.chrome-bubble:focus-visible,
.chrome-bubble.is-playing {
  opacity: 1;
  outline: none;
  filter: saturate(1.35) brightness(1.08);
}

.chrome-bubble.is-playing {
  animation-duration: 2.2s;
}

.bubble-one {
  left: max(26px, calc((100vw - 1120px) / 2 + 42px));
  top: 360px;
}

.bubble-two-small {
  left: max(18px, calc((100vw - 1120px) / 2 + 180px));
  top: 312px;
  transform: translate3d(var(--drag-x), var(--drag-y), 0) rotate(-10deg);
  animation-delay: -6s;
}

.hero-media {
  position: relative;
  z-index: 2;
  min-height: 560px;
  overflow: visible;
  isolation: isolate;
}

.hero-shot {
  position: absolute;
  object-fit: cover;
  border: 3px solid #050609;
  background: #fff;
  box-shadow: 10px 10px 0 rgb(5 6 9 / 0.82);
  filter: saturate(1.25) contrast(1.08);
  animation: float-sticker 6s ease-in-out infinite;
}

.hero-shot-main {
  left: -8px;
  bottom: 52px;
  width: 170px;
  height: auto;
  object-fit: contain;
  transform: translate3d(var(--drag-x), var(--drag-y), 0) rotate(-6deg);
  opacity: 0.96;
}

.hero-shot-one {
  right: -2px;
  bottom: 66px;
  width: 140px;
  height: auto;
  object-fit: contain;
  transform: translate3d(var(--drag-x), var(--drag-y), 0) rotate(7deg);
  animation-delay: -1.4s;
}

.hero-shot-two {
  left: 6px;
  top: 54px;
  width: 132px;
  aspect-ratio: 1 / 1;
  transform: translate3d(var(--drag-x), var(--drag-y), 0) rotate(-9deg);
  object-fit: contain;
  animation-delay: -3s;
}

.hero-shot-three {
  right: 18px;
  top: 12px;
  width: 116px;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  transform: translate3d(var(--drag-x), var(--drag-y), 0) rotate(9deg);
  animation-delay: -4.2s;
}

.hero-shot-four {
  left: 152px;
  bottom: 10px;
  width: 112px;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  transform: translate3d(var(--drag-x), var(--drag-y), 0) rotate(5deg);
  animation-delay: -5.4s;
}

.hero-portrait-card {
  position: absolute;
  right: 50%;
  top: 96px;
  z-index: 2;
  width: min(345px, calc(100% - 42px));
  margin: 0;
  aspect-ratio: 1 / 1;
  padding: 12px;
  border: 3px solid #050609;
  border-radius: 8px;
  background:
    linear-gradient(180deg, #ffffff 0%, #d5e0ec 70%, #a4b1bf 100%);
  box-shadow: 10px 10px 0 rgb(5 6 9 / 0.82);
  transform: translate3d(var(--drag-x), var(--drag-y), 0) translateX(50%) rotate(2deg);
  animation: window-glow 6.5s ease-in-out infinite;
}

.hero-portrait {
  width: 100%;
  height: calc(100% - 36px);
  border: 2px solid #050609;
  border-radius: 6px;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.04);
}

.hero-portrait-card figcaption {
  display: inline-flex;
  margin-top: 8px;
  color: #050609;
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-copy {
  position: relative;
  z-index: 3;
  width: min(680px, 100%);
  padding: 0 22px 24px;
  border: 3px solid #050609;
  border-radius: 8px;
  background:
    linear-gradient(180deg, #ffffff 0%, #e8f0ff 50%, #aebccd 100%),
    #fff;
  color: #050609;
  box-shadow: 12px 12px 0 rgb(5 6 9 / 0.82);
  overflow: hidden;
  transform: translate3d(var(--drag-x), var(--drag-y), 0);
  animation: boot-in 520ms cubic-bezier(0.19, 1, 0.22, 1) both;
}

.window-titlebar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 -22px 18px;
  padding: 8px 10px;
  border-bottom: 3px solid #050609;
  background: linear-gradient(90deg, #154cff, #954bff, #ff4fd8);
  color: #fff;
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
  text-shadow: 2px 2px 0 #050609;
}

.window-buttons {
  display: inline-flex;
  gap: 5px;
}

.window-buttons i {
  display: block;
  width: 15px;
  height: 15px;
  border: 2px solid #050609;
  border-radius: 3px;
  background: #fff26b;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--lime);
  font-family: "Arial Black", Impact, sans-serif;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-copy .eyebrow {
  color: #4a2aa8;
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1 {
  margin: 0;
  max-width: 100%;
  color: #fff;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 5rem;
  line-height: 0.98;
  text-transform: uppercase;
  text-shadow:
    4px 4px 0 #050609,
    8px 8px 0 var(--pink),
    12px 12px 0 var(--cyan);
}

.hero-copy h1 {
  max-width: 100%;
  color: #050609;
  text-shadow:
    3px 3px 0 #fff,
    7px 7px 0 var(--pink),
    11px 11px 0 var(--cyan);
}

.lead {
  margin: 30px 0 0;
  max-width: 620px;
  color: #fff;
  font-size: 1.16rem;
  font-weight: 800;
  line-height: 1.45;
  text-shadow: 2px 2px 0 #050609;
}

.hero-copy .lead {
  margin-top: 24px;
  color: #111820;
  text-shadow: none;
}

.profile-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.profile-facts span,
.hero-sticker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 6px 10px;
  border: 2px solid #050609;
  border-radius: 5px;
  background: #fff;
  color: #050609;
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 3px 3px 0 #050609;
}

.profile-facts span:nth-child(2n) {
  background: var(--cyan);
}

.profile-facts span:nth-child(3n) {
  background: var(--lime);
}

.hero-sticker {
  position: absolute;
  z-index: 4;
  animation: float-sticker 5s ease-in-out infinite;
}

.sticker-creator {
  right: 22px;
  top: 24px;
  background: var(--pink);
  transform: translate3d(var(--drag-x), var(--drag-y), 0) rotate(8deg);
}

.sticker-bahia {
  left: 12px;
  top: 214px;
  background: var(--lime);
  transform: translate3d(var(--drag-x), var(--drag-y), 0) rotate(-10deg);
  animation-delay: -1s;
}

.hero-actions,
.project-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 14px;
  border: 2px solid #050609;
  border-radius: 8px;
  background: var(--panel);
  color: #050609;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 4px 4px 0 #050609;
  transition: transform 140ms ease, box-shadow 140ms ease, background 140ms ease;
}

.button span {
  display: inline-grid;
  min-width: 28px;
  height: 24px;
  place-items: center;
  border: 2px solid #050609;
  border-radius: 6px;
  background: #050609;
  color: #fff;
  font-size: 0.78rem;
}

.button .button-icon {
  min-width: 30px;
  width: 30px;
  height: 26px;
}

.discord-icon svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.button.primary {
  background: linear-gradient(135deg, var(--lime), var(--cyan));
}

.button:hover,
.button:focus-visible {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 #050609;
}

.ticker {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: flex;
  gap: 0;
  overflow: hidden;
  border-top: 2px solid #050609;
  border-bottom: 2px solid #050609;
  background: var(--yellow);
  color: #050609;
  white-space: nowrap;
}

.ticker span {
  flex: 0 0 auto;
  padding: 10px 28px;
  border-right: 2px solid #050609;
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
  animation: ticker-slide 18s linear infinite;
}

.section {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 78px 0;
}

.section-heading {
  display: grid;
  gap: 6px;
  margin-bottom: 28px;
}

.section-heading h2 {
  margin: 0;
  color: #fff;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 3rem;
  line-height: 1.08;
  text-transform: uppercase;
  text-shadow: 3px 3px 0 #050609, 6px 6px 0 var(--blue);
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.link-tile {
  position: relative;
  min-height: 142px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  border: 2px solid #050609;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgb(255 255 255 / 0.96), rgb(207 218 230 / 0.96)),
    repeating-linear-gradient(90deg, transparent 0 8px, rgb(86 241 255 / 0.25) 8px 12px);
  color: #050609;
  text-align: left;
  text-decoration: none;
  box-shadow: var(--shadow-hard);
  overflow: hidden;
}

.link-tile.wide {
  grid-column: span 2;
}

.link-tile:not(.static):hover,
.link-tile:not(.static):focus-visible {
  transform: translate(2px, 2px);
  box-shadow: 4px 4px 0 #050609;
}

.link-tile.static {
  cursor: default;
}

.tile-code {
  position: absolute;
  top: 14px;
  left: 14px;
  display: grid;
  width: 34px;
  height: 30px;
  place-items: center;
  border: 2px solid #050609;
  border-radius: 4px;
  background: #050609;
  color: var(--lime);
  font-weight: 900;
}

.link-tile strong {
  font-size: 1.08rem;
  text-transform: uppercase;
}

.link-tile span:last-child {
  color: #313843;
  font-size: 0.92rem;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.experience-section {
  width: 100%;
  max-width: none;
  padding: 78px max(22px, calc((100vw - 1120px) / 2));
  border-top: 2px solid rgb(255 255 255 / 0.15);
  border-bottom: 2px solid rgb(255 255 255 / 0.15);
  background:
    linear-gradient(90deg, rgb(201 255 75 / 0.18), transparent 42%),
    linear-gradient(135deg, #111820, #0c0d13);
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 14px;
}

.experience-card {
  min-height: 260px;
  padding: 92px 20px 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 2px solid #050609;
  border-radius: 8px;
  background:
    linear-gradient(180deg, #ffffff 0%, #d5e0ec 72%, #a3b2c0 100%);
  color: #050609;
  box-shadow: var(--shadow-hard);
  position: relative;
  overflow: hidden;
}

.experience-card span {
  position: absolute;
  top: 18px;
  left: 18px;
  display: grid;
  width: 42px;
  height: 38px;
  place-items: center;
  border: 2px solid #050609;
  border-radius: 5px;
  background: #050609;
  color: var(--lime);
  font-weight: 900;
}

.experience-card h3 {
  margin: 0;
  min-height: 3.9rem;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 2rem;
  line-height: 1;
  text-transform: uppercase;
}

.experience-card p {
  margin: 14px 0 0;
  color: #2e3742;
  font-weight: 800;
  line-height: 1.45;
}

.project {
  border: 2px solid #050609;
  border-radius: 8px;
  background: var(--panel);
  color: #050609;
  box-shadow: var(--shadow-hard);
  overflow: hidden;
}

.project-featured {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  margin-bottom: 22px;
}

.only-featured {
  grid-template-columns: minmax(340px, 0.72fr) minmax(0, 1.28fr);
}

.only-featured .upcoming-art {
  min-height: 100%;
  border-right: 2px solid #050609;
  border-bottom: 0;
}

.project-image {
  min-height: 100%;
  background:
    linear-gradient(135deg, var(--cyan), var(--pink)),
    #fff;
}

.project-image img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  filter: saturate(1.14) contrast(1.03);
}

.trait-set-stack {
  position: relative;
  min-height: 520px;
  overflow: hidden;
}

.trait-set-stack img {
  position: absolute;
  width: min(46%, 230px);
  height: auto;
  min-height: 0;
  aspect-ratio: 1 / 1;
  padding: 8px;
  object-fit: contain;
  border: 3px solid #050609;
  border-radius: 8px;
  background: #fff;
  box-shadow: 8px 8px 0 rgb(5 6 9 / 0.76);
}

.trait-set-stack img:first-child {
  left: 28px;
  top: 34px;
  transform: rotate(-7deg);
}

.trait-set-stack img:nth-child(2) {
  right: 26px;
  top: 70px;
  transform: rotate(5deg);
}

.trait-set-stack img:nth-child(3) {
  left: 54px;
  bottom: 46px;
  transform: rotate(4deg);
}

.trait-set-stack img:nth-child(4) {
  right: 44px;
  bottom: 26px;
  transform: rotate(-8deg);
}

.vmw-card-stack {
  position: relative;
  min-height: 520px;
  background:
    linear-gradient(90deg, rgb(5 6 9 / 0.12) 0 1px, transparent 1px 28px),
    linear-gradient(0deg, rgb(5 6 9 / 0.1) 0 1px, transparent 1px 28px),
    linear-gradient(135deg, var(--cyan), var(--lime), var(--pink));
}

.vmw-card-stack img {
  position: absolute;
  width: min(58%, 300px);
  height: auto;
  min-height: 0;
  border: 3px solid #050609;
  border-radius: 8px;
  background: #fff;
  object-fit: contain;
  box-shadow: 8px 8px 0 rgb(5 6 9 / 0.78);
}

.vmw-card-stack img:first-child {
  left: 34px;
  top: 34px;
  transform: rotate(-7deg);
}

.vmw-card-stack img:nth-child(2) {
  right: 36px;
  top: 98px;
  transform: rotate(5deg);
}

.vmw-card-stack img:nth-child(3) {
  left: 104px;
  bottom: 38px;
  transform: rotate(-2deg);
}

.project-copy {
  padding: 26px;
}

.project-label {
  margin: 0 0 10px;
  color: #4a2aa8;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.project-copy h3,
.upcoming-copy h3 {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 2.45rem;
  line-height: 1;
  text-transform: uppercase;
}

.project-copy p,
.upcoming-copy p {
  margin: 16px 0 0;
  color: #1f2731;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.48;
}

.project-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 22px 0 0;
}

.project-facts div {
  min-height: 72px;
  padding: 12px;
  border: 2px solid #050609;
  border-radius: 6px;
  background: #fff;
  box-shadow: 3px 3px 0 #050609;
}

.project-facts dt {
  color: #5c6470;
  font-size: 0.73rem;
  font-weight: 900;
  text-transform: uppercase;
}

.project-facts dd {
  margin: 7px 0 0;
  color: #050609;
  font-size: 1.3rem;
  font-weight: 900;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}

.project.compact {
  display: grid;
  grid-template-rows: 280px 1fr;
  background: #e9f4ff;
}

.project.compact.dark {
  background: #111820;
  color: #fff;
}

.project.compact.dark .project-copy p {
  color: #d6e2ec;
}

.project.compact.dark .project-label {
  color: var(--lime);
}

.inline-link {
  display: inline-flex;
  margin-top: 16px;
  color: #050609;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 4px;
}

.project.compact.dark .inline-link {
  color: var(--cyan);
}

.status-pill {
  display: inline-flex;
  width: fit-content;
  margin-top: 18px;
  padding: 8px 10px;
  border: 2px solid #050609;
  border-radius: 6px;
  background: var(--pink);
  color: #050609;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 3px 3px 0 #050609;
}

.upcoming {
  display: grid;
  grid-template-columns: 380px minmax(0, 1fr);
  gap: 0;
  border: 2px solid #050609;
  border-radius: 8px;
  background:
    linear-gradient(180deg, #f8fbff, #d6e7f3),
    #fff;
  color: #050609;
  box-shadow: var(--shadow-hard);
  overflow: hidden;
}

.upcoming-art {
  min-height: 420px;
  position: relative;
  display: grid;
  place-items: center;
  background:
    linear-gradient(90deg, rgb(5 6 9 / 0.11) 0 1px, transparent 1px 28px),
    linear-gradient(0deg, rgb(5 6 9 / 0.1) 0 1px, transparent 1px 28px),
    linear-gradient(135deg, var(--lime), var(--cyan) 54%, var(--pink));
  border-right: 2px solid #050609;
}

.upcoming-art img {
  width: min(280px, 78%);
  aspect-ratio: 1;
  padding: 14px;
  object-fit: contain;
  border: 2px solid #050609;
  border-radius: 8px;
  background: #fff;
  box-shadow: 5px 5px 0 #050609;
}

.upcoming-art img:first-child {
  transform: rotate(-4deg);
}

.upcoming-copy {
  padding: 32px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.tag-row span {
  padding: 8px 10px;
  border: 2px solid #050609;
  border-radius: 6px;
  background: var(--yellow);
  color: #050609;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 3px 3px 0 #050609;
}

.footer {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 48px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.toast {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 70;
  padding: 12px 14px;
  border: 2px solid #050609;
  border-radius: 8px;
  background: var(--lime);
  color: #050609;
  box-shadow: var(--shadow-hard);
  font-weight: 900;
  text-transform: uppercase;
}

.music-player {
  position: fixed;
  right: 22px;
  bottom: 72px;
  z-index: 90;
  width: min(420px, calc(100vw - 28px));
  border: 2px solid #050609;
  border-radius: 8px;
  background: #dce8f5;
  box-shadow: 10px 10px 0 rgb(5 6 9 / 0.8);
  overflow: hidden;
  transform: translate3d(var(--drag-x), var(--drag-y), 0);
}

.music-player[hidden] {
  display: none;
}

.music-player iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  background: #050609;
}

.player-close {
  display: grid;
  width: 20px;
  height: 18px;
  place-items: center;
  border: 2px solid #050609;
  border-radius: 4px;
  background: var(--yellow);
  color: #050609;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 2px 2px 0 #050609;
}

.story-page {
  background:
    linear-gradient(90deg, rgb(255 79 216 / 0.16) 0 1px, transparent 1px 58px),
    linear-gradient(0deg, rgb(201 255 75 / 0.12) 0 1px, transparent 1px 58px),
    radial-gradient(ellipse at 78% 0%, rgb(255 242 107 / 0.18), transparent 34rem),
    linear-gradient(135deg, #080a12 0%, #151821 58%, #071612 100%);
}

.story-hero {
  width: min(1120px, calc(100% - 32px));
  min-height: 88vh;
  margin: 0 auto;
  padding: 132px 0 74px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  align-items: center;
  gap: 34px;
}

.story-hero-copy {
  position: relative;
  z-index: 2;
}

.story-hero-copy h1 {
  max-width: 9ch;
}

.story-hero-frame {
  position: relative;
  min-height: 560px;
}

.story-hero-frame img {
  position: absolute;
  border: 3px solid #050609;
  border-radius: 8px;
  background: #fff;
  box-shadow: 10px 10px 0 rgb(5 6 9 / 0.86);
  object-fit: contain;
}

.story-hero-frame img:first-child {
  inset: 28px 0 auto auto;
  width: min(48%, 280px);
  height: auto;
  transform: rotate(2deg);
}

.story-hero-frame img:nth-child(2) {
  left: 0;
  bottom: 28px;
  width: min(46%, 250px);
  height: auto;
  transform: rotate(-6deg);
}

.story-hero-frame img:nth-child(3) {
  right: 18px;
  bottom: 34px;
  width: min(44%, 260px);
  height: auto;
  transform: rotate(7deg);
}

.story-stamp {
  right: 34px;
  bottom: 88px;
  background: var(--lime);
  transform: rotate(7deg);
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.story-card {
  position: relative;
  min-height: 300px;
  padding: 78px 18px 20px;
  border: 2px solid #050609;
  border-radius: 8px;
  background:
    linear-gradient(180deg, #ffffff 0%, #dce8f4 70%, #aebfce 100%);
  color: #050609;
  box-shadow: var(--shadow-hard);
}

.story-card h3 {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 2rem;
  line-height: 1;
  text-transform: uppercase;
}

.story-card p {
  margin: 14px 0 0;
  color: #26313c;
  font-weight: 800;
  line-height: 1.45;
}

.art-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  gap: 24px;
  align-items: start;
}

.art-copy {
  padding: 28px;
  border: 2px solid #050609;
  border-radius: 8px;
  background: var(--panel);
  color: #050609;
  box-shadow: var(--shadow-hard);
}

.art-copy p {
  margin: 0;
  color: #1f2731;
  font-weight: 800;
  line-height: 1.52;
}

.art-copy p + p {
  margin-top: 18px;
}

.art-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.art-board img {
  width: 100%;
  border: 2px solid #050609;
  border-radius: 8px;
  background: #fff;
  object-fit: contain;
  box-shadow: var(--shadow-hard);
}

.art-board img:first-child {
  grid-column: span 2;
  width: min(58%, 360px);
  justify-self: center;
}

.vibefid-panel {
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  border: 2px solid #050609;
  border-radius: 8px;
  background: #e9f4ff;
  color: #050609;
  box-shadow: var(--shadow-hard);
  overflow: hidden;
}

.vibefid-image {
  display: grid;
  min-height: 360px;
  place-items: center;
  border-right: 2px solid #050609;
  background:
    linear-gradient(90deg, rgb(5 6 9 / 0.1) 0 1px, transparent 1px 28px),
    linear-gradient(0deg, rgb(5 6 9 / 0.1) 0 1px, transparent 1px 28px),
    linear-gradient(135deg, var(--cyan), var(--pink));
}

.vibefid-image img {
  width: min(250px, 78%);
  border: 2px solid #050609;
  border-radius: 8px;
  box-shadow: var(--shadow-hard);
}

.vibefid-copy {
  padding: 28px;
}

.vibefid-copy h3 {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 2.4rem;
  line-height: 1;
  text-transform: uppercase;
}

.vibefid-copy p {
  color: #1f2731;
  font-weight: 800;
  line-height: 1.5;
}

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

.source-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.tweet-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.single-tweet {
  grid-template-columns: minmax(0, 640px);
}

.tweet-card {
  min-height: 360px;
  padding: 16px;
  border: 2px solid #050609;
  border-radius: 8px;
  background:
    linear-gradient(180deg, #ffffff 0%, #dce8f4 72%, #aebfce 100%);
  color: #050609;
  box-shadow: var(--shadow-hard);
  overflow: hidden;
}

.tweet-card h3 {
  margin: 0 0 14px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 1.65rem;
  line-height: 1;
  text-transform: uppercase;
}

.tweet-card .twitter-tweet {
  min-height: 220px;
  margin: 0 !important;
  padding: 14px;
  border: 2px dashed #050609;
  border-radius: 8px;
  background: #111820;
  color: #d6e2ec;
  font-weight: 900;
}

.source-tile {
  min-height: 150px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  border: 2px solid #050609;
  border-radius: 8px;
  background:
    linear-gradient(180deg, #ffffff 0%, #d5e0ec 74%, #a3b2c0 100%);
  color: #050609;
  text-decoration: none;
  box-shadow: var(--shadow-hard);
}

.source-tile strong {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 1.5rem;
  line-height: 1;
  text-transform: uppercase;
}

.source-tile span {
  color: #26313c;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.35;
}

.source-tile:hover,
.source-tile:focus-visible {
  transform: translate(2px, 2px);
  box-shadow: 4px 4px 0 #050609;
}

.only-traits-page {
  background:
    linear-gradient(90deg, rgb(255 242 107 / 0.12) 0 1px, transparent 1px 56px),
    linear-gradient(0deg, rgb(86 241 255 / 0.12) 0 1px, transparent 1px 56px),
    radial-gradient(circle at 18% 18%, rgb(201 255 75 / 0.26), transparent 18rem),
    radial-gradient(circle at 80% 14%, rgb(255 79 216 / 0.22), transparent 18rem),
    linear-gradient(135deg, #0f1420, #080a12 62%, #111820);
}

.only-hero .lead {
  max-width: 700px;
}

.only-hero-frame img {
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.only-hero-frame img:first-child {
  inset: 46px 50px auto auto;
  width: min(68%, 420px);
  background: linear-gradient(135deg, var(--lime), var(--cyan), var(--pink));
}

.only-hero-frame img:nth-child(2) {
  left: 16px;
  bottom: 60px;
  width: min(42%, 220px);
  opacity: 0.88;
}

.only-hero-frame img:nth-child(3) {
  right: 0;
  bottom: 42px;
  width: min(38%, 190px);
  opacity: 0.8;
}

.only-board {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.only-board article {
  min-height: 132px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 2px solid #050609;
  border-radius: 8px;
  background:
    linear-gradient(180deg, #ffffff, #dce8f4),
    #fff;
  color: #050609;
  box-shadow: var(--shadow-hard);
}

.only-board strong {
  display: grid;
  width: 38px;
  height: 34px;
  place-items: center;
  border: 2px solid #050609;
  border-radius: 5px;
  background: #050609;
  color: var(--lime);
  font-weight: 900;
}

.only-board span {
  color: #050609;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 1.35rem;
  line-height: 1;
  text-transform: uppercase;
}

@keyframes boot-in {
  from {
    opacity: 0;
    filter: blur(2px) saturate(1.6);
  }
  to {
    opacity: 1;
    filter: none;
  }
}

@keyframes window-glow {
  0%,
  100% {
    filter: saturate(1);
  }
  50% {
    filter: saturate(1.12) brightness(1.04);
  }
}

@keyframes float-sticker {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -8px;
  }
}

@keyframes spin-soft {
  to {
    rotate: 360deg;
  }
}

@keyframes ticker-slide {
  from {
    translate: 0 0;
  }
  to {
    translate: -42px 0;
  }
}

@media (max-width: 980px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    min-height: auto;
    padding-top: 178px;
    grid-template-columns: 1fr;
  }

  .hero-media {
    order: 0;
    min-height: 430px;
  }

  .hero-shot-main {
    left: 24px;
    right: auto;
    top: auto;
    bottom: 30px;
    width: 190px;
  }

  .hero-shot-one {
    right: 36px;
    bottom: 44px;
    width: 150px;
  }

  .hero-shot-two {
    left: auto;
    right: 42px;
    top: 20px;
    width: 126px;
    display: block;
  }

  .hero-portrait-card {
    right: 50%;
    top: 58px;
    width: min(300px, 76%);
    transform: translateX(50%) rotate(2deg);
  }

  h1 {
    font-size: 4.35rem;
  }

  .lead {
    font-size: 1rem;
  }

  .link-grid,
  .experience-grid,
  .project-grid,
  .timeline,
  .story-grid,
  .tweet-grid,
  .source-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-featured,
  .upcoming,
  .story-hero,
  .art-layout,
  .vibefid-panel {
    grid-template-columns: 1fr;
  }

  .upcoming-art {
    border-right: 0;
    border-bottom: 2px solid #050609;
  }

  .story-hero {
    padding-top: 178px;
  }

  .story-hero-frame {
    min-height: 440px;
  }

  .vibefid-image {
    border-right: 0;
    border-bottom: 2px solid #050609;
  }
}

@media (max-width: 620px) {
  .nav-links {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nav-links a {
    text-align: center;
  }

  .hero {
    min-height: auto;
    padding: 190px 18px 76px;
  }

  .hero-media {
    min-height: 380px;
  }

  .hero-copy {
    width: 100%;
    padding: 0 16px 18px;
  }

  .window-titlebar {
    margin-right: -16px;
    margin-left: -16px;
  }

  h1 {
    max-width: 100%;
    font-size: 2.85rem;
    text-shadow:
      3px 3px 0 #050609,
      6px 6px 0 var(--pink),
      9px 9px 0 var(--cyan);
  }

  .hero-shot-main {
    left: 4px;
    bottom: 26px;
    width: 150px;
    opacity: 0.96;
  }

  .hero-shot-one {
    right: 4px;
    bottom: 34px;
    width: 122px;
  }

  .hero-shot-two {
    left: auto;
    right: 16px;
    top: 6px;
    width: 104px;
  }

  .hero-shot-three {
    right: 92px;
    top: 122px;
    width: 86px;
  }

  .hero-shot-four {
    left: 112px;
    bottom: 8px;
    width: 84px;
  }

  .hero-portrait-card {
    top: 54px;
    width: min(250px, 78%);
  }

  .hero-sticker {
    font-size: 0.68rem;
  }

  .sticker-creator {
    right: 8px;
    top: 156px;
  }

  .sticker-bahia {
    left: 4px;
    top: 178px;
  }

  .hero-actions,
  .project-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .section,
  .experience-section {
    width: 100%;
    padding: 58px 18px;
  }

  .section-heading h2 {
    font-size: 2.25rem;
  }

  .link-grid,
  .experience-grid,
  .project-grid,
  .timeline,
  .story-grid,
  .story-facts,
  .art-board,
  .tweet-grid,
  .source-grid {
    grid-template-columns: 1fr;
  }

  .link-tile.wide {
    grid-column: auto;
  }

  .project-image img {
    min-height: 240px;
  }

  .project.compact {
    grid-template-rows: 230px 1fr;
  }

  .vmw-card-stack {
    min-height: 380px;
  }

  .vmw-card-stack img {
    width: min(58%, 210px);
  }

  .vmw-card-stack img:first-child {
    left: 18px;
    top: 28px;
  }

  .vmw-card-stack img:nth-child(2) {
    right: 18px;
    top: 86px;
  }

  .vmw-card-stack img:nth-child(3) {
    left: 52px;
    bottom: 24px;
  }

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

  .upcoming-art {
    min-height: 300px;
  }

  .upcoming-art img {
    width: 158px;
  }

  .trait-set-stack {
    min-height: 380px;
  }

  .trait-set-stack img {
    width: min(46%, 170px);
  }

  .trait-set-stack img:first-child {
    left: 18px;
    top: 24px;
  }

  .trait-set-stack img:nth-child(2) {
    right: 18px;
    top: 58px;
  }

  .trait-set-stack img:nth-child(3) {
    left: 32px;
    bottom: 28px;
  }

  .trait-set-stack img:nth-child(4) {
    right: 28px;
    bottom: 18px;
  }

  .upcoming-copy,
  .project-copy {
    padding: 20px;
  }

  .story-hero {
    width: 100%;
    min-height: auto;
    padding: 190px 18px 58px;
  }

  .story-hero-copy h1 {
    max-width: 8ch;
  }

  .story-hero-frame {
    min-height: 340px;
  }

  .story-hero-frame img:first-child,
  .story-hero-frame img:nth-child(2) {
    width: 100%;
  }

  .story-hero-frame img:first-child {
    inset: 0 0 auto;
  }

  .story-hero-frame img:nth-child(2) {
    left: 0;
    bottom: 0;
    width: 46%;
  }

  .story-hero-frame img:nth-child(3) {
    right: 0;
    bottom: 8px;
    width: 46%;
  }

  .story-stamp {
    right: 8px;
    bottom: 50px;
  }

  .story-card {
    min-height: 250px;
  }

  .art-copy,
  .vibefid-copy {
    padding: 20px;
  }

  .art-board img:first-child {
    grid-column: auto;
    min-height: 240px;
  }
}
