/* FATCAT — noir shell, degen heart */

:root {
  --ink: #0b0b10;
  --ink-2: #101018;
  --ink-3: #16161f;
  --paper: #ede4d3;
  --paper-dim: #d9cdb6;
  --gold: #c9a24b;
  --gold-hot: #e4c06a;
  --purple: #5f4b8b;
  --stamp-red: #8e3b2f;
  --text: #e8e4da;
  --text-dim: #9a958a;
  --serif: "Fraunces", georgia, serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
  --sans: "Inter", system-ui, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

body {
  background: var(--ink);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--purple);
  color: var(--paper);
}

.mono {
  font-family: var(--mono);
}
.gold {
  color: var(--gold);
  font-style: normal;
}

img,
video {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
}

.scene-video {
  object-fit: cover;
}

/* film grain */
body::after {
  content: "";
  position: fixed;
  inset: -100px;
  z-index: 90;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 0.9s steps(4) infinite;
}
@keyframes grain {
  0% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(-40px, 30px);
  }
  50% {
    transform: translate(30px, -45px);
  }
  75% {
    transform: translate(-25px, -20px);
  }
  100% {
    transform: translate(0, 0);
  }
}

/* ---------- preloader · film leader ---------- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: #08080b;
  display: grid;
  place-items: center;
  /* escape hatch: if JS dies, the leader burns itself out */
  animation: preloader-escape 0.6s ease 4.5s forwards;
}
@keyframes preloader-escape {
  to {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}
.preloader__leader {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}
.preloader__cross {
  position: absolute;
  background: rgba(237, 228, 211, 0.14);
}
.preloader__cross--v {
  width: 1px;
  height: 100%;
  left: 50%;
}
.preloader__cross--h {
  height: 1px;
  width: 100%;
  top: 50%;
}
.preloader__ring {
  width: min(300px, 60vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: conic-gradient(
    var(--gold) calc(var(--sweep, 0) * 1turn),
    rgba(237, 228, 211, 0.08) 0
  );
  -webkit-mask: radial-gradient(closest-side, transparent 96%, black 97%);
  mask: radial-gradient(closest-side, transparent 96%, black 97%);
}
.preloader__count {
  position: absolute;
  font-family: var(--serif);
  font-weight: 900;
  font-size: clamp(90px, 16vw, 160px);
  color: var(--paper);
  line-height: 1;
}
.preloader__card {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  text-align: center;
  gap: 12px;
  background: #08080b;
  opacity: 0;
  visibility: hidden;
}
.preloader__studio {
  font-family: var(--serif);
  font-weight: 900;
  font-size: clamp(34px, 6vw, 64px);
  letter-spacing: -0.01em;
  color: var(--paper);
  text-transform: uppercase;
}
.preloader__presents {
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.28em;
}

/* ---------- custom cursor ---------- */
.cursor {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 300;
  width: 34px;
  height: 34px;
  margin: -17px 0 0 -17px;
  border: 1px solid rgba(201, 162, 75, 0.65);
  border-radius: 50%;
  pointer-events: none;
  display: none;
  will-change: transform;
}
.cursor i {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 4px;
  height: 4px;
  margin: -2px 0 0 -2px;
  border-radius: 50%;
  background: var(--gold);
}
@media (pointer: fine) {
  .cursor {
    display: block;
  }
}
@media (prefers-reduced-motion: reduce) {
  .cursor {
    display: none !important;
  }
}
.paw-stamp {
  position: fixed;
  z-index: 299;
  width: 26px;
  height: 26px;
  margin: -13px 0 0 -13px;
  pointer-events: none;
  opacity: 0.85;
}

/* ---------- cigar scroll progress ---------- */
.cigar-progress {
  position: fixed;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  height: min(40vh, 340px);
  width: 3px;
  z-index: 110;
  background: rgba(237, 228, 211, 0.1);
  border-radius: 2px;
}
.cigar-progress__ash {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0%;
  background: linear-gradient(
    180deg,
    rgba(154, 149, 138, 0.5),
    rgba(154, 149, 138, 0.2)
  );
  border-radius: 2px;
}
.cigar-progress__ember {
  position: absolute;
  left: 50%;
  top: 0%;
  width: 7px;
  height: 7px;
  margin-left: -3.5px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    #ffdf9e 0%,
    #e4922e 55%,
    rgba(228, 146, 46, 0) 75%
  );
  box-shadow: 0 0 12px 2px rgba(228, 146, 46, 0.75);
}
@media (max-width: 900px) {
  .cigar-progress {
    right: 8px;
    width: 2px;
    height: 34vh;
  }
}

/* ---------- chrome ---------- */
.chrome {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px clamp(18px, 4vw, 44px) 26px;
  background: linear-gradient(
    180deg,
    rgba(11, 11, 16, 0.82),
    rgba(11, 11, 16, 0.38) 55%,
    transparent
  );
  pointer-events: none;
  transition: opacity 0.35s;
}
.chrome > * {
  pointer-events: auto;
}
.chrome.is-hidden {
  opacity: 0;
}
.chrome.is-hidden > * {
  pointer-events: none;
}
.chrome__ticker {
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 17px;
  color: var(--paper);
  text-decoration: none;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.6);
}
.chrome__nav {
  display: flex;
  gap: 22px;
  align-items: center;
}
.chrome__nav a {
  font-family: var(--mono);
  font-size: 13px;
  text-decoration: none;
  color: var(--text-dim);
  transition: color 0.18s;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
}
.chrome__nav a:hover {
  color: var(--paper);
}
.chrome__buy {
  color: var(--ink) !important;
  background: var(--gold);
  padding: 8px 16px;
  border-radius: 999px;
  text-shadow: none !important;
  transition:
    background 0.18s,
    transform 0.18s;
}
.chrome__buy:hover {
  background: var(--gold-hot);
  transform: translateY(-1px);
}
.chrome__buy:active {
  transform: scale(0.97);
}

/* ---------- hero ---------- */
.hero {
  min-height: 100svh;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: 2vw;
  padding: clamp(90px, 12vh, 140px) clamp(18px, 5vw, 64px) 60px;
  overflow: clip;
}
.hero__blinds {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(
    100deg,
    transparent 0 90px,
    rgba(201, 162, 75, 0.045) 90px 132px
  );
  mask-image: linear-gradient(
    90deg,
    transparent,
    black 30%,
    black 78%,
    transparent
  );
}
.hero__copy {
  position: relative;
  z-index: 2;
}
.hero__eyebrow {
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 0.14em;
  margin-bottom: 18px;
}
.hero__title {
  font-family: var(--serif);
  font-optical-sizing: auto;
  font-weight: 900;
  font-size: clamp(60px, 10.5vw, 152px);
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: var(--paper);
  text-transform: uppercase;
  white-space: nowrap;
}
.hero__title .letter-mask {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
}
.hero__title .letter {
  display: inline-block;
  will-change: transform;
}
.hero__sub {
  margin-top: 26px;
  font-size: clamp(14px, 1.4vw, 17px);
  color: var(--text-dim);
  line-height: 1.75;
}
.hero__actions {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.ca-pill {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 100%;
  gap: 8px 14px;
  border: 1px solid rgba(201, 162, 75, 0.5);
  background: rgba(201, 162, 75, 0.07);
  color: var(--paper);
  border-radius: 999px;
  padding: 12px 20px;
  font-size: 13px;
  cursor: pointer;
  transition:
    border-color 0.18s,
    background 0.18s,
    transform 0.18s;
}
.ca-pill:hover {
  border-color: var(--gold);
  background: rgba(201, 162, 75, 0.14);
}
.ca-pill:active {
  transform: scale(0.97);
}
.ca-pill__label {
  color: var(--gold);
  overflow-wrap: anywhere;
}
.ghost-link {
  font-size: 13px;
  color: var(--text-dim);
  text-decoration: none;
  border-bottom: 1px solid rgba(154, 149, 138, 0.35);
  padding-bottom: 2px;
  transition:
    color 0.18s,
    border-color 0.18s;
}
.ghost-link:hover {
  color: var(--paper);
  border-color: var(--paper);
}

.hero__portrait {
  position: relative;
  z-index: 1;
  justify-self: center;
  width: min(40vw, 480px);
  will-change: transform;
}
.hero__portrait video {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  border-radius: 10px;
  box-shadow:
    0 1px 0 rgba(237, 228, 211, 0.06) inset,
    0 2.8px 2.2px rgba(0, 0, 0, 0.14),
    0 6.7px 5.3px rgba(0, 0, 0, 0.19),
    0 12.5px 10px rgba(0, 0, 0, 0.24),
    0 22.3px 17.9px rgba(0, 0, 0, 0.29),
    0 41.8px 33.4px rgba(0, 0, 0, 0.34),
    0 100px 80px rgba(0, 0, 0, 0.48);
}
.hero__cue {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--text-dim);
  opacity: 0.8;
}

/* ---------- marquee ---------- */
.marquee {
  overflow: clip;
  border-block: 1px solid rgba(95, 75, 139, 0.3);
  padding: 12px 0;
  background: var(--ink-2);
}
.marquee__track {
  display: flex;
  gap: 48px;
  width: max-content;
  white-space: nowrap;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.22em;
  color: var(--text-dim);
  will-change: transform;
}
.marquee__track b {
  color: var(--gold);
  font-weight: 500;
}

/* ---------- intertitles ---------- */
.intertitle {
  min-height: 88svh;
  display: grid;
  place-items: center;
  padding: 14vh clamp(18px, 5vw, 64px) 12vh;
  position: relative;
}
.intertitle__card {
  position: relative;
  width: min(680px, 92vw);
  background: var(--paper);
  color: #17130c;
  text-align: center;
  padding: clamp(44px, 7vw, 84px) clamp(24px, 5vw, 72px);
  box-shadow:
    0 2.8px 2.2px rgba(0, 0, 0, 0.11),
    0 6.7px 5.3px rgba(0, 0, 0, 0.16),
    0 12.5px 10px rgba(0, 0, 0, 0.2),
    0 22.3px 17.9px rgba(0, 0, 0, 0.24),
    0 41.8px 33.4px rgba(0, 0, 0, 0.29),
    0 100px 80px rgba(0, 0, 0, 0.4);
  will-change: transform;
}
.intertitle__card::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 2px solid rgba(23, 19, 12, 0.55);
  pointer-events: none;
}
.intertitle__card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='p'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.55' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0.55 0 0 0 0 0.5 0 0 0 0 0.42 0 0 0 0.16 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23p)'/%3E%3C/svg%3E");
}
.intertitle__numeral {
  position: absolute;
  top: 18px;
  right: 26px;
  font-family: var(--serif);
  font-weight: 600;
  font-style: italic;
  font-size: clamp(54px, 7vw, 96px);
  line-height: 1;
  color: var(--gold);
  opacity: 0.85;
  pointer-events: none;
}
.intertitle__act {
  font-size: 12px;
  letter-spacing: 0.3em;
  color: rgba(23, 19, 12, 0.6);
  margin-bottom: 14px;
}
.intertitle__line {
  font-family: var(--serif);
  font-weight: 900;
  font-size: clamp(40px, 7vw, 76px);
  letter-spacing: -0.02em;
  line-height: 1;
  text-transform: uppercase;
}
.intertitle__sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(16px, 2.2vw, 21px);
  margin-top: 18px;
  color: rgba(23, 19, 12, 0.78);
}

/* ---------- scenes ---------- */
.scene {
  position: relative;
  min-height: 100svh;
  overflow: clip;
  display: grid;
  align-items: end;
}
.scene__media,
.scene__media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.scene__media video {
  object-fit: cover;
  will-change: transform;
}
.scene__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(11, 11, 16, 0.7),
      transparent 30%,
      transparent 62%,
      rgba(11, 11, 16, 0.92)
    ),
    radial-gradient(
      120% 90% at 50% 40%,
      transparent 55%,
      rgba(11, 11, 16, 0.55)
    );
}
.scene__copy {
  position: relative;
  z-index: 2;
  padding: clamp(28px, 4vw, 44px);
  margin: 0 clamp(18px, 6vw, 80px) clamp(60px, 12vh, 120px);
  max-width: 560px;
  text-align: left;
  background: radial-gradient(
    140% 130% at 50% 50%,
    rgba(11, 11, 16, 0.62),
    rgba(11, 11, 16, 0) 72%
  );
  border-radius: 16px;
}
.scene__copy--right {
  justify-self: end;
}
.scene__copy--left {
  justify-self: start;
}
.scene__narration {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(20px, 2.6vw, 30px);
  line-height: 1.45;
  color: var(--paper);
  text-wrap: balance;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.65);
}
.scene__caption {
  margin-top: 20px;
  font-size: 13px;
  color: var(--text-dim);
}
.scene__caption::before {
  content: "— ";
  color: var(--gold);
}

/* ---------- vices · dossier cards ---------- */
.vices {
  padding: clamp(80px, 14vh, 150px) clamp(18px, 5vw, 64px)
    clamp(60px, 10vh, 110px);
}
.vices__list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 0.92fr 1.18fr;
  gap: clamp(16px, 2.5vw, 28px);
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}
.vice {
  position: relative;
  background: var(--ink-3);
  border: 1px solid rgba(95, 75, 139, 0.22);
  border-radius: 10px;
  padding: 34px 28px 26px;
  transition:
    transform 0.25s var(--ease-out),
    border-color 0.25s;
}
.vice:hover {
  border-color: rgba(201, 162, 75, 0.45);
}
.vice--a {
  transform: rotate(-0.6deg);
}
.vice--b {
  transform: rotate(0.4deg) translateY(26px);
}
.vice--c {
  transform: rotate(-0.3deg) translateY(-8px);
}
.vice--a:hover {
  transform: rotate(-0.6deg) translateY(-4px);
}
.vice--b:hover {
  transform: rotate(0.4deg) translateY(22px);
}
.vice--c:hover {
  transform: rotate(-0.3deg) translateY(-12px);
}
.vice__tape {
  position: absolute;
  top: -10px;
  left: 50%;
  width: 86px;
  height: 22px;
  transform: translateX(-50%) rotate(-2deg);
  background: rgba(237, 228, 211, 0.14);
  border-left: 1px dashed rgba(237, 228, 211, 0.2);
  border-right: 1px dashed rgba(237, 228, 211, 0.2);
}
.vice--b .vice__tape {
  transform: translateX(-50%) rotate(1.5deg);
}
.vice__num {
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--gold);
}
.vice__name {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(22px, 2.4vw, 28px);
  margin: 12px 0 10px;
  color: var(--paper);
  letter-spacing: -0.01em;
}
.vice__desc {
  color: var(--text-dim);
  font-size: 15px;
}
.vice__quote {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px dashed rgba(154, 149, 138, 0.25);
  font-size: 12.5px;
  color: var(--text-dim);
  font-style: italic;
}
.vice__quote--pull {
  font-size: 15.5px;
  color: var(--text);
  border-top-color: rgba(201, 162, 75, 0.4);
}

/* ---------- evidence stack · case files ---------- */
.evidence {
  position: relative;
  padding: 0 clamp(18px, 5vw, 64px) 14vh;
}
.evidence__intro {
  text-align: center;
  padding: 8vh 0 6vh;
}
.evidence__label {
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--text-dim);
}
.evidence__stack {
  max-width: 640px;
  margin: 0 auto;
}
.exhibit {
  position: sticky;
  top: 15vh;
  background: var(--ink-2);
  border: 1px solid rgba(154, 149, 138, 0.28);
  border-radius: 4px;
  padding: 30px 30px 24px;
  margin-bottom: 17vh;
  box-shadow:
    0 6.7px 5.3px rgba(0, 0, 0, 0.19),
    0 22.3px 17.9px rgba(0, 0, 0, 0.29),
    0 100px 80px rgba(0, 0, 0, 0.48);
  transform-origin: center top;
  will-change: transform, opacity;
}
.exhibit::before {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(154, 149, 138, 0.18);
  pointer-events: none;
}
.exhibit::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='p'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.6' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0.4 0 0 0 0 0.38 0 0 0 0 0.34 0 0 0 0.05 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23p)'/%3E%3C/svg%3E");
}
.exhibit:nth-child(odd) {
  transform: rotate(-0.5deg);
}
.exhibit:nth-child(even) {
  transform: rotate(0.45deg);
}
.exhibit__corner {
  position: absolute;
  width: 14px;
  height: 14px;
  pointer-events: none;
}
.exhibit__corner--tl {
  top: 3px;
  left: 3px;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
}
.exhibit__corner--br {
  bottom: 3px;
  right: 3px;
  border-bottom: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
}
.exhibit__stamp {
  position: absolute;
  top: 16px;
  right: 18px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stamp-red);
  border: 1.5px solid var(--stamp-red);
  border-radius: 3px;
  padding: 4px 8px;
  transform: rotate(6deg);
  opacity: 0.85;
  mix-blend-mode: screen;
}
.exhibit__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 14px;
  padding-right: 110px;
}
.exhibit__tag {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
  color: var(--gold);
  text-transform: uppercase;
}
.exhibit__date {
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--text-dim);
}
.exhibit__body {
  position: relative;
  font-family: var(--mono);
  font-size: clamp(14px, 1.6vw, 16.5px);
  line-height: 1.7;
  color: var(--text);
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}
.exhibit__foot {
  margin-top: 16px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.12em;
}

/* ---------- the call ---------- */
.call {
  position: relative;
  min-height: 100svh;
  overflow: clip;
  display: grid;
  place-items: center;
  padding: 16vh clamp(18px, 5vw, 64px);
}
.call__bg,
.call__bg video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.call__bg video {
  object-fit: cover;
  opacity: 0.55;
  will-change: transform;
}
.call__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    90% 70% at 50% 50%,
    rgba(11, 11, 16, 0.2),
    rgba(11, 11, 16, 0.93)
  );
}
.call__psps {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 0.4em;
  pointer-events: none;
  z-index: 1;
}
.call__psps span {
  font-family: var(--serif);
  font-weight: 900;
  font-size: clamp(48px, 10vw, 140px);
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201, 162, 75, 0.28);
  text-transform: lowercase;
  white-space: nowrap;
  will-change: transform, opacity;
}
.call__psps span:nth-child(3) {
  color: var(--gold);
  -webkit-text-stroke: 0;
}
.call__panel {
  position: relative;
  z-index: 2;
  width: min(760px, 94vw);
  text-align: center;
  background: rgba(11, 11, 16, 0.55);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(201, 162, 75, 0.25);
  border-radius: 14px;
  padding: clamp(32px, 5vw, 56px);
}
.call__label {
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 18px;
}
.call__ca {
  width: 100%;
  background: var(--ink-2);
  color: var(--text);
  border: 1px solid rgba(95, 75, 139, 0.4);
  border-radius: 10px;
  padding: 18px 20px;
  font-size: clamp(11px, 1.5vw, 14px);
  cursor: pointer;
  display: grid;
  gap: 8px;
  transition:
    border-color 0.18s,
    transform 0.18s;
}
.call__ca:hover {
  border-color: var(--gold);
}
.call__ca:active {
  transform: scale(0.99);
}
.call__addr {
  overflow-wrap: anywhere;
  line-height: 1.5;
  user-select: all;
  -webkit-user-select: all;
}
.call__copy {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.14em;
}
.call__links {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.btn {
  font-family: var(--mono);
  font-size: 13px;
  text-decoration: none;
  color: var(--text);
  border: 1px solid rgba(154, 149, 138, 0.35);
  padding: 11px 20px;
  border-radius: 999px;
  transition:
    border-color 0.18s,
    color 0.18s,
    background 0.18s,
    transform 0.18s;
}
.btn:hover {
  border-color: var(--paper);
  color: var(--paper);
  transform: translateY(-1px);
}
.btn:active {
  transform: scale(0.97);
}
.btn--gold {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
  font-weight: 500;
}
.btn--gold:hover {
  background: var(--gold-hot);
  border-color: var(--gold-hot);
  color: var(--ink);
}
.call__fine {
  margin-top: 26px;
  font-size: 11.5px;
  color: var(--text-dim);
  letter-spacing: 0.06em;
}

/* ---------- credits ---------- */
.marquee--credits {
  border-block-color: rgba(201, 162, 75, 0.22);
}
.credits {
  position: relative;
  height: 100svh;
  overflow: clip;
  background: #060608;
  display: grid;
  place-items: center;
}
.credits__crawl {
  text-align: center;
  display: grid;
  gap: 26px;
  will-change: transform;
}
.credits__title {
  font-family: var(--serif);
  font-weight: 900;
  font-size: clamp(40px, 6vw, 72px);
  color: var(--paper);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.credits__crawl p:not(.credits__title):not(.credits__fine):not(.credits__psps) {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.14em;
  color: var(--text-dim);
  text-transform: lowercase;
}
.credits__crawl p span {
  color: var(--gold);
}
.credits__fine {
  max-width: 480px;
  margin: 30px auto 0;
  font-size: 11px;
  color: #8a857a;
  line-height: 1.8;
}
.credits__psps {
  font-family: var(--serif) !important;
  font-weight: 900;
  font-size: clamp(28px, 4vw, 44px) !important;
  color: var(--gold) !important;
  letter-spacing: -0.01em !important;
}

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
    padding-top: 100px;
  }
  .hero__portrait {
    width: min(74vw, 360px);
    order: -1;
  }
  .hero__title {
    font-size: clamp(56px, 17vw, 90px);
  }
  .hero__actions {
    justify-content: center;
  }
  .hero__cue {
    display: none;
  }
  .vices__list {
    grid-template-columns: 1fr;
    max-width: 480px;
  }
  .vice--a,
  .vice--b,
  .vice--c {
    transform: rotate(-0.4deg);
  }
  .vice--b {
    transform: rotate(0.4deg);
  }
  .scene__copy--right,
  .scene__copy--left {
    justify-self: center;
  }
  .chrome__nav a:not(.chrome__buy) {
    display: none;
  }
  .intertitle {
    min-height: 66svh;
    padding: 9vh clamp(18px, 5vw, 64px);
  }
  .evidence {
    padding-bottom: 8vh;
  }
  .exhibit {
    margin-bottom: 12vh;
    top: 12vh;
  }
  .credits {
    height: auto;
    padding: 16vh 18px;
  }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  body::after {
    animation: none;
  }
  .preloader {
    display: none;
  }
  .cigar-progress {
    display: none;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

.exhibit__veil {
  position: absolute;
  inset: 0;
  border-radius: 4px;
  background: var(--ink);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 2;
}

/* ---------- WebGL layer ---------- */
.gl-scenes,
.gl-fx {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.gl-scenes {
  z-index: -1;
}
.gl-fx {
  z-index: 95;
}
html.gl-on body {
  background: transparent;
}
html.gl-on {
  background: var(--ink);
}
html.gl-on body::after {
  display: none;
} /* GL grain replaces CSS grain */
html.gl-on video.gl-owned {
  opacity: 0;
} /* plane took over; element stays as texture source */

/* ---------- sound toggle ---------- */
.chrome__sound {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  background: none;
  border: 1px solid rgba(154, 149, 138, 0.3);
  border-radius: 999px;
  padding: 7px 14px;
  cursor: pointer;
  transition:
    color 0.18s,
    border-color 0.18s;
}
.chrome__sound:hover {
  color: var(--paper);
  border-color: var(--paper);
}
.chrome__sound.is-on {
  color: var(--gold);
  border-color: rgba(201, 162, 75, 0.6);
}

/* ---------- filmstrip sprocket edges (GL-film signature) ---------- */
html.gl-on main::before,
html.gl-on main::after {
  content: "";
  position: fixed;
  top: 0;
  bottom: 0;
  width: 22px;
  z-index: 96;
  pointer-events: none;
  background-image: radial-gradient(
    ellipse 5px 8px at 11px 21px,
    rgba(237, 228, 211, 0.09) 0 100%,
    transparent 101%
  );
  background-size: 22px 42px;
  mask-image: linear-gradient(
    180deg,
    transparent,
    black 12%,
    black 88%,
    transparent
  );
}
html.gl-on main::before {
  left: 6px;
}
html.gl-on main::after {
  right: 6px;
}
@media (max-width: 900px) {
  html.gl-on main::before,
  html.gl-on main::after {
    width: 12px;
    background-size: 12px 34px;
    background-image: radial-gradient(
      ellipse 3px 5.5px at 6px 17px,
      rgba(237, 228, 211, 0.08) 0 100%,
      transparent 101%
    );
  }
  html.gl-on main::before {
    left: 2px;
  }
  html.gl-on main::after {
    right: 2px;
  }
}

/* ---------- summon card (pspspsps easter egg) ---------- */
.summon {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 250;
  width: min(300px, 78vw);
  background: var(--ink-2);
  border: 1px solid rgba(201, 162, 75, 0.5);
  border-radius: 6px;
  padding: 10px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.summon img {
  border-radius: 3px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.summon__line {
  margin-top: 10px;
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.04em;
}

/* ---------- hold-the-cat paw ---------- */
.paw-big {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
  z-index: 3;
}
.paw-big svg {
  width: 38%;
  filter: drop-shadow(0 0 30px rgba(201, 162, 75, 0.6));
}

/* ---------- konami milk flood ---------- */
.milk-flood {
  position: fixed;
  inset: 0;
  z-index: 400;
  background: #f4efe4;
  opacity: 0;
  pointer-events: none;
}
body.milk-mode ::selection {
  background: #f4efe4;
  color: var(--ink);
}
