/* ==========================================================================
   SECTIONS — hero, about, socials, studio, oracle, crew, guestbook, footer
   ========================================================================== */

/* --- Hero ---------------------------------------------------------------- */

.hero {
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding-top: calc(var(--nav-h) + var(--sp-6));
  padding-bottom: var(--sp-7);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: var(--sp-7);
  align-items: center;
}

@media (max-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: var(--sp-6);
    text-align: center;
    justify-items: center;
  }
}

.hero__status {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  margin-bottom: var(--sp-4);
}

.hero__name {
  font-size: var(--fs-hero);
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: var(--sp-4);
  position: relative;
  display: inline-block;
}

/* Glitch layers driven by data-text */
.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.glitch::before {
  color: var(--accent);
  clip-path: polygon(0 0, 100% 0, 100% 33%, 0 33%);
  animation: glitch-a 3.4s infinite steps(2, end);
  opacity: 0.85;
}

.glitch::after {
  color: var(--accent-soft);
  clip-path: polygon(0 62%, 100% 62%, 100% 100%, 0 100%);
  animation: glitch-b 2.8s infinite steps(2, end);
  opacity: 0.7;
}

@keyframes glitch-a {
  0%, 92%, 100% { transform: none; }
  93% { transform: translate(-3px, 1px); }
  95% { transform: translate(2px, -1px); }
  97% { transform: translate(-1px, 2px); }
}

@keyframes glitch-b {
  0%, 90%, 100% { transform: none; }
  91% { transform: translate(3px, -1px); }
  94% { transform: translate(-2px, 1px); }
  96% { transform: translate(1px, -2px); }
}

.hero__role {
  font-family: var(--font-mono);
  font-size: var(--fs-lg);
  color: var(--accent);
  margin-bottom: var(--sp-3);
  min-height: 1.6em;
}

.hero__role .cursor {
  display: inline-block;
  width: 10px;
  background: var(--accent);
  margin-left: 2px;
  animation: blink 1.1s steps(2) infinite;
  color: transparent;
}

@keyframes blink {
  50% { opacity: 0; }
}

.hero__tagline {
  font-size: var(--fs-md);
  color: var(--text-dim);
  max-width: 46ch;
  margin-bottom: var(--sp-5);
}

@media (max-width: 900px) {
  .hero__tagline {
    margin-inline: auto;
  }
}

.hero__cta {
  display: flex;
  gap: var(--sp-3);
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .hero__cta {
    justify-content: center;
  }
}

.hero__stats {
  display: flex;
  gap: var(--sp-5);
  margin-top: var(--sp-6);
  padding-top: var(--sp-5);
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .hero__stats {
    justify-content: center;
  }
}

.stat__value {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--accent);
}

.stat__label {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Portrait: flip card, real photo front / pixel avatar back */
.portrait {
  position: relative;
  width: min(320px, 78vw);
  aspect-ratio: 1;
  perspective: 1200px;
  justify-self: center;
}

.portrait__inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s var(--ease-out);
  transform-style: preserve-3d;
}

.portrait.is-flipped .portrait__inner {
  transform: rotateY(180deg);
}

.portrait__face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: var(--bg-sunken);
  box-shadow: var(--shadow-md), 0 0 60px rgba(var(--accent-rgb), 0.18);
}

.portrait__face--back {
  transform: rotateY(180deg);
}

/* Both the flip side and the "photo not added yet" state centre a pixel avatar. */
.portrait__face--back,
.portrait__face--placeholder {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 40%, rgba(var(--accent-rgb), 0.2), transparent 65%),
    var(--bg-deep);
}

.portrait__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--t-slow);
}

/* Fades the photo into the card and lays a whisper of accent over it, so a
   bright portrait does not sit on the dark page as a floating rectangle. */
#portraitFace::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(to top, rgba(5, 2, 5, 0.75) 0%, rgba(5, 2, 5, 0.12) 38%, transparent 62%),
    linear-gradient(140deg, rgba(var(--accent-rgb), 0.16), transparent 55%);
  transition: opacity var(--t-slow);
}

.portrait:hover #portraitFace::after {
  opacity: 0.72;
}

.portrait:hover .portrait__img {
  transform: scale(1.04);
}

.portrait__img--pixel {
  width: 70%;
  height: 70%;
  object-fit: contain;
  image-rendering: pixelated;
  filter: drop-shadow(0 0 22px rgba(var(--accent-rgb), 0.5));
}

/* Corner brackets */
.portrait::before,
.portrait::after {
  content: '';
  position: absolute;
  width: 34px;
  height: 34px;
  border: 2px solid var(--accent);
  z-index: 2;
  pointer-events: none;
}

.portrait::before {
  top: -8px;
  left: -8px;
  border-right: 0;
  border-bottom: 0;
  border-radius: var(--r-sm) 0 0 0;
}

.portrait::after {
  bottom: -8px;
  right: -8px;
  border-left: 0;
  border-top: 0;
  border-radius: 0 0 var(--r-sm) 0;
}

.portrait__flip {
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.speech {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translate(-50%, 8px);
  z-index: 4;
  max-width: 240px;
  padding: 10px 14px;
  border: 1px solid var(--accent);
  border-radius: var(--r-sm);
  background: var(--bg-elevated);
  color: var(--accent-soft);
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-fast), transform var(--t-fast);
  box-shadow: var(--shadow-sm);
}

.speech.is-shown {
  opacity: 1;
  transform: translate(-50%, 0);
}

.speech::after {
  content: '';
  position: absolute;
  bottom: -7px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: var(--bg-elevated);
  border-right: 1px solid var(--accent);
  border-bottom: 1px solid var(--accent);
}

.scroll-cue {
  position: absolute;
  bottom: var(--sp-5);
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  animation: float 2.6s ease-in-out infinite;
}

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

/* On narrow screens the stacked hero already fills the viewport — the cue
   would collide with the portrait's flip button. */
@media (max-width: 900px) {
  .scroll-cue {
    display: none;
  }
}

/* --- About --------------------------------------------------------------- */

.about__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--sp-5);
}

@media (max-width: 800px) {
  .about__grid {
    grid-template-columns: 1fr;
  }
}

.about__bio p + p {
  margin-top: var(--sp-4);
}

.facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-3);
  margin-top: var(--sp-5);
}

.fact {
  padding: var(--sp-3) var(--sp-4);
  border-left: 2px solid var(--accent);
  background: var(--bg-sunken);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
}

.fact__label {
  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.fact__value {
  font-size: var(--fs-sm);
  color: var(--text);
  margin-top: 2px;
}

.skills {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-top: var(--sp-4);
}

/* --- Socials ------------------------------------------------------------- */

.socials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--sp-4);
}

.social {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  padding: var(--sp-4);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--bg-surface);
  color: var(--text);
  transition: all var(--t-fast);
  position: relative;
  overflow: hidden;
}

.social::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(var(--accent-rgb), 0.14), transparent 60%);
  opacity: 0;
  transition: opacity var(--t-fast);
}

.social:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-md);
  color: var(--text);
}

.social:hover::before {
  opacity: 1;
}

.social__icon {
  width: 44px;
  height: 44px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: var(--r-sm);
  background: rgba(var(--accent-rgb), 0.12);
  color: var(--accent);
  position: relative;
  z-index: 1;
}

.social__icon svg {
  width: 22px;
  height: 22px;
}

.social__text {
  min-width: 0;
  position: relative;
  z-index: 1;
}

.social__name {
  font-family: var(--font-display);
  font-size: 0.7rem;
  color: var(--text);
}

.social__handle {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  color: var(--text-muted);
  margin-top: 5px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* --- Pixel studio -------------------------------------------------------- */

.studio {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: var(--sp-5);
  align-items: start;
}

@media (max-width: 860px) {
  .studio {
    grid-template-columns: 1fr;
  }
}

.studio__side {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.tool-group {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.tool-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-2);
}

.tool {
  display: grid;
  place-items: center;
  padding: 10px 0;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--bg-sunken);
  color: var(--text-dim);
  cursor: pointer;
  transition: all var(--t-fast);
}

.tool:hover {
  border-color: var(--line-strong);
  color: var(--accent);
}

.tool.is-active {
  background: rgba(var(--accent-rgb), 0.18);
  border-color: var(--accent);
  color: var(--accent);
}

.tool svg {
  width: 16px;
  height: 16px;
}

.palette-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 5px;
}

@media (max-width: 860px) {
  .palette-grid {
    grid-template-columns: repeat(12, 1fr);
  }
}

.swatch {
  aspect-ratio: 1;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--t-fast), border-color var(--t-fast);
}

.swatch:hover {
  transform: scale(1.15);
}

.swatch.is-active {
  border-color: #fff;
  transform: scale(1.1);
}

.color-readout {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-3);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--bg-sunken);
}

.color-readout__chip {
  width: 28px;
  height: 28px;
  border-radius: var(--r-xs);
  border: 1px solid var(--line);
  flex: none;
}

.color-readout__hex {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  color: var(--text);
}

.color-readout input[type='color'] {
  margin-left: auto;
  width: 32px;
  height: 28px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--r-xs);
  background: transparent;
  cursor: pointer;
}

.studio__main {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  align-items: center;
}

.canvas-frame {
  position: relative;
  padding: var(--sp-3);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-md);
  background:
    conic-gradient(from 0deg, #151015 0 25%, #0e0a0e 0 50%, #151015 0 75%, #0e0a0e 0) 0 0 / 20px 20px;
  box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.6);
  max-width: 100%;
  overflow: auto;
}

#artCanvas {
  display: block;
  image-rendering: pixelated;
  cursor: crosshair;
  touch-action: none;
  background: #000;
  max-width: 100%;
  height: auto;
}

.canvas-frame.show-grid::after {
  content: '';
  position: absolute;
  inset: var(--sp-3);
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: var(--cell, 20px) var(--cell, 20px);
}

.studio__actions {
  display: flex;
  gap: var(--sp-2);
  flex-wrap: wrap;
  justify-content: center;
}

.studio__hint {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  color: var(--text-muted);
  text-align: center;
}

/* --- Oracle -------------------------------------------------------------- */

.oracle {
  display: grid;
  place-items: center;
  gap: var(--sp-5);
  text-align: center;
}

.orb {
  width: 168px;
  height: 168px;
  cursor: pointer;
  transition: transform var(--t-mid);
  filter: drop-shadow(0 0 18px rgba(var(--accent-rgb), 0.35));
}

.orb:hover {
  transform: scale(1.06) translateY(-4px);
}

.orb.is-reading {
  animation: orb-shake 0.5s var(--ease);
}

@keyframes orb-shake {
  0%, 100% { transform: none; }
  20% { transform: translate(-5px, 2px) rotate(-2deg); }
  40% { transform: translate(5px, -2px) rotate(2deg); }
  60% { transform: translate(-3px, 1px) rotate(-1deg); }
  80% { transform: translate(3px, -1px) rotate(1deg); }
}

.fortune-card {
  width: min(620px, 100%);
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--sp-3);
  padding: var(--sp-6);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-md);
  background:
    linear-gradient(160deg, rgba(var(--accent-rgb), 0.08), transparent 70%),
    var(--bg-surface);
  position: relative;
  overflow: hidden;
}

.fortune-card::before {
  content: '"';
  position: absolute;
  top: -18px;
  left: 14px;
  font-family: Georgia, serif;
  font-size: 6rem;
  color: rgba(var(--accent-rgb), 0.16);
  line-height: 1;
}

.fortune-card.is-new {
  animation: fortune-pop 0.5s var(--ease-out);
}

@keyframes fortune-pop {
  0% { opacity: 0; transform: translateY(14px) scale(0.97); }
  100% { opacity: 1; transform: none; }
}

.fortune-text {
  font-size: var(--fs-lg);
  line-height: 1.6;
  color: var(--text);
  position: relative;
  z-index: 1;
}

.fortune-by {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  color: var(--accent);
  letter-spacing: 0.08em;
}

.oracle__actions {
  display: flex;
  gap: var(--sp-2);
  flex-wrap: wrap;
  justify-content: center;
}

.oracle__meta {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--text-muted);
}

.fav-list {
  width: min(620px, 100%);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  text-align: left;
}

.fav {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  padding: var(--sp-3) var(--sp-4);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--bg-sunken);
  font-size: var(--fs-sm);
  color: var(--text-dim);
}

.fav button {
  margin-left: auto;
  flex: none;
}

/* --- Crew ---------------------------------------------------------------- */

.crew {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: var(--sp-4);
}

.crew__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-5) var(--sp-3);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--bg-surface);
  color: var(--text);
  text-align: center;
  transition: all var(--t-fast);
}

.crew__card:hover {
  transform: translateY(-5px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-md);
  color: var(--text);
}

.crew__avatar {
  width: 82px;
  height: 82px;
  object-fit: contain;
  image-rendering: pixelated;
  border-radius: 50%;
  border: 2px solid var(--accent);
  background: var(--bg-sunken);
  padding: 6px;
  transition: transform var(--t-fast);
}

.crew__card:hover .crew__avatar {
  transform: scale(1.08) rotate(-4deg);
}

.crew__name {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  color: var(--text);
  word-break: break-word;
}

.crew__role {
  font-family: var(--font-mono);
  font-size: 0.64rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* --- Guestbook ----------------------------------------------------------- */

.guestbook {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: var(--sp-5);
  align-items: start;
}

@media (max-width: 860px) {
  .guestbook {
    grid-template-columns: 1fr;
  }
}

.gb-form {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  position: sticky;
  top: calc(var(--nav-h) + var(--sp-4));
}

@media (max-width: 860px) {
  .gb-form {
    position: static;
  }
}

.gb-toolbar {
  display: flex;
  gap: var(--sp-3);
  align-items: center;
  margin-bottom: var(--sp-4);
  flex-wrap: wrap;
}

.gb-toolbar .input {
  flex: 1;
  min-width: 160px;
}

.notes {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: var(--sp-3);
}

.note {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  padding: var(--sp-4);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--bg-surface);
  transition: border-color var(--t-fast), transform var(--t-fast);
}

.note:hover {
  border-color: var(--line-strong);
  transform: translateY(-2px);
}

.note__head {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.note__avatar {
  width: 32px;
  height: 32px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: var(--r-xs);
  font-family: var(--font-display);
  font-size: 0.6rem;
  color: #0b0508;
}

.note__author {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  color: var(--accent);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.note__time {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: var(--text-muted);
  flex: none;
}

.note__body {
  font-size: var(--fs-sm);
  color: var(--text-dim);
  line-height: 1.6;
  overflow-wrap: anywhere;
}

.note__del {
  align-self: flex-start;
}

/* --- Achievements -------------------------------------------------------- */

.achv-list {
  display: grid;
  gap: var(--sp-2);
}

.achv {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-3);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--bg-sunken);
  opacity: 0.5;
  transition: opacity var(--t-fast), border-color var(--t-fast);
}

.achv.is-done {
  opacity: 1;
  border-color: var(--line-strong);
}

.achv__icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: var(--r-xs);
  background: rgba(var(--accent-rgb), 0.14);
  font-size: 1rem;
  flex: none;
}

.achv__name {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  color: var(--text);
}

.achv__desc {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.achv__check {
  margin-left: auto;
  color: var(--ok);
  flex: none;
}

/* --- Art gallery (admin) ------------------------------------------------- */

.art-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: var(--sp-3);
}

.art-item {
  position: relative;
  padding: var(--sp-2);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--bg-sunken);
  text-align: center;
}

.art-item canvas {
  width: 100%;
  height: auto;
  image-rendering: pixelated;
  border-radius: var(--r-xs);
  display: block;
}

.art-item__time {
  margin-top: 6px;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  color: var(--text-muted);
}

.art-item__del {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid var(--bad);
  background: #1a0808;
  color: var(--bad);
  font-size: 0.6rem;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.art-item__del:hover {
  background: var(--bad);
  color: #000;
}

/* --- Shame overlay (the 18+ prank) --------------------------------------- */

.shame {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: none;
  place-items: center;
  text-align: center;
  padding: var(--sp-5);
  background: #000;
}

.shame.is-open {
  display: grid;
}

.shame__text {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 5vw, 2rem);
  line-height: 2;
  color: #ff2a2a;
  text-shadow: 0 0 24px rgba(255, 0, 0, 0.7);
  animation: shame-pulse 1.4s ease-in-out infinite;
}

@keyframes shame-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.62; }
}

/* --- Footer -------------------------------------------------------------- */

.footer {
  margin-top: var(--sp-8);
  border-top: 1px solid var(--line);
  padding-block: var(--sp-6);
  background: rgba(0, 0, 0, 0.3);
}

.footer__grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

.footer__note {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  color: var(--text-muted);
}

.footer__links {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

.footer__links button,
.footer__links a {
  background: none;
  border: 0;
  padding: 0;
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  color: var(--text-muted);
  cursor: pointer;
  transition: color var(--t-fast);
}

.footer__links button:hover,
.footer__links a:hover {
  color: var(--accent);
}
