@font-face {
  font-family: "Outfit Variable";
  src: url("../fonts/Outfit-Variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}
@font-face {
  font-family: "Oswald Variable";
  src: url("../fonts/Oswald-Variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 700;
  font-display: swap;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
  text-size-adjust: 100%;
}

body {
  background-color: #0a0d11;
  color: #eef1f6;
  font-family: "Outfit Variable", "Outfit", "Segoe UI", system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
  overflow-x: hidden;
  overflow-x: clip;
}

img,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
}

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

ul,
ol {
  list-style: none;
}

h1,
h2,
h3,
h4 {
  font-family: "Oswald Variable", "Oswald", "Barlow Condensed", "Arial Narrow", sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: 0.04em;
  overflow-wrap: normal;
  word-break: normal;
}

h1 {
  font-size: clamp(3rem, 11vw, 7.5rem);
}

h2 {
  font-size: clamp(2.1rem, 6vw, 4rem);
  line-height: 1;
}

h3 {
  font-size: clamp(1.35rem, 3vw, 1.9rem);
  line-height: 1.08;
}

:focus-visible {
  outline: 3px solid #f5c451;
  outline-offset: 4px;
  border-radius: 2px;
}

::selection {
  background: #8b5cf6;
  color: #0a0d11;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.container {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

.section {
  position: relative;
  padding-block: clamp(5rem, 10vw, 8.5rem);
  scroll-margin-top: 4rem;
}
.section > .container {
  position: relative;
  z-index: 1;
}

.section--tinted {
  background: #0e1319;
}

.section--border-top {
  border-top: 1px solid rgba(234, 240, 250, 0.09);
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: clamp(2.5rem, 6vw, 4.5rem);
}

.section-eyebrow {
  font-family: "SFMono-Regular", ui-monospace, "Cascadia Code", Consolas, monospace;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #8b5cf6;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.section-eyebrow::before {
  content: "";
  width: 0.4rem;
  aspect-ratio: 1;
  transform: rotate(45deg);
  display: inline-block;
  background: #8b5cf6;
}

.section-number {
  position: absolute;
  top: 0;
  right: min(4vw, 3rem);
  font-family: "Oswald Variable", "Oswald", "Barlow Condensed", "Arial Narrow", sans-serif;
  font-weight: 700;
  font-size: min(20rem, 38vw);
  line-height: 1;
  color: #eef1f6;
  opacity: 0.03;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.grid {
  display: grid;
  gap: 1.25rem;
}
.grid > * {
  min-width: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: -100px;
  left: 1rem;
  z-index: 1000;
  background: #8b5cf6;
  color: #0a0d11;
  padding: 0.6rem 1.1rem;
  border-radius: 0;
  transition: top 200ms cubic-bezier(0.16, 1, 0.3, 1);
}
.skip-link:focus {
  top: 1rem;
}

.reveal {
  opacity: 0;
  transform: translateY(1.5rem);
}
.a11y-animations .reveal, .reveal[data-revealed=true] {
  opacity: 1;
  transform: none;
  transition: opacity 800ms cubic-bezier(0.16, 1, 0.3, 1), transform 800ms cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal[data-revealed=true] {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}
.btn {
  --btn-bg: transparent;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1.6rem;
  font-family: "Outfit Variable", "Outfit", "Segoe UI", system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  color: #eef1f6;
  background: var(--btn-bg);
  border: 1px solid rgba(234, 240, 250, 0.18);
  clip-path: polygon(0 0, calc(100% - 0.8rem) 0, 100% 0.8rem, 100% 100%, 0.8rem 100%, 0 calc(100% - 0.8rem));
  cursor: pointer;
  min-height: 2.75rem;
  justify-content: center;
  text-align: center;
  transition: background-color 300ms cubic-bezier(0.16, 1, 0.3, 1), color 300ms cubic-bezier(0.16, 1, 0.3, 1), border-color 300ms cubic-bezier(0.16, 1, 0.3, 1), transform 300ms cubic-bezier(0.16, 1, 0.3, 1);
}
.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: #8b5cf6;
  color: #0a0d11;
  border-color: #8b5cf6;
  font-weight: 700;
}
.btn--primary:hover {
  background: #8b5cf6;
  border-color: #8b5cf6;
}

.btn--ghost:hover {
  border-color: #8b5cf6;
  color: #8b5cf6;
}

.btn--sm {
  padding: 0.55rem 1rem;
  font-size: 0.82rem;
  clip-path: polygon(0 0, calc(100% - 0.55rem) 0, 100% 0.55rem, 100% 100%, 0.55rem 100%, 0 calc(100% - 0.55rem));
}

.btn--link {
  border: none;
  padding: 0;
  color: #eef1f6;
  font-weight: 600;
  gap: 0.4rem;
}
.btn--link:hover {
  color: #8b5cf6;
}
.btn--link .arrow {
  transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1);
}
.btn--link:hover .arrow {
  transform: translateX(4px);
}

.diamond {
  width: 0.55rem;
  aspect-ratio: 1;
  transform: rotate(45deg);
  display: inline-block;
}

.diamond--accent {
  background: #8b5cf6;
}

.diamond--outline {
  border: 1px solid rgba(234, 240, 250, 0.18);
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.75rem;
  border: 1px solid rgba(234, 240, 250, 0.18);
  font-family: "SFMono-Regular", ui-monospace, "Cascadia Code", Consolas, monospace;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f5c451;
  clip-path: polygon(0 0, calc(100% - 0.4rem) 0, 100% 0.4rem, 100% 100%, 0.4rem 100%, 0 calc(100% - 0.4rem));
  max-width: 100%;
  overflow-wrap: anywhere;
}

.tag--accent {
  color: #8b5cf6;
  border-color: rgba(139, 92, 246, 0.35);
}

.card {
  background: #131a26;
  border: 1px solid rgba(234, 240, 250, 0.09);
  padding: clamp(1.4rem, 3vw, 2rem);
  clip-path: polygon(0 0, calc(100% - 1.25rem) 0, 100% 1.25rem, 100% 100%, 1.25rem 100%, 0 calc(100% - 1.25rem));
  position: relative;
  transition: border-color 300ms cubic-bezier(0.16, 1, 0.3, 1), transform 300ms cubic-bezier(0.16, 1, 0.3, 1);
}
.card:hover {
  border-color: rgba(139, 92, 246, 0.45);
  transform: translateY(-3px);
}

.card--filled {
  background: linear-gradient(160deg, #1b2540, #131a26 70%);
}

.card--accent-line::after {
  content: "";
  position: absolute;
  left: 0;
  top: 1.1rem;
  bottom: 1.1rem;
  width: 3px;
  background: #8b5cf6;
}

.card h3,
.card h4 {
  margin-bottom: 0.75rem;
}

.card p {
  color: #9aa6b8;
  font-size: 0.93rem;
}

.marquee {
  overflow: hidden;
  flex-shrink: 0;
  border-block: 1px solid rgba(234, 240, 250, 0.09);
  padding-block: 0.6rem;
  background: #0e1319;
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
  will-change: transform;
}
@media (prefers-reduced-motion: reduce) {
  .marquee__track {
    animation: none;
    width: 100%;
    justify-content: center;
  }
}

.marquee__group {
  --marquee-gap: 3.5rem;
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: space-around;
  min-width: 100vw;
  gap: var(--marquee-gap);
  padding-inline: calc(var(--marquee-gap) / 2);
}
@media (prefers-reduced-motion: reduce) {
  .marquee__group {
    flex-wrap: wrap;
    justify-content: center;
    padding: 0;
  }
  .marquee__group:last-child {
    display: none;
  }
}

.marquee__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: "Oswald Variable", "Oswald", "Barlow Condensed", "Arial Narrow", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 1.05rem;
  white-space: nowrap;
  color: #9aa6b8;
  opacity: 0.55;
}
.marquee__item::before {
  content: "";
  width: 0.35rem;
  aspect-ratio: 1;
  transform: rotate(45deg);
  display: inline-block;
  background: #8b5cf6;
  opacity: 0.7;
}

@keyframes marquee {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}
.nav {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 100;
  background: rgba(10, 13, 17, 0.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(234, 240, 250, 0.09);
  transition: background 300ms cubic-bezier(0.16, 1, 0.3, 1);
}
.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.2rem;
}

.nav__brand {
  --brand-diamond-rotation: 45deg;
  --brand-dev-progress: 0;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: "Oswald Variable", "Oswald", "Barlow Condensed", "Arial Narrow", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 1.1rem;
}
.nav__brand .diamond {
  width: 0.6rem;
  background: #8b5cf6;
  transform: rotate(var(--brand-diamond-rotation));
  will-change: transform;
}
.nav__brand .brand-name {
  display: block;
  height: 1.15em;
  color: #eef1f6;
  white-space: nowrap;
}
.nav__brand .brand-lockup {
  display: flex;
  align-items: flex-end;
  height: 1.15em;
  line-height: 1.1;
}
.nav__brand .brand-separator,
.nav__brand .brand-suffix {
  display: block;
  height: 1.15em;
  line-height: 1.1;
}
.nav__brand .brand-letter {
  display: inline-block;
  position: relative;
  height: 1.15em;
  min-width: 0.58em;
  overflow: hidden;
  text-align: center;
  line-height: 1.1;
  vertical-align: bottom;
}
.nav__brand .brand-letter__glyph {
  display: block;
  will-change: transform, opacity;
}
.nav__brand .brand-letter__glyph--in {
  animation: brand-letter-in 440ms cubic-bezier(0.45, 0, 0.15, 1) var(--brand-letter-delay, 0ms) both;
}
.nav__brand .brand-letter__glyph--out {
  position: absolute;
  inset: 0;
  animation: brand-letter-out 440ms cubic-bezier(0.45, 0, 0.15, 1) var(--brand-letter-delay, 0ms) both;
}
.nav__brand .brand-letter--settled {
  color: #f5c451;
}
.nav__brand .brand-suffix {
  position: relative;
  color: #9aa6b8;
  font-weight: 400;
}
.nav__brand .brand-suffix::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -0.22rem;
  left: 0;
  height: 1px;
  background: #8b5cf6;
  opacity: 0.8;
  transform: scaleX(var(--brand-dev-progress));
  transform-origin: left;
}

@keyframes brand-letter-in {
  from {
    opacity: 0;
    transform: translateY(0.55em);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes brand-letter-out {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-0.55em);
  }
}
.nav__menu {
  margin-inline-start: auto;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav__lang {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  order: 2;
}
.nav__lang .nav-lang {
  font-family: "SFMono-Regular", ui-monospace, "Cascadia Code", Consolas, monospace;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: #8b5cf6;
  padding: 0.3rem 0.5rem;
  border: 1px solid rgba(139, 92, 246, 0.35);
  transition: color 200ms cubic-bezier(0.16, 1, 0.3, 1), border-color 200ms cubic-bezier(0.16, 1, 0.3, 1), background 200ms cubic-bezier(0.16, 1, 0.3, 1);
}
.nav__lang .nav-lang:hover {
  color: #f5c451;
  border-color: rgba(245, 196, 81, 0.4);
}
.nav__lang .nav-lang.nav-lang--active {
  color: #f5c451;
  border-color: rgba(245, 196, 81, 0.5);
}

.nav__links {
  order: 1;
  position: fixed;
  inset-inline: 0;
  top: 4.2rem;
  z-index: 40;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 1rem 1.25rem 1.75rem;
  background: rgba(10, 13, 17, 0.97);
  border-bottom: 1px solid rgba(234, 240, 250, 0.09);
  max-height: calc(100dvh - 4.2rem);
  overflow-y: auto;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(calc(-100% - 1rem));
  transition: transform 400ms cubic-bezier(0.16, 1, 0.3, 1), visibility 400ms;
}
.nav__links a {
  display: flex;
  align-items: center;
  min-height: 2.75rem;
  padding-inline: 0.25rem;
  font-size: 1rem;
  font-weight: 500;
  color: #9aa6b8;
  transition: color 200ms cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0.25rem;
  right: 0.25rem;
  bottom: 0.25rem;
  height: 2px;
  background: #8b5cf6;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1);
}
.nav__links a:hover, .nav__links a.nav-active {
  color: #eef1f6;
}
.nav__links a:hover::after, .nav__links a.nav-active::after {
  transform: scaleX(1);
}
.nav__links.nav-open {
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
}
@media (prefers-reduced-motion: reduce) {
  .nav__links {
    transition: none;
  }
}
@media (min-width: 1080px) {
  .nav__links {
    position: static;
    z-index: auto;
    flex-direction: row;
    align-items: center;
    gap: 0.25rem;
    padding: 0;
    background: transparent;
    border: 0;
    max-height: none;
    overflow: visible;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }
  .nav__links a {
    padding-inline: 0.8rem;
    font-size: 0.86rem;
  }
}

.nav__toggle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  width: 2.5rem;
  height: 2.5rem;
  cursor: pointer;
  clip-path: polygon(0 0, calc(100% - 0.4rem) 0, 100% 0.4rem, 100% 100%, 0.4rem 100%, 0 calc(100% - 0.4rem));
  border: 1px solid rgba(234, 240, 250, 0.18);
}
.nav__toggle span {
  display: block;
  width: 1.1rem;
  height: 2px;
  background: #eef1f6;
  margin: 2px 0;
  transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1), opacity 200ms cubic-bezier(0.16, 1, 0.3, 1);
}
.nav__toggle[aria-expanded=true] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.nav__toggle[aria-expanded=true] span:nth-child(2) {
  transform: rotate(-45deg);
}
@media (min-width: 1080px) {
  .nav__toggle {
    display: none;
  }
}

@media (max-width: 639px) {
  .nav__lang {
    gap: 0.5rem;
  }
  .nav-lang {
    display: grid;
    place-items: center;
    width: 2.5rem;
    height: 2.5rem;
    color: #8b5cf6;
    border: 1px solid rgba(139, 92, 246, 0.35);
    clip-path: polygon(0 0, calc(100% - 0.4rem) 0, 100% 0.4rem, 100% 100%, 0.4rem 100%, 0 calc(100% - 0.4rem));
  }
  .nav-lang:hover {
    color: #f5c451;
    background: rgba(139, 92, 246, 0.08);
    border-color: rgba(245, 196, 81, 0.4);
  }
  .nav-lang.nav-lang--active {
    color: #f5c451;
    border-color: rgba(245, 196, 81, 0.55);
  }
  .nav__toggle {
    margin-inline-start: 0.5rem;
  }
}
.footer {
  border-top: 1px solid rgba(234, 240, 250, 0.09);
  padding-block: 2.25rem;
  background: #0e1319;
}
.footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  align-items: center;
  justify-content: space-between;
}
.footer .footer__note {
  font-family: "SFMono-Regular", ui-monospace, "Cascadia Code", Consolas, monospace;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #5b677a;
}
.footer .footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
}
.footer .footer__links a {
  font-size: 0.92rem;
  color: #9aa6b8;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}
.footer .footer__links a .diamond {
  width: 0.4rem;
  background: #8b5cf6;
}
.footer .footer__links a:hover {
  color: #eef1f6;
}
@media (max-width: 639px) {
  .footer .container {
    align-items: flex-start;
    flex-direction: column;
  }
  .footer .footer__links {
    gap: 0.5rem 1.25rem;
  }
  .footer .footer__links a {
    min-height: 2.75rem;
  }
}

.form {
  display: grid;
  gap: 1.1rem;
}
.form .form-field {
  display: grid;
  gap: 0.45rem;
}
.form .form-field.is-invalid label {
  color: #f5c451;
}
.form .form-field.is-invalid input,
.form .form-field.is-invalid textarea {
  border-color: #f5c451;
  box-shadow: inset 3px 0 0 rgba(245, 196, 81, 0.75);
}
.form label {
  font-family: "SFMono-Regular", ui-monospace, "Cascadia Code", Consolas, monospace;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #9aa6b8;
}
.form input,
.form textarea {
  width: 100%;
  background: #0e1319;
  border: 1px solid rgba(234, 240, 250, 0.18);
  padding: 0.85rem 1rem;
  color: #eef1f6;
  clip-path: polygon(0 0, calc(100% - 0.5rem) 0, 100% 0.5rem, 100% 100%, 0.5rem 100%, 0 calc(100% - 0.5rem));
  transition: border-color 200ms cubic-bezier(0.16, 1, 0.3, 1);
}
.form input::placeholder,
.form textarea::placeholder {
  color: #5b677a;
}
.form input:focus,
.form textarea:focus {
  outline: none;
  border-color: #8b5cf6;
}
.form textarea {
  min-height: 8.5rem;
  resize: vertical;
}
.form .form-note {
  font-size: 0.78rem;
  color: #5b677a;
  font-family: "SFMono-Regular", ui-monospace, "Cascadia Code", Consolas, monospace;
}

.contact-toast .form-status {
  font-size: 0.9rem;
  font-weight: 600;
  min-height: 1.4em;
}
.contact-toast .form-status[data-state=ok] {
  color: #8b5cf6;
}
.contact-toast .form-status[data-state=error] {
  color: #f5c451;
}
.contact-toast .form-status--retro {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.7rem 0.85rem;
  color: #eef1f6;
  background: #0a0d11;
  border: 1px solid #f5c451;
  box-shadow: 4px 4px 0 rgba(245, 196, 81, 0.22);
  font-family: "SFMono-Regular", ui-monospace, "Cascadia Code", Consolas, monospace;
  font-size: 0.72rem;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0.025em;
}
.contact-toast .form-status--retro strong {
  display: block;
  color: #f5c451;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
}
.contact-toast .form-status__icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 1.15rem;
  height: 1.15rem;
  color: #0a0d11;
  background: #f5c451;
  font-family: Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
}
.contact-toast .form-status__sprite {
  position: absolute;
  bottom: 0;
  left: 0.35rem;
  width: 3rem;
  height: 3rem;
  object-fit: contain;
  image-rendering: pixelated;
  filter: invert(1) contrast(1.2);
  opacity: 0;
  transform: translateY(0.75rem) scale(0.25);
  transform-origin: bottom center;
  animation: pokemon-release 440ms steps(5, end) 220ms forwards;
}
.contact-toast .form-status__encounter {
  position: relative;
  flex: 0 0 3.7rem;
  width: 3.7rem;
  height: 3rem;
  margin: -0.25rem -0.2rem -0.25rem auto;
}
.contact-toast .form-status__pokeball {
  position: absolute;
  bottom: 0.05rem;
  left: 0.75rem;
  width: 2.1rem;
  height: 2.1rem;
  animation: pokeball-flash 220ms steps(2, end) forwards;
}
.contact-toast .form-status__pokeball-top,
.contact-toast .form-status__pokeball-bottom {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  image-rendering: pixelated;
}
.contact-toast .form-status__pokeball-top {
  clip-path: inset(0 0 50% 0);
  animation: pokeball-top-open 300ms steps(3, end) 150ms forwards;
}
.contact-toast .form-status__pokeball-bottom {
  clip-path: inset(50% 0 0 0);
  animation: pokeball-bottom-open 300ms steps(3, end) 150ms forwards;
}
.contact-toast .form-status--capture {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.55rem 0.85rem;
  color: #eef1f6;
  background: #0a0d11;
  border: 1px solid rgba(139, 92, 246, 0.5);
  font-family: "SFMono-Regular", ui-monospace, "Cascadia Code", Consolas, monospace;
  font-size: 0.78rem;
}
.contact-toast .form-status__encounter--capture {
  width: 3.2rem;
  flex-basis: 3.2rem;
}
.contact-toast .form-status__capture-ball {
  position: absolute;
  bottom: 0.05rem;
  left: 50%;
  width: 2.1rem;
  height: 2.1rem;
  object-fit: contain;
  image-rendering: pixelated;
  opacity: 0;
  transform: translateX(-50%) scale(0.35);
  animation: pokeball-capture 3.5s steps(18, end) forwards;
}
@keyframes pokeball-flash {
  0%, 45% {
    filter: brightness(1);
  }
  46%, 100% {
    filter: brightness(1.8);
  }
}
@keyframes pokeball-top-open {
  to {
    transform: translateY(-0.85rem) rotate(-10deg);
    opacity: 0;
  }
}
@keyframes pokeball-bottom-open {
  to {
    transform: translateY(0.5rem) rotate(8deg);
    opacity: 0;
  }
}
@keyframes pokemon-release {
  0% {
    opacity: 0;
    transform: translateY(0.75rem) scale(0.25);
  }
  45% {
    opacity: 1;
    transform: translateY(-0.2rem) scale(1.18);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes pokeball-capture {
  0% {
    opacity: 0;
    transform: translateX(calc(-50% + 1.4rem)) translateY(-1.25rem) rotate(-100deg) scale(0.65);
  }
  16% {
    opacity: 1;
    transform: translateX(-50%) translateY(0) rotate(0) scale(1);
  }
  25% {
    transform: translateX(calc(-50% - 0.24rem)) rotate(-18deg) scale(1);
  }
  34% {
    transform: translateX(calc(-50% + 0.24rem)) rotate(18deg) scale(1);
  }
  43% {
    transform: translateX(-50%) rotate(0) scale(1);
  }
  52% {
    transform: translateX(calc(-50% - 0.24rem)) rotate(-18deg) scale(1);
  }
  61% {
    transform: translateX(calc(-50% + 0.24rem)) rotate(18deg) scale(1);
  }
  70% {
    transform: translateX(-50%) rotate(0) scale(1);
  }
  79% {
    transform: translateX(calc(-50% - 0.24rem)) rotate(-18deg) scale(1);
  }
  86% {
    transform: translateX(calc(-50% + 0.24rem)) rotate(18deg) scale(1);
  }
  90% {
    transform: translateX(-50%) rotate(0) scale(1);
  }
  94% {
    filter: brightness(2.5) drop-shadow(0 0 0.35rem rgba(245, 196, 81, 0.9));
    transform: translateX(-50%) scale(1.16);
  }
  100% {
    opacity: 1;
    filter: brightness(1);
    transform: translateX(-50%) scale(1);
  }
}

@media (max-width: 639px) {
  .form .btn {
    width: 100%;
  }
}

.notyf .contact-toast {
  width: 590px;
  max-width: 100%;
  padding: 0;
  overflow: visible;
  border-radius: 0;
  box-shadow: none;
  animation: none;
  transform: none;
}
.notyf .contact-toast .notyf__wrapper {
  display: block;
  padding: 0;
  border-radius: 0;
}
.notyf .contact-toast .notyf__message {
  opacity: 1;
  animation: none;
  line-height: inherit;
  overflow-wrap: anywhere;
}
.notyf .contact-toast.notyf__toast--disappear {
  animation: notyf-fadeoutdown 150ms forwards;
  pointer-events: none;
}

@media (max-width: 639px) {
  .notyf {
    justify-content: flex-start !important;
    align-items: flex-end !important;
    padding: 1rem;
    padding-top: 4.95rem;
  }
}
.hero-screen {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100svh;
}

.hero {
  position: relative;
  flex: 1 0 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: calc(4.2rem + clamp(1rem, 3.5vh, 2.5rem)) 0.5rem;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(234, 240, 250, 0.09) 1px, transparent 1px), linear-gradient(90deg, rgba(234, 240, 250, 0.09) 1px, transparent 1px);
  background-size: 4.5rem 4.5rem;
  opacity: 0.4;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 40%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 40%, #000 30%, transparent 75%);
  z-index: 0;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(1rem, 2.4vh, 1.75rem);
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: "SFMono-Regular", ui-monospace, "Cascadia Code", Consolas, monospace;
  font-size: clamp(0.62rem, 1.4vw, 0.78rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #8b5cf6;
}
.hero__eyebrow .diamond {
  width: 0.5rem;
  background: #8b5cf6;
}

.hero__title {
  font-size: clamp(1.9rem, 6.5vw, 5.25rem);
  font-weight: 700;
  line-height: 0.94;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  overflow-wrap: normal;
}
.hero__title .hero__accent {
  color: #8b5cf6;
}

@media (max-width: 639px) {
  .hero {
    justify-content: flex-start;
    padding-block: 4.95rem 0;
  }
  .hero__inner {
    gap: 2rem;
  }
  .hero__eyebrow {
    gap: 0.7rem;
    letter-spacing: 0.15em;
  }
  .hero__sub {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.45rem;
    width: 100%;
  }
  .hero__sub li {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    width: 100%;
  }
  .hero__sub .diamond {
    flex-shrink: 0;
  }
  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .hero__meta {
    grid-template-columns: 1fr;
    margin-top: 0.35rem;
  }
  .hero__scroll {
    display: none;
  }
}
@media (max-height: 800px) {
  .hero {
    padding-block: 4.95rem 0.25rem;
  }
  .hero__inner {
    gap: 0.85rem;
  }
  .hero__title {
    font-size: clamp(1.7rem, 5.5vw, 4rem);
  }
  .hero__meta {
    margin-top: 0.5rem;
  }
}
@media (max-height: 720px) {
  .hero__desc {
    display: none;
  }
  .hero__scroll {
    display: none;
  }
}
.hero__sub {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 1.4rem;
  font-family: "SFMono-Regular", ui-monospace, "Cascadia Code", Consolas, monospace;
  font-size: clamp(0.68rem, 1.6vw, 0.84rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9aa6b8;
}
.hero__sub .diamond {
  width: 0.42rem;
  background: #f5c451;
}

.hero__desc {
  max-width: 54ch;
  color: #9aa6b8;
  font-size: clamp(0.9rem, 1.8vw, 1.05rem);
  line-height: 1.6;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hero__meta {
  margin-top: 0.75rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 1px;
  background: rgba(234, 240, 250, 0.09);
  border: 1px solid rgba(234, 240, 250, 0.09);
  clip-path: polygon(0 0, calc(100% - 1rem) 0, 100% 1rem, 100% 100%, 1rem 100%, 0 calc(100% - 1rem));
  overflow: hidden;
}
.hero__meta .hero__meta-item {
  background: rgba(14, 19, 25, 0.92);
  padding: 0.75rem 1rem;
  display: grid;
  gap: 0.2rem;
}
.hero__meta .hero__meta-item .k {
  font-family: "SFMono-Regular", ui-monospace, "Cascadia Code", Consolas, monospace;
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #5b677a;
}
.hero__meta .hero__meta-item .v {
  font-weight: 600;
  font-size: 0.88rem;
}

.hero__scroll {
  margin-top: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.78rem;
  color: #5b677a;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-family: "SFMono-Regular", ui-monospace, "Cascadia Code", Consolas, monospace;
}
.hero__scroll::before {
  content: "";
  width: 3.5rem;
  height: 1px;
  background: linear-gradient(90deg, #8b5cf6, transparent);
}
@media (prefers-reduced-motion: no-preference) {
  .hero__scroll {
    animation: scroll-hint 2.2s cubic-bezier(0.16, 1, 0.3, 1) infinite;
  }
}

@keyframes scroll-hint {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}
.hero__codes {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 85% 80% at 50% 42%, #000 30%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 85% 80% at 50% 42%, #000 30%, transparent 78%);
}

.code-panel {
  position: absolute;
  min-width: 16rem;
  max-width: min(19rem, 78vw);
  padding: 0.65rem 0.85rem 0.75rem;
  font-family: "SFMono-Regular", ui-monospace, "Cascadia Code", Consolas, monospace;
  font-size: clamp(0.58rem, 0.95vw, 0.72rem);
  line-height: 1.55;
  color: #9aa6b8;
  background: rgba(14, 19, 25, 0.55);
  border: 1px solid rgba(234, 240, 250, 0.18);
  clip-path: polygon(0 0, calc(100% - 0.55rem) 0, 100% 0.55rem, 100% 100%, 0.55rem 100%, 0 calc(100% - 0.55rem));
  backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity 600ms cubic-bezier(0.16, 1, 0.3, 1);
}
.code-panel.is-in {
  opacity: 0.72;
}
.code-panel.is-out {
  opacity: 0;
}
.code-panel.is-static {
  opacity: 0.72;
  animation: none;
}

.code-panel__head {
  display: flex;
  align-items: center;
  gap: 0.32rem;
  margin-bottom: 0.55rem;
}
.code-panel__head .dot {
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: rgba(234, 240, 250, 0.18);
}
.code-panel__head .dot:first-child {
  background: var(--panel-c, #8b5cf6);
}
.code-panel__head .code-panel__lang {
  margin-left: auto;
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--panel-c, #8b5cf6);
}

.code-panel__body {
  margin: 0;
  white-space: pre;
  overflow: hidden;
}
.code-panel__body .code-line {
  display: block;
}
.code-panel__body .ch {
  opacity: 0;
}
.code-panel__body .ch.on {
  opacity: 1;
}
.code-panel__body .caret {
  display: inline-block;
  width: 0.45em;
  height: 1em;
  margin-left: 1px;
  vertical-align: -0.15em;
  background: var(--panel-c, #8b5cf6);
  animation: caret-blink 1.1s steps(1, end) infinite;
}

@keyframes caret-blink {
  0%, 49% {
    opacity: 1;
  }
  50%, 100% {
    opacity: 0;
  }
}
.tok--k {
  color: #8b5cf6;
}

.tok--s {
  color: #f5c451;
}

.tok--c {
  color: #5b677a;
  font-style: italic;
}

.tok--f {
  color: #7cb9f2;
}

.tok--v {
  color: #e6a06b;
}

.tok--t {
  color: #61c9a6;
}

.tok--n {
  color: #d9b8f7;
}

.code-panel .tok--p {
  color: #9aa6b8;
}

@media (max-width: 639px) {
  .code-panel {
    min-width: 13.5rem;
    font-size: 0.58rem;
    opacity: 0.6;
  }
}
@media (prefers-reduced-motion: reduce) {
  .code-panel,
  .code-panel.is-in,
  .code-panel.is-static {
    animation: none;
  }
  .code-panel__body .caret {
    animation: none;
    opacity: 0.5;
  }
  .code-panel__body .ch {
    opacity: 1;
  }
}
.projects-expo-shell {
  --projects-control-size: clamp(3rem, 4vw, 4rem);
  --projects-control-gap: clamp(0.65rem, 1.5vw, 1rem);
  position: relative;
  margin-block-start: clamp(1.04rem, 2.08vw, 1.82rem);
  padding-inline: calc(var(--projects-control-size) + var(--projects-control-gap));
}

.projects-expo {
  padding-block: 1rem 0.25rem;
  overflow: hidden;
}
.projects-expo:not(.swiper-initialized) .swiper-wrapper {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  height: auto;
}
.projects-expo:not(.swiper-initialized) .swiper-slide {
  width: auto;
  height: auto;
}
.projects-expo.swiper-initialized .swiper-wrapper {
  align-items: stretch;
  height: auto;
}
.projects-expo.swiper-initialized .rpg-project {
  height: auto;
  opacity: var(--expo-opacity, 1);
  transform: scale(var(--expo-scale, 1));
  transform-origin: center;
  transition-property: transform, opacity, border-color, background;
}
.projects-expo.swiper-initialized .rpg-project.swiper-slide-prev, .projects-expo.swiper-initialized .rpg-project.swiper-slide-next {
  cursor: pointer;
}
.projects-expo.swiper-initialized .rpg-project.swiper-slide-active {
  z-index: 2;
}
.projects-expo.swiper-initialized .rpg-project.swiper-slide-active:hover {
  transform: translateY(-4px) scale(var(--expo-scale, 1));
}
.projects-expo .rpg-project {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  overflow: hidden;
}
@media (max-width: 720px) {
  .projects-expo:not(.swiper-initialized) .swiper-wrapper {
    grid-template-columns: 1fr;
  }
}

.rpg-project__media {
  clip-path: polygon(0 0, calc(100% - 0.9rem) 0, 100% 0.9rem, 100% 100%, 0.9rem 100%, 0 calc(100% - 0.9rem));
  position: relative;
  aspect-ratio: var(--project-image-ratio, 1172/692);
  overflow: hidden;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.08), rgba(245, 196, 81, 0.035)), #182033;
  border-bottom: 1px solid rgba(234, 240, 250, 0.09);
}
.rpg-project__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 13, 17, 0.3), transparent 35%);
  pointer-events: none;
}
.rpg-project__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: translate3d(var(--expo-image-offset, 0), 0, 0) scale(var(--expo-image-scale, 1));
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.rpg-project__pending {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: "SFMono-Regular", ui-monospace, "Cascadia Code", Consolas, monospace;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #5b677a;
}
.rpg-project__pending::before {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px dashed rgba(234, 240, 250, 0.18);
  clip-path: polygon(0 0, calc(100% - 0.7rem) 0, 100% 0.7rem, 100% 100%, 0.7rem 100%, 0 calc(100% - 0.7rem));
}

.rpg-project__content {
  display: grid;
  flex: 1;
  gap: 0.85rem;
  padding: clamp(1.3rem, 2.5vw, 2rem);
}

.projects-expo__controls {
  position: absolute;
  z-index: 4;
  inset-block-start: 50%;
  inset-inline: 0;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  transform: translateY(-50%);
}
.projects-expo__controls button {
  display: grid;
  place-items: center;
  width: var(--projects-control-size);
  aspect-ratio: 1;
  border: 1px solid rgba(139, 92, 246, 0.9);
  background: transparent;
  color: #8b5cf6;
  font-family: "SFMono-Regular", ui-monospace, "Cascadia Code", Consolas, monospace;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  pointer-events: auto;
  clip-path: polygon(0 0, calc(100% - 0.65rem) 0, 100% 0.65rem, 100% 100%, 0.65rem 100%, 0 calc(100% - 0.65rem));
  box-shadow: none;
  transition: color 250ms cubic-bezier(0.16, 1, 0.3, 1), border-color 250ms cubic-bezier(0.16, 1, 0.3, 1), background 250ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 250ms cubic-bezier(0.16, 1, 0.3, 1), transform 250ms cubic-bezier(0.16, 1, 0.3, 1);
}
.projects-expo__controls button:hover, .projects-expo__controls button:focus-visible {
  color: #f5c451;
  border-color: #f5c451;
  background: transparent;
  box-shadow: none;
  transform: translateY(-2px);
}
.projects-expo__controls button:focus-visible {
  outline: 1px solid #f5c451;
  outline-offset: 3px;
}
.projects-expo__controls button:active {
  transform: translateY(0) scale(0.96);
}
.projects-expo__controls button:disabled {
  color: #5b677a;
  cursor: not-allowed;
  opacity: 0.45;
  transform: none;
}

@media (min-width: 1440px) {
  .projects-expo-shell {
    padding-inline: 0;
  }
  .projects-expo__controls {
    inset-inline: -5rem;
  }
}
@media (max-width: 639px) {
  .projects-expo-shell {
    padding-inline: 0;
  }
  .projects-expo__controls {
    display: none;
  }
  .rpg-project {
    gap: 0.75rem;
    padding: 1.25rem;
  }
  .rpg-project__index {
    font-size: 1.9rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .projects-expo.swiper-initialized .rpg-project {
    transform: none;
  }
  .projects-expo.swiper-initialized .rpg-project.swiper-slide-active:hover {
    transform: none;
  }
  .rpg-project__media img {
    transform: none;
    will-change: auto;
  }
}
.rpg-project {
  clip-path: polygon(0 0, calc(100% - 0.9rem) 0, 100% 0.9rem, 100% 100%, 0.9rem 100%, 0 calc(100% - 0.9rem));
  position: relative;
  display: grid;
  gap: 0.85rem;
  padding: clamp(1.5rem, 3vw, 2.2rem);
  background: linear-gradient(180deg, rgba(139, 92, 246, 0.035), transparent 34%), #131a26;
  border: 1px solid rgba(234, 240, 250, 0.09);
  transition: border-color 300ms cubic-bezier(0.16, 1, 0.3, 1), transform 300ms cubic-bezier(0.16, 1, 0.3, 1), background 300ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 300ms cubic-bezier(0.16, 1, 0.3, 1);
}
.rpg-project::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  background: url("/assets/img/pixel-grid.webp");
  transition: opacity 0.4s ease-out;
  pointer-events: none;
}
.rpg-project::after {
  content: "";
  position: absolute;
  inset-inline: clamp(1.5rem, 3vw, 2.2rem);
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.6), transparent);
  opacity: 0.35;
  transition: opacity 300ms cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}
.rpg-project:focus-visible {
  outline: 2px solid rgba(139, 92, 246, 0.7);
  outline-offset: 3px;
}
.rpg-project:hover {
  border-color: rgba(139, 92, 246, 0.45);
  transform: translateY(-4px);
  box-shadow: 0 20px 44px -24px rgba(139, 92, 246, 0.38);
}
.rpg-project:hover::before {
  opacity: 0.06;
}
.rpg-project:hover::after {
  opacity: 1;
}

.rpg-project__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.rpg-project__class {
  font-family: "SFMono-Regular", ui-monospace, "Cascadia Code", Consolas, monospace;
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #8b5cf6;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.rpg-project__class .diamond {
  width: 0.38rem;
  background: #8b5cf6;
}

.rpg-project__index {
  font-family: "Oswald Variable", "Oswald", "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: #eef1f6;
  opacity: 0.12;
  line-height: 1;
}

.rpg-project__body {
  display: flex;
  gap: 0.9rem;
}

.rpg-project__info {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 0;
}

.rpg-project__name {
  margin: 0;
  font-size: clamp(1.7rem, 3.5vw, 2.3rem);
}

.rpg-project__tagline {
  margin: 0;
  color: #8b5cf6;
  font-size: 0.94rem;
  font-weight: 500;
}

.rpg-project__stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.rpg-project__foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding-top: 0.6rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.rpg-project__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding-block: 0.2rem;
  font-family: "SFMono-Regular", ui-monospace, "Cascadia Code", Consolas, monospace;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #eef1f6;
  text-decoration: none;
  flex-shrink: 0;
  transition: color 250ms cubic-bezier(0.16, 1, 0.3, 1);
}
.rpg-project__link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: #8b5cf6;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 350ms cubic-bezier(0.16, 1, 0.3, 1);
}
.rpg-project__link .arrow {
  transition: transform 350ms cubic-bezier(0.16, 1, 0.3, 1);
}
.rpg-project__link:hover, .rpg-project__link:focus-visible {
  color: #8b5cf6;
}
.rpg-project__link:hover::after, .rpg-project__link:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}
.rpg-project__link:hover .arrow, .rpg-project__link:focus-visible .arrow {
  transform: translate(4px, -4px) rotate(8deg);
}

.rpg-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(10, 13, 17, 0.86);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 300ms cubic-bezier(0.16, 1, 0.3, 1), visibility 300ms cubic-bezier(0.16, 1, 0.3, 1);
}
.rpg-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.rpg-modal {
  position: relative;
  width: 100%;
  max-width: 54rem;
  max-height: 90vh;
  overflow-y: auto;
  display: grid;
  grid-template-columns: minmax(11rem, 0.42fr) 1fr;
  background: #131a26;
  border: 1px solid rgba(234, 240, 250, 0.18);
  clip-path: polygon(0 0, calc(100% - 1.5rem) 0, 100% 1.5rem, 100% 100%, 1.5rem 100%, 0 calc(100% - 1.5rem));
}
.rpg-modal::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(139, 92, 246, 0.028) 1px, transparent 1px), linear-gradient(90deg, rgba(139, 92, 246, 0.028) 1px, transparent 1px);
  background-size: 8px 8px;
  pointer-events: none;
  z-index: 0;
}

.rpg-modal__close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  z-index: 10;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(14, 19, 25, 0.85);
  border: 1px solid rgba(234, 240, 250, 0.09);
  color: #9aa6b8;
  font-size: 0.8rem;
  cursor: pointer;
  clip-path: polygon(0 0, calc(100% - 0.4rem) 0, 100% 0.4rem, 100% 100%, 0.4rem 100%, 0 calc(100% - 0.4rem));
  transition: color 200ms cubic-bezier(0.16, 1, 0.3, 1), border-color 200ms cubic-bezier(0.16, 1, 0.3, 1);
}
.rpg-modal__close:hover {
  color: #eef1f6;
  border-color: rgba(139, 92, 246, 0.5);
}

.rpg-modal__left {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
  padding: 2rem 1.2rem;
  background: rgba(14, 19, 25, 0.5);
  border-right: 1px solid rgba(234, 240, 250, 0.09);
}
.rpg-modal__left::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(to bottom, rgba(238, 241, 246, 0.035) 0 1px, transparent 1px 4px);
  pointer-events: none;
}

.rpg-modal__portrait {
  position: relative;
  width: 7rem;
  height: 7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(139, 92, 246, 0.08);
  border: 2px solid rgba(139, 92, 246, 0.3);
  clip-path: polygon(0 0, calc(100% - 1rem) 0, 100% 1rem, 100% 100%, 1rem 100%, 0 calc(100% - 1rem));
  font-size: 2.4rem;
  color: #8b5cf6;
}
.rpg-modal__portrait::after {
  content: "";
  position: absolute;
  inset: -6px;
  border: 1px dashed rgba(139, 92, 246, 0.18);
  clip-path: polygon(0 0, calc(100% - 1.2rem) 0, 100% 1.2rem, 100% 100%, 1.2rem 100%, 0 calc(100% - 1.2rem));
  pointer-events: none;
}
.rpg-modal__portrait i {
  line-height: 1;
}

.rpg-modal__hp {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  width: 100%;
}

.rpg-modal__hp-label {
  font-family: "SFMono-Regular", ui-monospace, "Cascadia Code", Consolas, monospace;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #5b677a;
}

.rpg-modal__hearts {
  display: flex;
  gap: 0.25rem;
}

.rpg-heart {
  display: inline-block;
  width: 0.9rem;
  height: 0.9rem;
  position: relative;
}
.rpg-heart::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #f5c451;
  clip-path: polygon(50% 100%, 0% 35%, 10% 0%, 35% 0%, 50% 20%, 65% 0%, 90% 0%, 100% 35%);
}
.rpg-heart--empty::before {
  background: rgba(245, 196, 81, 0.16);
}

.rpg-modal__stats {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  width: 100%;
}

.rpg-modal__stat {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-family: "SFMono-Regular", ui-monospace, "Cascadia Code", Consolas, monospace;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.5rem 0.7rem;
  background: rgba(10, 13, 17, 0.45);
  border: 1px solid rgba(234, 240, 250, 0.09);
  clip-path: polygon(0 0, calc(100% - 0.45rem) 0, 100% 0.45rem, 100% 100%, 0.45rem 100%, 0 calc(100% - 0.45rem));
}
.rpg-modal__stat i {
  width: 1rem;
  text-align: center;
  font-size: 0.7rem;
}
.rpg-modal__stat strong {
  margin-left: auto;
  font-size: 0.9rem;
  font-weight: 700;
}
.rpg-modal__stat--str {
  color: #8b5cf6;
  border-color: rgba(139, 92, 246, 0.22);
}
.rpg-modal__stat--str strong {
  color: #8b5cf6;
}
.rpg-modal__stat--def {
  color: #f5c451;
  border-color: rgba(245, 196, 81, 0.22);
}
.rpg-modal__stat--def strong {
  color: #f5c451;
}
.rpg-modal__stat--spd {
  color: #66e0cf;
  border-color: rgba(102, 224, 207, 0.22);
}
.rpg-modal__stat--spd strong {
  color: #66e0cf;
}
.rpg-modal__stat--dps {
  color: #eef1f6;
  border-color: rgba(238, 241, 246, 0.14);
}
.rpg-modal__stat--dps strong {
  color: #eef1f6;
}

.rpg-modal__right {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 2rem 1.8rem;
}

.rpg-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.rpg-modal__class {
  font-family: "SFMono-Regular", ui-monospace, "Cascadia Code", Consolas, monospace;
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #f5c451;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}
.rpg-modal__class::before {
  content: "";
  width: 0.4rem;
  aspect-ratio: 1;
  transform: rotate(45deg);
  display: inline-block;
  background: #f5c451;
}

.rpg-modal__level {
  font-family: "SFMono-Regular", ui-monospace, "Cascadia Code", Consolas, monospace;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #5b677a;
}

.rpg-modal__name {
  margin: 0;
  font-family: "Oswald Variable", "Oswald", "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: clamp(1.5rem, 3.5vw, 2.1rem);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 0.95;
  color: #eef1f6;
}

.rpg-modal__role {
  font-family: "SFMono-Regular", ui-monospace, "Cascadia Code", Consolas, monospace;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8b5cf6;
}

.rpg-modal__desc {
  font-size: 0.9rem;
  line-height: 1.65;
  color: #9aa6b8;
}

.rpg-modal__loot {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.rpg-modal__loot-label {
  font-family: "SFMono-Regular", ui-monospace, "Cascadia Code", Consolas, monospace;
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #5b677a;
}

.rpg-modal__loot-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.rpg-modal__loot-tag {
  font-family: "SFMono-Regular", ui-monospace, "Cascadia Code", Consolas, monospace;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.6rem;
  background: rgba(139, 92, 246, 0.08);
  border: 1px solid rgba(139, 92, 246, 0.2);
  color: #8b5cf6;
  clip-path: polygon(0 0, calc(100% - 0.35rem) 0, 100% 0.35rem, 100% 100%, 0.35rem 100%, 0 calc(100% - 0.35rem));
}

.rpg-modal__link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: "SFMono-Regular", ui-monospace, "Cascadia Code", Consolas, monospace;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8b5cf6;
  border: 1px solid rgba(139, 92, 246, 0.3);
  padding: 0.6rem 1rem;
  clip-path: polygon(0 0, calc(100% - 0.5rem) 0, 100% 0.5rem, 100% 100%, 0.5rem 100%, 0 calc(100% - 0.5rem));
  background: rgba(139, 92, 246, 0.06);
  text-decoration: none;
  margin-top: auto;
  width: fit-content;
  transition: background 200ms cubic-bezier(0.16, 1, 0.3, 1), border-color 200ms cubic-bezier(0.16, 1, 0.3, 1);
}
.rpg-modal__link:hover {
  background: rgba(139, 92, 246, 0.14);
  border-color: rgba(139, 92, 246, 0.6);
}
.rpg-modal__link .arrow {
  transition: transform 200ms cubic-bezier(0.16, 1, 0.3, 1);
}
.rpg-modal__link:hover .arrow {
  transform: translate(2px, -2px);
}

@media (max-width: 639px) {
  .rpg-overlay {
    padding: 0.75rem;
    align-items: flex-end;
  }
  .rpg-modal {
    grid-template-columns: 1fr;
    max-height: 88vh;
    clip-path: polygon(0 0, calc(100% - 1rem) 0, 100% 1rem, 100% 100%, 1rem 100%, 0 calc(100% - 1rem));
  }
  .rpg-modal__left {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.9rem 1.4rem;
    padding: 1.2rem 1rem;
    border-right: none;
    border-bottom: 1px solid rgba(234, 240, 250, 0.09);
  }
  .rpg-modal__portrait {
    width: 4.5rem;
    height: 4.5rem;
    font-size: 1.7rem;
  }
  .rpg-modal__portrait::after {
    inset: -4px;
    clip-path: polygon(0 0, calc(100% - 0.8rem) 0, 100% 0.8rem, 100% 100%, 0.8rem 100%, 0 calc(100% - 0.8rem));
  }
  .rpg-modal__hp {
    width: auto;
  }
  .rpg-modal__stats {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.4rem;
    width: auto;
  }
  .rpg-modal__stat {
    padding: 0.35rem 0.55rem;
    font-size: 0.6rem;
  }
  .rpg-modal__stat strong {
    font-size: 0.78rem;
  }
  .rpg-modal__right {
    padding: 1.2rem 1rem 1.4rem;
    gap: 0.7rem;
  }
  .rpg-modal__name {
    font-size: 1.4rem;
  }
  .rpg-modal__close {
    top: 0.6rem;
    right: 0.6rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .rpg-overlay {
    transition: none;
  }
}
.icon-rain {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.icon-rain__drop {
  position: absolute;
  width: var(--size);
  height: var(--size);
  opacity: 0;
  will-change: opacity;
  transition: opacity 1400ms ease-in-out;
}
.icon-rain__drop img {
  display: block;
  width: 100%;
  height: 100%;
  filter: grayscale(1);
}
.icon-rain__drop.is-on {
  opacity: var(--o, 0.25);
}

@media (prefers-reduced-motion: reduce) {
  .icon-rain {
    display: none;
  }
}
.capabilities-grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .capabilities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1100px) {
  .capabilities-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.cap-card {
  display: grid;
  gap: 0.75rem;
  padding: 1.5rem 1.6rem;
  background: #131a26;
  border: 1px solid rgba(234, 240, 250, 0.09);
  clip-path: polygon(0 0, calc(100% - 1rem) 0, 100% 1rem, 100% 100%, 1rem 100%, 0 calc(100% - 1rem));
  transition: border-color 300ms cubic-bezier(0.16, 1, 0.3, 1), transform 300ms cubic-bezier(0.16, 1, 0.3, 1);
}
.cap-card:hover {
  border-color: rgba(139, 92, 246, 0.4);
  transform: translateY(-3px);
}
.cap-card h3 {
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.cap-card h3::before {
  content: "";
  width: 0.4rem;
  aspect-ratio: 1;
  transform: rotate(45deg);
  display: inline-block;
  background: #8b5cf6;
}
.cap-card p {
  color: #9aa6b8;
  font-size: 0.88rem;
  line-height: 1.6;
}

.cap-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.2rem;
}

#about::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  user-select: none;
  background-image: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.12), transparent), repeating-linear-gradient(to bottom, rgba(139, 92, 246, 0.045) 0 1px, transparent 1px 5px), linear-gradient(rgba(139, 92, 246, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(139, 92, 246, 0.06) 1px, transparent 1px), radial-gradient(ellipse 52% 58% at 70% 43%, rgba(139, 92, 246, 0.12), transparent 72%);
  background-size: min(72rem, 90%) 1px, auto, 2.75rem 2.75rem, 2.75rem 2.75rem, auto;
  background-position: center 54%, 0 0, 0 0, 0 0, 0 0;
  background-repeat: no-repeat, repeat, repeat, repeat, no-repeat;
  mask-image: radial-gradient(ellipse 86% 76% at 50% 48%, #000 24%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 86% 76% at 50% 48%, #000 24%, transparent 78%);
}

#about::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 52% 58% at 70% 43%, rgba(245, 196, 81, 0.2), transparent 72%);
  opacity: 0;
  mask-image: radial-gradient(ellipse 86% 76% at 50% 48%, #000 24%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 86% 76% at 50% 48%, #000 24%, transparent 78%);
  transition: opacity 579ms ease-in-out;
}

#about.is-profile-active::after {
  opacity: 1;
}

#about .section-eyebrow {
  color: #f5c451;
}
#about .section-eyebrow::before {
  background: #8b5cf6;
}
#about .section-eyebrow::after {
  content: "";
  width: 4rem;
  height: 1px;
  background: linear-gradient(90deg, #8b5cf6, transparent);
}

#about #about-title {
  color: #8b5cf6;
}

#about .about__lead {
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  line-height: 1.55;
  color: #eef1f6;
  font-weight: 400;
}
#about .about__lead::selection {
  color: #eef1f6;
  background: rgba(139, 92, 246, 0.32);
}

#about .about__points {
  display: grid;
  gap: 0.7rem;
  margin-top: 1.4rem;
}
#about .about__points li {
  position: relative;
  display: flex;
  gap: 0.8rem;
  align-items: baseline;
  font-size: 0.92rem;
  color: #9aa6b8;
}
#about .about__points li::before {
  content: "";
  width: 0.4rem;
  aspect-ratio: 1;
  transform: rotate(45deg);
  display: inline-block;
  background: #f5c451;
  flex-shrink: 0;
}
#about .about__points li::after {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0.58rem;
  width: 0.75rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(139, 92, 246, 0.55), transparent);
  pointer-events: none;
}

#about .about__retro-panel {
  position: relative;
  border: 1px solid rgba(var(--profile-primary-rgb), 0.52);
  background: rgba(var(--profile-primary-rgb), 0.26);
  clip-path: polygon(0 0, calc(100% - 1rem) 0, 100% 1rem, 100% 100%, 1rem 100%, 0 calc(100% - 1rem));
  overflow: hidden;
  box-shadow: inset 0 0 30px rgba(var(--profile-primary-rgb), 0.03), 0 0 20px rgba(var(--profile-primary-rgb), 0.04);
  transition: border-color 579ms ease-in-out, background-color 579ms ease-in-out, box-shadow 579ms ease-in-out;
}
#about .about__retro-panel:focus-visible {
  outline: 1px solid var(--profile-secondary);
  outline-offset: 3px;
}
#about .about__retro-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(to bottom, rgba(var(--profile-primary-rgb), 0.05) 0 1px, transparent 1px 4px);
  opacity: 0.35;
}
#about .about__retro-panel .about__facts {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1px;
  background: rgba(var(--profile-primary-rgb), 0.26);
  transition: background-color 579ms ease-in-out;
}

#about .about__panel-content {
  position: relative;
}

#about .about__profile-stage {
  --profile-primary: #8b5cf6;
  --profile-primary-rgb: 139, 92, 246;
  --profile-secondary: #f5c451;
  --profile-secondary-rgb: 245, 196, 81;
  display: grid;
  grid-template-columns: clamp(5.5rem, 8.5vw, 7rem) minmax(0, 1fr);
  align-items: start;
  gap: 1rem;
}

#about .about__facts--technical {
  transition: opacity 496ms ease-in-out, transform 628ms ease-in-out;
}

#about .about__personal-card {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: block;
  opacity: 0;
  transform: translateY(0.45rem);
  pointer-events: none;
  background: #131a26;
  transition: opacity 496ms ease-in-out, transform 628ms ease-in-out;
}

#about .about__profile-stage.is-in-view {
  --profile-primary: #f5c451;
  --profile-primary-rgb: 245, 196, 81;
  --profile-secondary: #8b5cf6;
  --profile-secondary-rgb: 139, 92, 246;
}
#about .about__profile-stage.is-in-view .about__facts--technical {
  opacity: 0;
  transform: translateY(-0.45rem);
  pointer-events: none;
}
#about .about__profile-stage.is-in-view .about__personal-card {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
#about .about__profile-stage.is-in-view .about__photo-frame--ready .about__photo-placeholder {
  opacity: 0;
}
#about .about__profile-stage.is-in-view .about__photo-frame--ready img {
  opacity: 1;
  filter: saturate(1) contrast(1.02);
}

#about .about__photo-frame {
  position: relative;
  z-index: 4;
  width: 100%;
  aspect-ratio: 4/5;
  padding: 0.3rem;
  border: 1px solid rgba(var(--profile-primary-rgb), 0.58);
  background: rgba(14, 19, 25, 0.88);
  clip-path: polygon(0 0, calc(100% - 0.65rem) 0, 100% 0.65rem, 100% 100%, 0.65rem 100%, 0 calc(100% - 0.65rem));
  box-shadow: inset 0 0 0 1px rgba(var(--profile-secondary-rgb), 0.12);
  cursor: crosshair;
  transition: border-color 579ms ease-in-out, box-shadow 579ms ease-in-out;
}
#about .about__photo-frame:focus-visible {
  outline: 1px solid var(--profile-secondary);
  outline-offset: 3px;
}
#about .about__photo-frame::before, #about .about__photo-frame::after {
  content: "";
  position: absolute;
  z-index: 2;
  width: 1rem;
  height: 1rem;
  pointer-events: none;
}
#about .about__photo-frame::before {
  top: -1px;
  left: -1px;
  border-top: 2px solid var(--profile-secondary);
  border-left: 2px solid var(--profile-secondary);
}
#about .about__photo-frame::after {
  right: -1px;
  bottom: -1px;
  border-right: 2px solid var(--profile-primary);
  border-bottom: 2px solid var(--profile-primary);
}
#about .about__photo-frame img,
#about .about__photo-frame .about__photo-placeholder {
  width: 100%;
  height: 100%;
  clip-path: polygon(0 0, calc(100% - 0.4rem) 0, 100% 0.4rem, 100% 100%, 0.4rem 100%, 0 calc(100% - 0.4rem));
}
#about .about__photo-frame img {
  position: absolute;
  inset: 0.3rem;
  width: calc(100% - 0.6rem);
  height: calc(100% - 0.6rem);
  object-fit: cover;
  opacity: 0;
  filter: saturate(0.8) contrast(1.06);
  transition: opacity 579ms ease-in-out, filter 678ms ease-in-out;
}

#about .about__photo-placeholder {
  position: relative;
  display: grid;
  place-items: end center;
  padding: 0.55rem;
  overflow: hidden;
  color: var(--profile-primary);
  background: repeating-linear-gradient(to bottom, transparent 0 3px, rgba(var(--profile-primary-rgb), 0.07) 3px 4px), radial-gradient(circle at 50% 38%, rgba(var(--profile-primary-rgb), 0.13), transparent 52%), #131a26;
  font-family: "SFMono-Regular", ui-monospace, "Cascadia Code", Consolas, monospace;
  font-size: 0.5rem;
  letter-spacing: 0.1em;
  transition: opacity 496ms ease-in-out, color 579ms ease-in-out;
}
#about .about__photo-placeholder i {
  position: absolute;
  top: 24%;
  width: 34%;
  aspect-ratio: 1;
  border: 1px solid rgba(var(--profile-primary-rgb), 0.5);
  border-radius: 50%;
}
#about .about__photo-placeholder i::after {
  content: "";
  position: absolute;
  top: 125%;
  left: 50%;
  width: 190%;
  height: 110%;
  border: 1px solid rgba(var(--profile-primary-rgb), 0.42);
  border-radius: 50% 50% 0 0;
  transform: translateX(-50%);
}

#about .about__facts--personal .about__fact {
  padding: 0.65rem 1.3rem;
}

@media (max-width: 640px) {
  #about .about__profile-stage {
    grid-template-columns: clamp(4.75rem, 24vw, 5.5rem) minmax(0, 1fr);
    gap: 0.65rem;
  }
}
#about .about__retro-bar {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 2.25rem;
  padding: 0.45rem 0.75rem;
  color: var(--profile-primary);
  background: rgba(14, 19, 25, 0.92);
  font-family: "SFMono-Regular", ui-monospace, "Cascadia Code", Consolas, monospace;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  transition: color 579ms ease-in-out;
}
#about .about__retro-bar .about__retro-title {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}
#about .about__retro-bar .about__retro-status {
  margin-left: auto;
  color: var(--profile-secondary);
  transition: color 579ms ease-in-out;
}
#about .about__retro-bar .about__retro-dots {
  display: flex;
  gap: 0.25rem;
}
#about .about__retro-bar .about__retro-dots i {
  width: 0.38rem;
  aspect-ratio: 1;
  background: color-mix(in srgb, var(--profile-primary) 38%, #0a0d11);
  transition: background-color 579ms ease-in-out;
}
#about .about__retro-bar .about__retro-dots i:first-child {
  background: var(--profile-secondary);
}
#about .about__retro-bar .about__retro-dots i:nth-child(2) {
  background: var(--profile-primary);
}

#about .about__fact {
  background: #131a26;
  padding: 1.1rem 1.3rem;
  display: grid;
  gap: 0.25rem;
}

#about .about__fact .k {
  font-family: "SFMono-Regular", ui-monospace, "Cascadia Code", Consolas, monospace;
  font-size: 0.64rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--profile-primary) 82%, #eef1f6);
  transition: color 579ms ease-in-out;
}

#about .about__fact .v {
  color: #eef1f6;
  font-weight: 600;
}

#about .analog-word {
  display: inline-block;
  white-space: nowrap;
}

#about .analog-letter {
  display: inline-block;
  position: relative;
  min-width: 0.56em;
  height: 1.25em;
  overflow: hidden;
  line-height: 1.25;
  text-align: center;
  vertical-align: bottom;
}

#about .analog-letter__glyph {
  display: block;
  will-change: transform, opacity;
}
#about .analog-letter__glyph--in {
  animation: brand-letter-in 330ms ease-in-out both;
}
#about .analog-letter__glyph--out {
  position: absolute;
  inset: 0;
  animation: brand-letter-out 330ms ease-in-out both;
}

.contact__title {
  font-size: clamp(2rem, 10vw, 4rem);
  max-width: 16ch;
}
.contact__title .contact__accent {
  color: #8b5cf6;
}
.contact__title .contact__nowrap {
  white-space: nowrap;
}

.contact__text {
  color: #9aa6b8;
  max-width: 48ch;
  margin-top: 1rem;
}

.contact__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  margin-top: 2rem;
}
.contact__links a {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: "SFMono-Regular", ui-monospace, "Cascadia Code", Consolas, monospace;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #eef1f6;
  max-width: 100%;
  overflow-wrap: anywhere;
}
.contact__links a .diamond {
  width: 0.42rem;
  background: #8b5cf6;
}
.contact__links a:hover {
  color: #8b5cf6;
}
