@font-face {
  font-family: "Geist Mono";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/assets/fonts/geist-mono-latin.woff2") format("woff2");
}

:root {
  color-scheme: dark;
  --bg: #0e0e0e;
  --text: #f0f0f0;
  --muted: #707070;
  --soft: #b0b0b0;
  --surface: #242424;
  --line: #1d1d1d;
  --paper: #f1f1ee;
  --text-color-brand: #fc532a;
  --background-color-brand: #fc532a;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

:root[data-theme="light"] {
  color-scheme: light;
  --bg: #f4f4f1;
  --text: #171717;
  --muted: #777;
  --soft: #555;
  --surface: #deded9;
  --line: #d7d7d1;
  --paper: #fff;
}

:root[data-theme="blue"] {
  color-scheme: dark;
  --bg: #0844c6;
  --text: #ffffff;
  --muted: rgb(255 255 255 / 74%);
  --soft: rgb(255 255 255 / 88%);
  --surface: rgb(255 255 255 / 13%);
  --line: rgb(255 255 255 / 18%);
  --paper: #eef3ff;
}

* {
  box-sizing: border-box;
}

::selection {
  background: color-mix(in srgb, var(--background-color-brand) 18%, transparent);
  color: var(--text-color-brand);
}

:root[data-theme="blue"] ::selection {
  background: rgb(255 255 255 / 22%);
  color: #fff;
}

html {
  background: var(--bg);
  transition: color 320ms ease;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--soft);
  font-size: 14px;
  line-height: 22px;
  -webkit-font-smoothing: antialiased;
  transition: color 320ms ease;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: var(--theme-wipe-color, transparent);
  clip-path: circle(0 at var(--theme-wipe-x, 50%) var(--theme-wipe-y, 50%));
  content: "";
  pointer-events: none;
}

body::after {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
  width: 176px;
  height: 176px;
  border-radius: 999px;
  background: var(--theme-preview-color, transparent);
  content: "";
  opacity: 0;
  pointer-events: none;
  transform: translate3d(var(--theme-preview-x, 50vw), var(--theme-preview-y, 50vh), 0) translate3d(-50%, -50%, 0) scale(0.58);
  transition:
    opacity 160ms ease,
    transform 360ms var(--ease-out);
}

body.is-theme-wiping::before {
  z-index: 0;
  animation: theme-wipe 620ms cubic-bezier(0.65, 0, 0.35, 1) both;
}

body.is-theme-previewing::after {
  opacity: 1;
  transform: translate3d(var(--theme-preview-x, 50vw), var(--theme-preview-y, 50vh), 0) translate3d(-50%, -50%, 0) scale(1);
  will-change: opacity, transform;
}

body.is-theme-wiping::after {
  opacity: 0;
}

body.is-theme-wiping {
  background: var(--theme-base-color);
  transition: color 320ms ease;
}

.cursor-coordinates {
  --cursor-x: 50vw;
  --cursor-y: 50vh;
  position: fixed;
  inset: 0;
  z-index: 2147483000;
  color: #fff;
  opacity: 0;
  pointer-events: none;
  transition: opacity 120ms ease;
  mix-blend-mode: difference;
}

.cursor-coordinates.is-visible {
  opacity: 0.32;
}

.cursor-coordinates-line,
.cursor-coordinates-reticle,
.cursor-coordinates-label,
.cursor-coordinates-tick {
  position: absolute;
  will-change: transform;
}

.cursor-coordinates-line {
  background-image: linear-gradient(90deg, currentColor 1px, transparent 1px);
  background-size: 4px 1px;
}

.cursor-coordinates-line-x {
  top: 0;
  left: 0;
  width: 100vw;
  height: 1px;
  transform: translate3d(0, var(--cursor-y), 0);
}

.cursor-coordinates-line-y {
  top: 0;
  left: 0;
  width: 1px;
  height: 100vh;
  background-image: linear-gradient(180deg, currentColor 1px, transparent 1px);
  background-size: 1px 4px;
  transform: translate3d(var(--cursor-x), 0, 0);
}

.cursor-coordinates-reticle {
  top: 0;
  left: 0;
  width: 15px;
  height: 15px;
  border: 1px solid currentColor;
  border-radius: 50%;
  transform: translate3d(calc(var(--cursor-x) - 7px), calc(var(--cursor-y) - 7px), 0);
}

.cursor-coordinates-reticle::before,
.cursor-coordinates-reticle::after {
  position: absolute;
  inset: 50% auto auto 50%;
  background: currentColor;
  content: "";
  transform: translate(-50%, -50%);
}

.cursor-coordinates-reticle::before {
  width: 21px;
  height: 1px;
}

.cursor-coordinates-reticle::after {
  width: 1px;
  height: 21px;
}

.cursor-coordinates-label {
  top: 0;
  left: 0;
  padding: 3px 5px;
  font-family: "Geist Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
  font-variant-numeric: tabular-nums;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  white-space: pre;
  transform: translate3d(calc(var(--cursor-x) + 12px), calc(var(--cursor-y) + 11px), 0);
}

.cursor-coordinates-corner {
  position: absolute;
  width: 12px;
  height: 12px;
  border-color: currentColor;
  border-style: solid;
  border-width: 0;
}

.cursor-coordinates-corner-tl {
  top: 20px;
  left: 20px;
  border-top-width: 1px;
  border-left-width: 1px;
}

.cursor-coordinates-corner-tr {
  top: 20px;
  right: 20px;
  border-top-width: 1px;
  border-right-width: 1px;
}

.cursor-coordinates-corner-bl {
  bottom: 20px;
  left: 20px;
  border-bottom-width: 1px;
  border-left-width: 1px;
}

.cursor-coordinates-corner-br {
  right: 20px;
  bottom: 20px;
  border-right-width: 1px;
  border-bottom-width: 1px;
}

.cursor-coordinates-tick {
  background: currentColor;
}

.cursor-coordinates-tick-top,
.cursor-coordinates-tick-bottom {
  left: 0;
  width: 1px;
  height: 8px;
  transform: translate3d(var(--cursor-x), 0, 0);
}

.cursor-coordinates-tick-top {
  top: 0;
}

.cursor-coordinates-tick-bottom {
  bottom: 0;
}

.cursor-coordinates-tick-right,
.cursor-coordinates-tick-left {
  top: 0;
  width: 8px;
  height: 1px;
  transform: translate3d(0, var(--cursor-y), 0);
}

.cursor-coordinates-tick-right {
  right: 0;
}

.cursor-coordinates-tick-left {
  left: 0;
}

body.is-gallery-open .cursor-coordinates,
body:has(.build-meta:is(:hover, :focus-within)) .cursor-coordinates,
body.is-theme-wiping .cursor-coordinates {
  opacity: 0;
}

@keyframes theme-wipe {
  to {
    clip-path: circle(var(--theme-wipe-radius) at var(--theme-wipe-x) var(--theme-wipe-y));
  }
}

@keyframes blur-reveal {
  from {
    opacity: 0;
    filter: blur(12px);
    transform: translateY(10px);
  }

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

html:not(.is-page-revealed):not(.is-page-revealing) .site-nav,
html:not(.is-page-revealed):not(.is-page-revealing) .build-meta,
html:not(.is-page-revealed):not(.is-page-revealing) .avatar,
html:not(.is-page-revealed):not(.is-page-revealing) .language-switch,
html:not(.is-page-revealed):not(.is-page-revealing) .intro h1,
html:not(.is-page-revealed):not(.is-page-revealing) .currently-exploring,
html:not(.is-page-revealed):not(.is-page-revealing) .availability,
html:not(.is-page-revealed):not(.is-page-revealing) .appearance,
html:not(.is-page-revealed):not(.is-page-revealing) .covers > .cover,
html:not(.is-page-revealed):not(.is-page-revealing) .works-list > .work,
html:not(.is-page-revealed):not(.is-page-revealing) .not-found > *,
html:not(.is-page-revealed):not(.is-page-revealing) footer {
  opacity: 0;
  filter: blur(12px);
  transform: translateY(10px);
}

html.is-page-revealing .site-nav,
html.is-page-revealing .build-meta,
html.is-page-revealing .avatar,
html.is-page-revealing .language-switch,
html.is-page-revealing .intro h1,
html.is-page-revealing .currently-exploring,
html.is-page-revealing .availability,
html.is-page-revealing .appearance,
html.is-page-revealing .covers > .cover,
html.is-page-revealing .works-list > .work,
html.is-page-revealing .not-found > *,
html.is-page-revealing footer {
  animation: blur-reveal 680ms var(--ease-out) both;
}


html.is-page-revealing .site-nav {
  animation-delay: 40ms;
}

html.is-page-revealing .build-meta {
  animation-delay: 70ms;
}

html.is-page-revealing .avatar {
  animation-delay: 90ms;
}


html.is-page-revealing .language-switch {
  animation-delay: 150ms;
}

html.is-page-revealing .intro h1 {
  animation-delay: 180ms;
}

html.is-page-revealing .currently-exploring {
  animation-delay: 210ms;
}

html.is-page-revealing .availability {
  animation-delay: 240ms;
}

html.is-page-revealing .appearance {
  animation-delay: 270ms;
}

html.is-page-revealing .not-found > :nth-child(1) {
  animation-delay: 140ms;
}

html.is-page-revealing .not-found > :nth-child(2) {
  animation-delay: 200ms;
}

html.is-page-revealing .not-found > :nth-child(3) {
  animation-delay: 260ms;
}

html.is-page-revealing .covers > .cover:nth-child(1),
html.is-page-revealing .works-list > .work:nth-child(1) {
  animation-delay: 330ms;
}

html.is-page-revealing .covers > .cover:nth-child(2),
html.is-page-revealing .works-list > .work:nth-child(2) {
  animation-delay: 390ms;
}

html.is-page-revealing .covers > .cover:nth-child(3),
html.is-page-revealing .works-list > .work:nth-child(3) {
  animation-delay: 450ms;
}

html.is-page-revealing .covers > .cover:nth-child(4),
html.is-page-revealing .works-list > .work:nth-child(4) {
  animation-delay: 510ms;
}

html.is-page-revealing footer {
  animation-delay: 590ms;
}

body.is-gallery-open .site-nav,
body.is-gallery-open .build-meta,
body.is-gallery-open .intro > :not(.avatar-row),
body.is-gallery-open .covers,
body.is-gallery-open .works-list,
body.is-gallery-open footer {
  filter: blur(8px);
  opacity: 0.3;
  pointer-events: none;
  user-select: none;
}

body:has(.build-meta:is(:hover, :focus-within)) .site-nav,
body:has(.build-meta:is(:hover, :focus-within)) .shell {
  filter: blur(8px);
  opacity: 0.28;
  pointer-events: none;
  user-select: none;
}

body:has(.build-meta:is(:hover, :focus-within)) {
  overflow-x: hidden;
  overflow-y: clip;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.shell {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 48px));
  margin: 0 auto;
  padding: 74px 0 36px;
}

.tabs {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav {
  position: fixed;
  top: 28px;
  left: 28px;
  z-index: 10;
}

.build-meta {
  position: fixed;
  top: 28px;
  right: 30px;
  z-index: 45;
  display: flex;
  min-height: 36px;
  align-items: center;
  color: color-mix(in srgb, var(--muted) 86%, var(--bg));
  cursor: default;
  font-family: "Geist Mono", "SF Mono", "Menlo", "Monaco", "Consolas", monospace;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1;
  outline: 0;
}

.build-meta:focus-visible {
  border-radius: 10px;
  outline: 1px solid color-mix(in srgb, var(--soft) 42%, transparent);
  outline-offset: 8px;
}

.build-meta::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: rgba(14, 14, 14, 0.12);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

:root[data-theme="light"] .build-meta::before {
  background: rgba(244, 244, 241, 0.24);
}

.build-meta:hover::before,
.build-meta:focus-within::before {
  opacity: 1;
}

.build-meta::after {
  position: absolute;
  top: -18px;
  right: -30px;
  z-index: 0;
  width: min(460px, calc(100vw - 18px));
  height: 310px;
  content: "";
  pointer-events: none;
}

.build-meta:hover::after,
.build-meta:focus-within::after {
  pointer-events: auto;
}

.build-line {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  transition: color 160ms ease;
}

.build-meta:hover .build-line,
.build-meta:focus-within .build-line {
  color: var(--soft);
}

.terminal-prompt,
.terminal-pipe {
  color: color-mix(in srgb, var(--muted) 78%, var(--bg));
}

.terminal-command {
  color: color-mix(in srgb, var(--soft) 86%, var(--bg));
}

.terminal-flag {
  color: #00df7a;
}

.terminal-string {
  color: #ff9a24;
}

.activity-popover {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 2;
  display: grid;
  width: min(420px, calc(100vw - 56px));
  gap: 9px;
  margin: 0;
  padding: 0;
  color: var(--soft);
  list-style: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transform-origin: top right;
  transition:
    opacity 160ms ease,
    transform 180ms var(--ease-out),
    visibility 0s linear 180ms;
  visibility: hidden;
}

.build-meta:hover .activity-popover,
.build-meta:focus-within .activity-popover {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  transition-delay: 0ms;
  visibility: visible;
}

.activity-popover li {
  display: grid;
  width: 100%;
  min-width: 0;
  grid-template-columns: 54px minmax(0, 1fr) 132px;
  align-items: center;
  gap: 6px;
  color: color-mix(in srgb, var(--soft) 74%, var(--bg));
  font-size: 12px;
  line-height: 1.2;
  white-space: nowrap;
  opacity: 0;
  filter: blur(7px);
  transform: translateY(-8px);
  transition:
    filter 280ms var(--ease-out),
    opacity 190ms ease,
    transform 280ms var(--ease-out);
  transition-delay: 0ms;
}

.build-meta:hover .activity-popover li,
.build-meta:focus-within .activity-popover li {
  filter: blur(0);
  opacity: 1;
  transform: translateY(0);
  transition-delay: calc(var(--cascade-index, 0) * 42ms);
}

.activity-popover.is-ready li {
  transition:
    filter 140ms ease,
    opacity 90ms linear,
    transform 140ms ease,
    color 90ms linear,
    background-color 90ms linear;
}

.activity-popover .activity-summary {
  grid-template-columns: max-content minmax(0, 1fr);
  gap: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid color-mix(in srgb, var(--line) 78%, transparent);
}

.activity-summary .activity-main {
  grid-column: 2;
  justify-self: end;
}

.activity-month-tabs {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  overflow: visible !important;
}

.activity-month-tabs button {
  padding: 0;
  border: 0;
  background: none;
  color: color-mix(in srgb, var(--muted) 62%, var(--bg));
  cursor: pointer;
  font: inherit;
  transition: color 140ms ease;
}

.activity-month-tabs button:hover,
.activity-month-tabs button:focus-visible,
.activity-month-tabs button[aria-pressed="true"] {
  color: color-mix(in srgb, var(--soft) 90%, var(--bg));
}

.activity-month-tabs button:focus-visible {
  border-radius: 2px;
  outline: 1px solid currentColor;
  outline-offset: 3px;
}

.activity-popover li > span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.activity-date,
.activity-note {
  color: color-mix(in srgb, var(--muted) 82%, var(--bg));
}

.activity-date {
  overflow: visible;
  text-overflow: clip;
}

.activity-date small {
  margin-left: 8px;
  color: color-mix(in srgb, var(--muted) 78%, var(--bg));
  font: inherit;
}

.activity-note {
  text-align: right;
}

.activity-main {
  color: color-mix(in srgb, var(--soft) 82%, var(--bg));
}

.activity-private {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.activity-private svg {
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.activity-diff {
  display: inline-flex;
  justify-content: flex-end;
  gap: 8px;
}

.activity-additions {
  color: #00df7a;
}

.activity-deletions {
  color: #ff5b57;
}

.activity-row,
.activity-bar {
  transition:
    filter 160ms ease,
    opacity 130ms ease,
    transform 160ms ease,
    color 110ms ease,
    background-color 110ms ease;
}

.activity-row {
  cursor: default;
}

.activity-popover.is-ready li,
.activity-popover.is-inspecting-day li {
  transition-delay: 0ms !important;
}

.activity-popover.is-ready .activity-bar,
.activity-popover.is-inspecting-day .activity-bar {
  transition-delay: 0ms !important;
}

.activity-popover.is-inspecting-day .activity-row.is-muted,
.activity-popover.is-inspecting-day .activity-bar.is-muted {
  opacity: 0.16;
}

.activity-popover.is-inspecting-day .activity-row.is-active {
  color: var(--soft);
  opacity: 1;
}

.activity-popover.is-inspecting-day .activity-bar.is-active {
  background: #00df7a;
  opacity: 1;
}

.activity-popover .activity-chart {
  display: grid;
  width: 100%;
  height: 24px;
  grid-template-columns: repeat(var(--activity-days, 31), 1fr);
  align-items: end;
  justify-self: end;
  justify-content: end;
  gap: 2px;
  padding: 0;
}

.activity-bar {
  width: 100%;
  height: min(var(--bar-height, 2px), 24px);
  border-radius: 2px 2px 1px 1px;
  background: linear-gradient(
    to top,
    color-mix(in srgb, #ff5b57 78%, var(--bg)) 0 var(--delete-share, 0%),
    color-mix(in srgb, #00df7a 72%, var(--bg)) var(--delete-share, 0%) 100%
  );
  filter: blur(2px);
  opacity: 0.9;
  transform: scaleY(0.2);
  transform-origin: bottom;
  transition:
    filter 260ms var(--ease-out),
    opacity 180ms ease,
    transform 300ms var(--ease-out),
    background-color 110ms ease;
}

.build-meta:hover .activity-bar,
.build-meta:focus-within .activity-bar {
  filter: blur(0);
  transform: scaleY(1);
  transition-delay: calc(70ms + var(--bar-index, 0) * 9ms);
}

.activity-bar.is-empty,
.activity-bar.is-future {
  height: 2px;
  background: color-mix(in srgb, var(--soft) 14%, var(--bg));
  opacity: 0.65;
}

.activity-bar.is-future {
  opacity: 0.22;
}

.tab {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  text-transform: lowercase;
  transition: color 160ms ease, background-color 160ms ease, transform 140ms var(--ease-out);
}

.tab:hover {
  color: var(--text);
}

.tab.is-locked {
  cursor: default;
}

.tab.is-locked:hover {
  color: var(--muted);
}

.tab.is-locked svg {
  width: 13px;
  height: 13px;
  opacity: 0.72;
}

.tab:active,
.appearance:active {
  transform: scale(0.97);
}

.tab.is-active {
  background: var(--surface);
  color: var(--text);
}

.tab svg,
.appearance svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.intro {
  max-width: 570px;
  margin-top: 76px;
}

.site-nav,
.intro > :not(.avatar-row),
.covers,
.works-list,
footer {
  transition: filter 180ms var(--ease-out), opacity 180ms ease;
}

.avatar-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin: 0 0 48px;
}

.avatar-stage {
  position: relative;
  z-index: 20;
  width: 62px;
  height: 62px;
  margin: 0;
  outline: 0;
}

.avatar-stage::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: rgba(14, 14, 14, 0.16);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

:root[data-theme="light"] .avatar-stage::before {
  background: rgba(244, 244, 241, 0.3);
}

.avatar-stage::after {
  position: absolute;
  right: -6px;
  bottom: -6px;
  z-index: 4;
  width: 8px;
  height: 8px;
  border-right: 1px solid color-mix(in srgb, var(--muted) 82%, var(--bg));
  border-bottom: 1px solid color-mix(in srgb, var(--muted) 82%, var(--bg));
  border-bottom-right-radius: 10px;
  content: "";
  opacity: 0.86;
  pointer-events: none;
  transition: opacity 160ms ease, transform 180ms var(--ease-out);
}

.avatar-stage:hover::after,
.avatar-stage:focus-visible::after {
  opacity: 0.92;
  transform: translate(0.5px, 0.5px);
}

.avatar-stage.is-open::before,
.avatar-stage.is-locked::before {
  opacity: 1;
}

.avatar-stage.is-open::after,
.avatar-stage.is-locked::after {
  opacity: 0;
}

.avatar {
  display: block;
  width: 62px;
  height: 62px;
  border-radius: 10px;
  object-fit: cover;
  transition: transform 180ms var(--ease-out), box-shadow 180ms ease;
}

.avatar-stage.is-open .avatar,
.avatar-stage.is-locked .avatar {
  transform: scale(1.04);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.36);
}

.gallery-lock {
  position: absolute;
  right: -13px;
  bottom: -13px;
  z-index: 30;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(24, 24, 24, 0.88);
  color: #f0f0f0;
  cursor: pointer;
  opacity: 0;
  transform: translateY(4px) scale(0.9);
  transition:
    opacity 160ms ease,
    transform 180ms var(--ease-out),
    background-color 160ms ease;
}

.gallery-lock:hover {
  background: rgba(42, 42, 42, 0.94);
}

.gallery-lock svg {
  grid-area: 1 / 1;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  overflow: visible;
}

.gallery-lock .lock-icon {
  display: none;
}

.avatar-stage.is-open .gallery-lock,
.avatar-stage.is-locked .gallery-lock {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.avatar-stage.is-locked .gallery-lock {
  background: #f0f0f0;
  color: #111;
}

.avatar-stage.is-locked .gallery-lock .unlock-icon {
  display: none;
}

.avatar-stage.is-locked .gallery-lock .lock-icon {
  display: block;
}

.gallery-close {
  position: fixed;
  top: 54px;
  right: 28px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(24, 24, 24, 0.9);
  color: #f0f0f0;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition:
    opacity 160ms ease,
    transform 180ms var(--ease-out),
    background-color 160ms ease;
}

.gallery-close:hover {
  background: rgba(42, 42, 42, 0.96);
}

.gallery-close span {
  font-size: 20px;
  line-height: 1;
}

.gallery-close small {
  color: #9a9a9a;
  font-size: 12px;
  font-weight: 500;
  transform: translateY(1px);
}

.avatar-stage.is-locked .gallery-close {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.composition-copy {
  position: fixed;
  top: 54px;
  right: 154px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(24, 24, 24, 0.9);
  color: #b8b8b8;
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition:
    color 160ms ease,
    opacity 160ms ease,
    transform 180ms var(--ease-out),
    background-color 160ms ease;
}

.composition-randomize {
  right: 285px;
}

.composition-grid-toggle {
  right: 405px;
}

.composition-copy[hidden] {
  display: none;
}

.composition-copy:hover {
  background: rgba(42, 42, 42, 0.96);
  color: #f0f0f0;
}

.composition-copy svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.has-composition-editor .avatar-stage.is-locked .composition-copy {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.composition-copy.is-copied {
  color: #00df7a;
}

.composition-grid-toggle.is-active {
  border-color: rgba(255, 68, 68, 0.44);
  background: rgba(42, 18, 18, 0.86);
  color: #ff6b6b;
}

.composition-guide {
  position: fixed;
  inset: 0;
  z-index: 38;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 140ms ease;
}

body.is-gallery-open.is-composition-grid-visible .composition-guide {
  opacity: 1;
}

.composition-guide-frame {
  width: min(1440px, 100vw);
  height: 100vh;
  border: 1px solid rgba(255, 58, 58, 0.72);
  background:
    repeating-linear-gradient(
      90deg,
      rgba(255, 58, 58, 0.24) 0,
      rgba(255, 58, 58, 0.24) 1px,
      transparent 1px,
      transparent calc(100% / 12)
    );
  box-shadow:
    inset 0 0 0 1px rgba(255, 58, 58, 0.18),
    0 0 0 1px rgba(0, 0, 0, 0.12);
}

.composition-editor {
  position: fixed;
  top: 98px;
  right: 154px;
  z-index: 40;
  display: none;
  width: min(260px, calc(100vw - 32px));
  gap: 10px;
  padding: 11px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(24, 24, 24, 0.9);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
  color: #b8b8b8;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition:
    opacity 160ms ease,
    transform 180ms var(--ease-out);
}

.composition-editor-title {
  max-width: 100%;
  overflow: hidden;
  color: #f0f0f0;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.composition-control {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 42px;
  gap: 8px;
  align-items: center;
  color: #8f8f8f;
  font-size: 11px;
}

.composition-control input {
  width: 100%;
  accent-color: #d6d6d6;
}

.composition-control output {
  color: #cfcfcf;
  font-variant-numeric: tabular-nums;
  text-align: right;
}

.composition-actions {
  display: flex;
  gap: 7px;
}

.composition-actions button {
  display: inline-flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 0;
  padding: 7px 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(42, 42, 42, 0.72);
  color: #b8b8b8;
  cursor: pointer;
  font: inherit;
  font-size: 11px;
}

.composition-actions button:hover {
  background: rgba(56, 56, 56, 0.9);
  color: #f0f0f0;
}

.composition-actions svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.memory-cloud {
  position: fixed;
  left: 50vw;
  bottom: -9vh;
  z-index: 25;
  width: min(1060px, calc(100vw - 40px));
  aspect-ratio: 880 / 480;
  height: auto;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(22px) scale(0.96);
  transform-origin: center bottom;
  transition:
    opacity 180ms ease,
    visibility 0s linear 220ms,
    transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
  visibility: hidden;
}

.avatar-stage.is-open .memory-cloud,
.avatar-stage.is-locked .memory-cloud {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0) scale(1);
  transition-delay: 0ms;
  visibility: visible;
}

.memory-cloud .footer-collage {
  width: 100%;
  max-width: 1060px;
  margin: 0 auto;
  position: relative;
  counter-reset: collage-item;
  -webkit-touch-callout: none;
  user-select: none;
}

.memory-cloud .collage-item {
  --hover-nudge: 0deg;
  counter-increment: collage-item;
  position: absolute;
  cursor: default;
  transform-origin: 50%;
  transition:
    filter 360ms cubic-bezier(0.22, 1, 0.36, 1),
    --hover-nudge 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

.has-composition-editor .memory-cloud .collage-item {
  cursor: grab;
  touch-action: none;
}

.has-composition-editor .avatar-stage.is-open .memory-cloud .collage-item::after,
.has-composition-editor .avatar-stage.is-locked .memory-cloud .collage-item::after {
  position: absolute;
  top: -8px;
  left: 50%;
  z-index: 5;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(14, 14, 14, 0.88);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.24);
  color: #fff;
  content: counter(collage-item);
  font-family: "SF Mono", "Menlo", "Monaco", "Consolas", monospace;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

@property --hover-nudge {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

.memory-cloud .collage-item:hover {
  --hover-nudge: 3deg;
}

.memory-cloud .collage-item:nth-child(2n):hover {
  --hover-nudge: -3.5deg;
}

.memory-cloud .collage-item:nth-child(3n):hover {
  --hover-nudge: 4deg;
}

.memory-cloud .collage-item:nth-child(4n):hover {
  --hover-nudge: -2.5deg;
}

.memory-cloud .collage-item:nth-child(5n):hover {
  --hover-nudge: 3.5deg;
}

.memory-cloud .collage-item.is-dragging {
  --hover-nudge: 0deg;
  filter: drop-shadow(0 4px 10px rgba(9, 9, 11, 0.06));
  will-change: transform, filter;
}

.memory-cloud .collage-item.is-selected {
  filter:
    drop-shadow(0 0 0 rgba(255, 255, 255, 0))
    drop-shadow(0 8px 18px rgba(0, 0, 0, 0.22));
}

.memory-cloud .collage-item.is-selected::before {
  position: absolute;
  inset: -8px;
  z-index: 4;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 14px;
  content: "";
  pointer-events: none;
}

.composition-handles {
  position: absolute;
  inset: -10px;
  z-index: 9;
  pointer-events: none;
}

.composition-handle {
  position: absolute;
  z-index: 10;
  display: block;
  width: 11px;
  height: 11px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background: rgba(14, 14, 14, 0.9);
  box-shadow:
    0 1px 4px rgba(0, 0, 0, 0.26),
    inset 0 0 0 1px rgba(0, 0, 0, 0.42);
  cursor: grab;
  pointer-events: auto;
  touch-action: none;
}

.composition-handle:active {
  cursor: grabbing;
}

.composition-handle[data-corner="nw"] {
  top: 0;
  left: 0;
  cursor: nwse-resize;
  transform: translate(-50%, -50%);
}

.composition-handle[data-corner="ne"] {
  top: 0;
  right: 0;
  cursor: nesw-resize;
  transform: translate(50%, -50%);
}

.composition-handle[data-corner="se"] {
  right: 0;
  bottom: 0;
  cursor: nwse-resize;
  transform: translate(50%, 50%);
}

.composition-handle[data-corner="sw"] {
  bottom: 0;
  left: 0;
  cursor: nesw-resize;
  transform: translate(-50%, 50%);
}

.composition-handle-rotate {
  top: -28px;
  left: 50%;
  width: 15px;
  height: 15px;
  transform: translateX(-50%);
}

.composition-handle-rotate::before {
  position: absolute;
  top: 100%;
  left: 50%;
  width: 1px;
  height: 18px;
  background: rgba(255, 255, 255, 0.34);
  content: "";
  pointer-events: none;
}

.composition-item-actions {
  position: absolute;
  right: -2px;
  bottom: -36px;
  z-index: 11;
  display: flex;
  gap: 5px;
  pointer-events: auto;
}

.composition-item-action {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(14, 14, 14, 0.88);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.22);
  color: rgba(255, 255, 255, 0.78);
  cursor: pointer;
  pointer-events: auto;
}

.composition-item-action:hover {
  background: rgba(38, 38, 38, 0.94);
  color: #fff;
}

.composition-item-action svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.memory-cloud .collage-item.is-transforming,
.memory-cloud .collage-item:active {
  cursor: grabbing;
}

.memory-cloud .collage-item img {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
  user-select: none;
  -webkit-user-drag: none;
}

:root:not([data-theme="light"]) .memory-cloud .collage-item img[src$=".svg"]:not([src*="Solana"]) {
  filter: brightness(0.9) saturate(0.78);
}

.memory-cloud .collage-item.is-dragging img {
  transform: scale(1.015);
}

.language-switch {
  margin: 0 0 24px;
  color: color-mix(in srgb, var(--muted) 82%, var(--bg));
  font-size: 14px;
}

:root[data-theme="blue"] .language-switch {
  color: rgb(255 255 255 / 74%);
}

.language-switch a {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
  transition: color 160ms ease;
}

.language-switch a:hover,
.language-switch a.is-active {
  color: var(--soft);
}

.scramble-char {
  display: inline-block;
  opacity: 0.9;
  filter: blur(0.2px);
  font-variant-ligatures: none;
  transition:
    color 120ms ease,
    opacity 140ms ease,
    filter 140ms ease;
}

.scramble-char.is-code {
  color: var(--text-color-brand);
}

:root[data-theme="blue"] .scramble-char.is-code {
  color: rgb(255 255 255 / 94%);
}

.scramble-char.is-resolving {
  color: inherit;
  opacity: 0.55;
  filter: blur(2.4px);
}

.scramble-char.is-resolved {
  color: inherit;
  opacity: 1;
  filter: blur(0);
}

.scramble-space {
  opacity: 1;
  filter: none;
}

.language-switch a.is-active {
  text-decoration: none;
}

.intro h1,
.currently-exploring,
.availability {
  max-width: 570px;
  color: var(--soft);
  font-size: 14px;
  line-height: 22px;
}

.intro h1 {
  margin: 0;
  font-weight: 400;
  letter-spacing: 0;
}

.currently-exploring {
  margin: 22px 0 0;
}

.availability {
  margin: 22px 0 0;
}

.availability a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  transition:
    color 160ms ease;
}

.availability a::after {
  position: absolute;
  right: 0;
  bottom: 1px;
  left: 0;
  height: 1px;
  background: color-mix(in srgb, var(--text) 35%, transparent);
  content: "";
  pointer-events: none;
  transition: background-color 160ms ease;
}

.availability a:hover,
.availability a[data-scrambling="true"] {
  color: var(--soft);
}

.availability a:hover::after,
.availability a[data-scrambling="true"]::after {
  background: var(--text-color-brand);
}

:root[data-theme="blue"] .availability a:hover::after,
:root[data-theme="blue"] .availability a[data-scrambling="true"]::after {
  background: rgb(255 255 255 / 82%);
}

.availability a[href*="github.com"]::after,
.availability a[href*="linkedin.com"]::after {
  left: calc(0.82em + 4px);
}

.availability a[href*="github.com"]::before,
.availability a[href*="linkedin.com"]::before {
  display: inline-block;
  width: 0.82em;
  height: 0.82em;
  margin-right: 4px;
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--text) 82%, var(--soft)),
    color-mix(in srgb, var(--soft) 64%, var(--bg))
  );
  content: "";
  opacity: 0.82;
  vertical-align: -0.04em;
}

.availability a[href*="github.com"]::before {
  -webkit-mask: url("/assets/icons/github.svg") center / contain no-repeat;
  mask: url("/assets/icons/github.svg") center / contain no-repeat;
}

.availability a[href*="linkedin.com"]::before {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20.447 20.452h-3.554v-5.569c0-1.328-.027-3.037-1.852-3.037-1.853 0-2.136 1.445-2.136 2.939v5.667H9.351V9h3.414v1.561h.046c.477-.9 1.637-1.85 3.37-1.85 3.601 0 4.267 2.37 4.267 5.455v6.286zM5.337 7.433c-1.144 0-2.063-.926-2.063-2.065 0-1.138.92-2.063 2.063-2.063 1.14 0 2.064.925 2.064 2.063 0 1.139-.925 2.065-2.064 2.065zm1.782 13.019H3.555V9h3.564v11.452zM22.225 0H1.771C.792 0 0 .774 0 1.729v20.542C0 23.227.792 24 1.771 24h20.451C23.2 24 24 23.227 24 22.271V1.729C24 .774 23.2 0 22.222 0h.003z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20.447 20.452h-3.554v-5.569c0-1.328-.027-3.037-1.852-3.037-1.853 0-2.136 1.445-2.136 2.939v5.667H9.351V9h3.414v1.561h.046c.477-.9 1.637-1.85 3.37-1.85 3.601 0 4.267 2.37 4.267 5.455v6.286zM5.337 7.433c-1.144 0-2.063-.926-2.063-2.065 0-1.138.92-2.063 2.063-2.063 1.14 0 2.064.925 2.064 2.063 0 1.139-.925 2.065-2.064 2.065zm1.782 13.019H3.555V9h3.564v11.452zM22.225 0H1.771C.792 0 0 .774 0 1.729v20.542C0 23.227.792 24 1.771 24h20.451C23.2 24 24 23.227 24 22.271V1.729C24 .774 23.2 0 22.222 0h.003z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.worldwide-clock {
  position: relative;
  display: inline-block;
  z-index: 1;
  isolation: isolate;
  white-space: nowrap;
}

.worldwide-clock::before {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: color-mix(in srgb, var(--bg) 10%, transparent);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.worldwide-clock:hover,
.worldwide-clock:focus-within {
  z-index: 90;
}

.worldwide-clock:hover::before,
.worldwide-clock:focus-within::before {
  opacity: 1;
}

.worldwide-clock-link {
  position: relative;
  z-index: 52;
  display: inline-block;
  color: var(--soft);
  text-decoration: none;
  transition: color 160ms ease;
}

.worldwide-clock-link::after {
  position: absolute;
  right: 0;
  bottom: 1px;
  left: 0;
  height: 1px;
  background: color-mix(in srgb, var(--text) 35%, transparent);
  content: "";
  pointer-events: none;
  transition: background-color 160ms ease;
}

.worldwide-clock:hover .worldwide-clock-link,
.worldwide-clock:focus-within .worldwide-clock-link {
  color: var(--soft);
}

.worldwide-clock:hover .worldwide-clock-link::after,
.worldwide-clock:focus-within .worldwide-clock-link::after {
  background: var(--text-color-brand);
}

.worldwide-clock-panel {
  position: absolute;
  top: calc(100% + 11px);
  left: 50%;
  z-index: 52;
  display: grid;
  width: max-content;
  min-width: 0;
  gap: 1px;
  padding: 4px;
  border: 1px solid color-mix(in srgb, var(--line) 72%, transparent);
  border-radius: 7px;
  background: color-mix(in srgb, var(--bg) 72%, transparent);
  box-shadow: 0 12px 28px color-mix(in srgb, #000 18%, transparent);
  color: var(--muted);
  filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -4px);
  transform-origin: top center;
  transition:
    filter 180ms ease,
    opacity 150ms ease,
    transform 220ms var(--ease-out),
    visibility 0s linear 180ms;
  visibility: hidden;
}

.worldwide-clock:hover .worldwide-clock-panel,
.worldwide-clock:focus-within .worldwide-clock-panel {
  filter: blur(0);
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
  transition-delay: 0ms;
  visibility: visible;
}

.worldwide-clock-row {
  display: grid;
  grid-template-columns: 36px 76px 5px 22px;
  gap: 4px;
  align-items: center;
  justify-content: start;
  min-height: 22px;
  padding: 0 6px;
  border-radius: 4px;
  background: color-mix(in srgb, var(--surface) 18%, transparent);
  font-family: "Geist Mono", "SF Mono", "Menlo", "Monaco", "Consolas", monospace;
  line-height: 1;
  filter: blur(7px);
  opacity: 0;
  transform: translateY(-5px);
  transition:
    filter 240ms var(--ease-out),
    opacity 180ms ease,
    transform 260ms var(--ease-out);
  transition-delay: 0ms;
}

.worldwide-clock-row:nth-child(even) {
  background: color-mix(in srgb, var(--surface) 30%, transparent);
}

.worldwide-clock:hover .worldwide-clock-row,
.worldwide-clock:focus-within .worldwide-clock-row {
  filter: blur(0);
  opacity: 1;
  transform: translateY(0);
  transition-delay: calc(var(--i) * 42ms);
}

.worldwide-clock-time {
  display: inline-block;
  min-width: 76px;
  color: var(--soft);
  font-size: 12px;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
  text-align: right;
}

.worldwide-clock-flow {
  display: none;
  grid-template-columns: 2ch auto 2ch max-content;
  gap: 0;
  align-items: center;
}

.has-number-flow .worldwide-clock-flow {
  display: inline-grid;
}

.has-number-flow .worldwide-clock-fallback {
  display: none;
}

.worldwide-clock-flow number-flow {
  display: inline-block;
  width: 1.9ch;
  line-height: 0.92;
  --number-flow-mask-height: 0.12em;
  --number-flow-mask-width: 0.16em;
}

.worldwide-clock-flow > span {
  color: color-mix(in srgb, var(--soft) 82%, var(--bg));
  transform: translateY(-0.02em);
}

.worldwide-clock-flow .worldwide-clock-seconds {
  color: color-mix(in srgb, var(--soft) 82%, var(--bg));
}

.worldwide-clock-row abbr,
.worldwide-clock-divider,
.worldwide-clock-delta {
  color: color-mix(in srgb, var(--soft) 64%, var(--bg));
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  text-decoration: none;
}

.worldwide-clock-divider,
.worldwide-clock-delta {
  color: color-mix(in srgb, var(--muted) 82%, var(--bg));
  font-size: 10px;
}

.appearance {
  display: inline-flex;
  position: relative;
  align-items: center;
  gap: 8px;
  margin: 24px 0 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 14px;
  cursor: pointer;
  transition: color 160ms ease, transform 140ms var(--ease-out);
}

.appearance::before {
  content: "";
  position: absolute;
  inset: -8px -14px;
}

.appearance > * {
  pointer-events: none;
}

.appearance:hover {
  color: var(--text);
}

.moon-icon,
.star-icon {
  display: none;
}

:root[data-theme="light"] .sun-icon {
  display: none;
}

:root[data-theme="light"] .moon-icon {
  display: block;
}

:root[data-theme="blue"] .sun-icon,
:root[data-theme="blue"] .moon-icon {
  display: none;
}

:root[data-theme="blue"] .star-icon {
  display: block;
}

.appearance-favorite {
  display: none;
  align-items: center;
  gap: 10px;
  color: color-mix(in srgb, var(--muted) 76%, var(--text));
}

:root[data-theme="blue"] .appearance-favorite {
  display: inline-flex;
}

.appearance-favorite::before {
  content: "·";
  opacity: 0.34;
}

.covers {
  display: grid;
  grid-template-columns: 1.08fr 1fr 1.05fr;
  gap: 10px;
  margin-top: 34px;
  overflow: visible;
}

.cover {
  position: relative;
  min-width: 0;
  height: 245px;
  overflow: hidden;
  border-radius: 7px;
  padding: 13px;
  color: #111;
  isolation: isolate;
}

.cover-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.cover p {
  display: none;
}

.statement-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  padding: 22px;
  text-align: center;
}

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

.statement-kicker {
  position: relative;
  z-index: 1;
  color: color-mix(in srgb, currentColor 55%, transparent);
  font-size: 10px;
  font-weight: 750;
  line-height: 1;
  text-transform: uppercase;
}

.statement-card strong {
  position: relative;
  z-index: 1;
  display: block;
  margin: 0 auto;
  font-weight: 650;
}

.statement-shape {
  align-items: center;
  background:
    radial-gradient(circle at 30% 18%, rgb(93 63 46 / 0.34), transparent 42%),
    radial-gradient(circle at 72% 82%, rgb(255 255 255 / 0.04), transparent 46%),
    #191817;
  color: #bfb9b1;
}

.statement-shape strong {
  max-width: 220px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 29px;
  line-height: 0.98;
}

.statement-clarity {
  justify-content: flex-end;
  align-items: flex-start;
  background: #111;
  color: #f2f2f2;
  text-align: left;
}

.statement-clarity::before {
  inset: 13px 13px auto auto;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background:
    linear-gradient(#111, #111) 50% 0 / 11px 100% no-repeat,
    conic-gradient(from 90deg, #ff3b30, #ffb800, #00df7a, #3a76ff, #ff3b30);
  filter: saturate(1.15);
  opacity: 0.9;
}

.statement-clarity strong {
  margin: 0;
  max-width: 150px;
  font-size: 28px;
  line-height: 1;
}

.statement-systems {
  background: #eee9dd;
  color: #1f1e1b;
  text-align: left;
}

.statement-systems::before {
  inset: 18px auto auto 18px;
  width: 58px;
  height: 58px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, transparent 47%, rgb(0 0 0 / 0.08) 48% 52%, transparent 53%),
    #f7f5ee;
  box-shadow: 0 16px 28px rgb(0 0 0 / 0.1);
  transform: rotate(4deg);
}

.statement-systems strong {
  margin: auto 0 0;
  max-width: 150px;
  font-size: 22px;
  line-height: 1.05;
}

.cover-claretiano {
  background: #e7edec;
  color: #173e45;
}

.cover-claretiano::before {
  position: absolute;
  inset: 60px -42px auto 28px;
  height: 92px;
  border: 2px solid #2c7b82;
  background:
    linear-gradient(#2c7b82, #2c7b82) 13px 16px / 48% 6px no-repeat,
    linear-gradient(#9bc6c4, #9bc6c4) 13px 34px / 72% 5px no-repeat,
    linear-gradient(#9bc6c4, #9bc6c4) 13px 49px / 55% 5px no-repeat,
    #f7fbfa;
  box-shadow: -9px 9px 0 #b9d5d2;
  content: "";
  transform: rotate(-4deg);
}

.admissions-mark {
  position: relative;
  z-index: 1;
  margin-top: 42px;
}

.admissions-mark span {
  display: block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.admissions-mark strong {
  display: block;
  margin-top: 7px;
  font-size: 22px;
  line-height: 1.05;
}

.cover-metropoles {
  background: #d82d22;
  color: #fff;
}

.metro-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 3px;
  margin-top: 31px;
}

.metro-grid span {
  display: grid;
  min-height: 45px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.8);
  font-size: 18px;
  font-weight: 800;
}

.metro-grid span:first-child {
  grid-row: span 2;
  font-size: 54px;
  line-height: 1;
}

.cover-direcao {
  background: #2455e6;
  color: #fff;
}

.reader-stack {
  display: grid;
  gap: 7px;
  margin: 39px 0 17px;
}

.reader-stack span {
  display: block;
  height: 8px;
  background: #ff8b2d;
}

.reader-stack span:nth-child(2) {
  width: 78%;
  background: #fff;
}

.reader-stack span:nth-child(3) {
  width: 58%;
}

.reader-stack span:nth-child(4) {
  width: 86%;
  background: #fff;
}

.cover-direcao > strong {
  font-size: 24px;
  line-height: 1;
}

.cover-hotmart {
  background: #1b1b1b;
  color: #fff;
}

.cover-hotmart .cover-meta {
  color: #f04e23;
}

.hotpay-display {
  margin-top: 30px;
  padding: 12px;
  border: 1px solid #3a3a3a;
  background: #111;
}

.hotpay-display span,
.hotpay-display small {
  display: block;
  color: #999;
  font-size: 10px;
}

.hotpay-display strong {
  display: block;
  margin: 6px 0 3px;
  color: #fff;
  font-size: 24px;
  line-height: 1;
}

.pay-keys {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-top: 9px;
}

.pay-keys span {
  display: grid;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: #3c3c3c;
  font-weight: 700;
}

.pay-keys span:last-child {
  background: #f04e23;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 48px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

footer a:hover {
  color: var(--text);
}

.works-intro {
  max-width: 570px;
}

.works-list {
  display: grid;
  gap: 18px;
  margin-top: 52px;
}

.work {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(230px, 0.85fr);
  min-height: 340px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--paper);
  color: #151515;
}

.work-visual {
  min-height: 340px;
  border-radius: 0;
}

.work-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
}

.work-copy h2 {
  margin: 0;
  font-size: 21px;
  line-height: 1.2;
}

.work-copy p {
  margin: 14px 0 0;
  color: #555;
  font-size: 14px;
  line-height: 1.55;
}

.work-facts {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.work-facts li {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 10px;
  border-top: 1px solid #ddd;
  color: #555;
  font-size: 12px;
}

.work-facts strong {
  color: #151515;
  font-weight: 650;
  text-align: right;
}

.not-found-shell {
  display: grid;
  min-height: 100vh;
  align-items: center;
}

.not-found {
  max-width: 570px;
}

.not-found-code {
  margin: 0 0 16px;
  color: var(--muted);
  font-family: "Geist Mono", "SF Mono", "Menlo", "Monaco", "Consolas", monospace;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
}

.not-found h1 {
  margin: 0;
  color: var(--text);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: 0;
  text-wrap: balance;
}

.not-found-link {
  display: inline-flex;
  margin-top: 28px;
  color: var(--soft);
  text-decoration: underline;
  text-decoration-color: color-mix(in srgb, var(--soft) 48%, transparent);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  transition: color 160ms ease, text-decoration-color 160ms ease;
}

.not-found-link:hover {
  color: var(--text);
  text-decoration-color: var(--text-color-brand);
}

@media (max-width: 900px) {
  .shell {
    width: min(100% - 32px, 570px);
    padding-top: 32px;
  }

  .intro {
    margin-top: 56px;
  }

  .intro h1 {
    font-size: 14px;
    line-height: 22px;
    text-wrap: balance;
  }

  .availability {
    font-size: 14px;
  }

  .covers {
    width: calc(100vw - 16px);
    grid-template-columns: repeat(3, 196px);
    margin-right: calc(50% - 50vw);
    padding-right: 16px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
  }

  .covers::-webkit-scrollbar {
    display: none;
  }

  .cover {
    height: 245px;
    scroll-snap-align: start;
  }

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

  .work-visual {
    min-height: 280px;
  }
}

@media (max-width: 540px) {
  .site-nav {
    top: 14px;
    left: 14px;
  }

  .build-meta {
    top: 14px;
    right: 14px;
    font-size: 10px;
  }

  .build-line {
    gap: 6px;
  }

  .build-line > span:last-child {
    display: none;
  }

  .activity-popover {
    width: min(420px, calc(100vw - 28px));
  }

  .shell {
    width: calc(100% - 28px);
  }

  .tab {
    min-height: 36px;
    padding: 7px 10px;
    font-size: 14px;
  }

  .intro {
    margin-top: 50px;
  }

  .language-switch {
    margin-bottom: 22px;
    font-size: 14px;
  }

  .worldwide-clock-panel {
    right: 0;
    left: auto;
    transform: translateY(-4px);
    transform-origin: top right;
  }

  .worldwide-clock:hover .worldwide-clock-panel,
  .worldwide-clock:focus-within .worldwide-clock-panel {
    transform: translateY(0);
  }

  .intro h1 {
    font-size: 14px;
    line-height: 22px;
  }

  .availability {
    margin-top: 22px;
    font-size: 14px;
  }

  .appearance {
    margin-top: 24px;
    font-size: 14px;
  }

  .covers {
    grid-template-columns: repeat(3, 196px);
  }

  .cover {
    height: 245px;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .works-list {
    margin-top: 42px;
  }

  .work-visual {
    min-height: 260px;
  }

  .work-copy {
    padding: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-delay: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (hover: none), (pointer: coarse) {
  .cursor-coordinates {
    display: none;
  }
}
