:root {
  --void: #0a0a0a;
  --void-2: #141414;
  --bone: #f4f0e6;
  --bone-dim: #c8c2b3;
  --acid: #c5ff00;
  --acid-dim: #8fcc00;
  --blood: #ff3c00;
  --amber: #ffb400;

  --f-display: "Bungee", system-ui, sans-serif;
  --f-body: "Fraunces", Georgia, serif;
  --f-mono: "Space Mono", ui-monospace, monospace;

  --wrap: 1440px;
  --pad-x: clamp(24px, 5vw, 80px);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--void);
  color: var(--bone);
  font-family: var(--f-body);
  font-size: 18px;
  line-height: 1.55;
  overflow-x: hidden;
  min-height: 100vh;
  cursor: none;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: none; border: none; background: none; color: inherit; }
ul, ol { list-style: none; }
em { font-style: italic; }
strong { font-weight: 900; }

::selection { background: var(--acid); color: var(--void); }

@media (pointer: coarse) {
  body, button, a { cursor: auto; }
  .cursor-ring, .cursor-dot { display: none; }
}

/* ========== GRAIN / SCANLINES ========== */

.grain {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 1000;
  opacity: 0.12; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  animation: grainShift 0.8s steps(6) infinite;
}

@keyframes grainShift {
  0%   { transform: translate(0, 0); }
  20%  { transform: translate(-3%, 4%); }
  40%  { transform: translate(5%, -2%); }
  60%  { transform: translate(-2%, -5%); }
  80%  { transform: translate(4%, 3%); }
  100% { transform: translate(0, 0); }
}

.scanlines {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 999;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0,
    transparent 2px,
    rgba(0, 0, 0, 0.25) 3px,
    transparent 4px
  );
  opacity: 0.35;
}

/* ========== CURSOR ========== */

.cursor-ring, .cursor-dot {
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 1001;
  transform: translate(-50%, -50%);
  will-change: transform;
  mix-blend-mode: difference;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1.5px solid var(--acid);
  border-radius: 50%;
  transition: width 0.25s, height 0.25s, border-color 0.2s;
}
.cursor-dot {
  width: 6px; height: 6px;
  background: var(--acid);
  border-radius: 50%;
}
body.cursor-grow .cursor-ring {
  width: 72px; height: 72px;
  border-color: var(--blood);
}

/* ========== TOP MARQUEE ========== */

.marquee-top {
  background: var(--bone);
  color: var(--void);
  padding: 6px 0;
  border-bottom: 1px solid var(--void);
  overflow: hidden;
  position: relative;
  z-index: 10;
}
.marquee-top .marquee-track {
  display: flex; gap: 32px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  white-space: nowrap;
  animation: slide 40s linear infinite;
  text-transform: uppercase;
}

@keyframes slide {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ========== NAV ========== */

.nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px var(--pad-x);
  background: rgba(10, 10, 10, 0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(244, 240, 230, 0.08);
}

.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--f-display);
  font-size: 18px;
  color: var(--acid);
  letter-spacing: 0.02em;
}
.nav-eye {
  width: 28px; height: auto;
  color: var(--acid);
  animation: blink 6s infinite;
}

@keyframes blink {
  0%, 88%, 100% { transform: scaleY(1); }
  92% { transform: scaleY(0.05); }
  96% { transform: scaleY(1); }
}

.nav-links {
  display: flex; gap: 28px;
  font-family: var(--f-mono);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.nav-links a {
  display: flex; gap: 6px; align-items: baseline;
  position: relative;
  padding: 6px 0;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--acid); }
.nav-links .num {
  font-size: 10px;
  color: var(--bone-dim);
  font-weight: 700;
}
.nav-links a::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  height: 1.5px; width: 0;
  background: var(--acid);
  transition: width 0.3s ease;
}
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  display: flex; gap: 10px; align-items: center;
  padding: 10px 18px;
  border: 1.5px solid var(--acid);
  color: var(--acid);
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  position: relative;
  overflow: hidden;
  transition: color 0.25s;
}
.nav-cta::before {
  content: "";
  position: absolute; inset: 0;
  background: var(--acid);
  transform: translateY(101%);
  transition: transform 0.3s cubic-bezier(0.7, 0, 0.3, 1);
  z-index: -1;
}
.nav-cta:hover { color: var(--void); }
.nav-cta:hover::before { transform: translateY(0); }
.nav-cta-arrow { transition: transform 0.3s; }
.nav-cta:hover .nav-cta-arrow { transform: translateX(4px); }

/* ========== HERO ========== */

.hero {
  position: relative;
  padding: 80px var(--pad-x) 60px;
  min-height: calc(100vh - 80px);
  display: flex; flex-direction: column; justify-content: space-between;
  overflow: hidden;
}

.hero-tag {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--f-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--bone-dim);
  padding-bottom: 40px;
}
.dot-pulse {
  width: 9px; height: 9px;
  background: var(--acid);
  border-radius: 50%;
  position: relative;
  box-shadow: 0 0 12px var(--acid);
}
.dot-pulse::after {
  content: "";
  position: absolute; inset: -4px;
  border: 1.5px solid var(--acid);
  border-radius: 50%;
  animation: ping 2s ease-out infinite;
}
@keyframes ping {
  0% { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(2.5); }
}

.wordmark {
  font-family: var(--f-display);
  font-size: clamp(68px, 17vw, 260px);
  line-height: 0.85;
  letter-spacing: -0.025em;
  color: var(--bone);
  margin: 0;
  padding: 10px 0;
}
.wordmark .line {
  display: block;
  overflow: hidden;
  padding: 6px 0;
}
.wordmark .word {
  display: inline-flex;
  align-items: baseline;
  transform: translateY(110%);
  animation: riseUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.wordmark .line:nth-child(1) .word { animation-delay: 0.1s; }
.wordmark .line:nth-child(2) .word { animation-delay: 0.35s; color: var(--acid); }

.wordmark .word > span {
  display: inline-block;
}
.wordmark .word > span:hover {
  animation: jitter 0.3s ease infinite;
  color: var(--blood);
}
@keyframes jitter {
  0%, 100% { transform: translate(0, 0) rotate(0); }
  25% { transform: translate(-2px, 1px) rotate(-1deg); }
  50% { transform: translate(2px, -1px) rotate(1deg); }
  75% { transform: translate(-1px, -2px) rotate(-0.5deg); }
}

@keyframes riseUp {
  to { transform: translateY(0); }
}

.letter-eye {
  position: relative;
  display: inline-block;
}
.inline-eye {
  position: absolute;
  top: 42%;
  left: 50%;
  width: 0.55em;
  height: auto;
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: blink 5.5s infinite;
}
.pupil {
  transform-origin: 20px 12px;
  animation: lookAround 7s ease-in-out infinite;
}
@keyframes lookAround {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(7px); }
  50% { transform: translateX(-6px); }
  75% { transform: translateX(4px); }
}

.hero-below {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 60px;
  padding-top: 50px;
  align-items: end;
}

.tagline {
  font-family: var(--f-body);
  font-size: clamp(19px, 2.2vw, 28px);
  line-height: 1.35;
  max-width: 38ch;
  color: var(--bone);
  font-weight: 400;
}
.tagline em { color: var(--acid); font-style: italic; }
.tagline strong { background: var(--bone); color: var(--void); padding: 0 6px; font-weight: 700; }

.hero-meta {
  display: grid;
  gap: 14px;
  border-top: 1px solid rgba(244, 240, 230, 0.15);
  padding-top: 18px;
  font-family: var(--f-mono);
  font-size: 12px;
}
.meta-block {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 16px;
}
.meta-label {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--bone-dim);
  font-size: 10px;
}
.meta-value {
  color: var(--bone);
  font-weight: 700;
  text-align: right;
}
.meta-value em {
  color: var(--acid);
  font-style: italic;
  font-family: var(--f-body);
}
.meta-sub { color: var(--bone-dim); font-weight: 400; }

.scroll-hint {
  position: absolute;
  right: var(--pad-x); bottom: 30px;
  display: flex; align-items: center; gap: 10px;
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--bone-dim);
  writing-mode: vertical-rl;
}
.scroll-arrow {
  writing-mode: horizontal-tb;
  animation: nudge 1.8s ease-in-out infinite;
}
@keyframes nudge {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(6px); opacity: 0.4; }
}

.floating-scales {
  position: absolute;
  pointer-events: none;
  inset: 0;
  z-index: -1;
  color: var(--acid);
  opacity: 0.2;
}
.scale {
  position: absolute;
  animation: float 16s ease-in-out infinite;
}
.scale-1 { top: 12%; right: 10%; width: 120px; animation-delay: -2s; }
.scale-2 { bottom: 25%; left: 6%; width: 90px; animation-delay: -8s; transform: rotate(180deg); }
.scale-3 { top: 40%; right: 30%; width: 60px; animation-delay: -12s; }

@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0); }
  33% { transform: translate(20px, -30px) rotate(120deg); }
  66% { transform: translate(-15px, 25px) rotate(240deg); }
}

/* ========== MARQUEE (MAIN) ========== */

.marquee {
  background: var(--acid);
  color: var(--void);
  padding: 22px 0;
  overflow: hidden;
  border-top: 2px solid var(--void);
  border-bottom: 2px solid var(--void);
  position: relative;
}
.marquee::before, .marquee::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 40px;
  z-index: 2; pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(to right, var(--acid), transparent); }
.marquee::after { right: 0; background: linear-gradient(to left, var(--acid), transparent); }

.marquee .marquee-track {
  display: flex; align-items: center; gap: 40px;
  font-family: var(--f-display);
  font-size: clamp(32px, 6vw, 68px);
  white-space: nowrap;
  animation: slide 30s linear infinite;
}
.m-star {
  color: var(--void);
  font-size: 0.5em;
}
.marquee:hover .marquee-track { animation-play-state: paused; }

/* ========== SECTION HEADER ========== */

.section-header {
  display: flex; flex-direction: column; gap: 30px;
  margin-bottom: 80px;
}
.section-num {
  font-family: var(--f-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--acid);
}
.section-title {
  font-family: var(--f-display);
  font-size: clamp(48px, 8vw, 128px);
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--bone);
}
.section-title em {
  color: var(--acid);
  font-style: italic;
  font-family: var(--f-body);
  font-weight: 900;
}

/* ========== MANIFESTO ========== */

.manifesto {
  padding: 140px var(--pad-x);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr);
  gap: 80px;
  position: relative;
  align-items: start;
}
.manifesto::before {
  content: "";
  position: absolute;
  top: 80px; left: 50%;
  width: 1px; height: 60px;
  background: var(--acid);
}

.manifesto-list {
  display: grid;
  gap: 32px;
  padding-top: 20px;
}
.manifesto-list li {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 20px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(244, 240, 230, 0.12);
  transition: border-color 0.3s;
}
.manifesto-list li:hover {
  border-bottom-color: var(--acid);
}
.manifesto-list li:hover .item-num {
  color: var(--acid);
  transform: rotate(-8deg) scale(1.15);
}
.item-num {
  font-family: var(--f-display);
  font-size: 28px;
  color: var(--bone-dim);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.3s;
  display: inline-block;
}
.manifesto-list p {
  font-family: var(--f-body);
  font-size: clamp(17px, 1.45vw, 22px);
  line-height: 1.45;
  color: var(--bone);
}
.manifesto-list p em { color: var(--acid); font-style: italic; }
.manifesto-list p strong { color: var(--bone); font-weight: 900; }

.pull-quote {
  grid-column: 1 / -1;
  margin-top: 60px;
  padding: 60px var(--pad-x);
  margin-left: calc(-1 * var(--pad-x));
  margin-right: calc(-1 * var(--pad-x));
  background: var(--bone);
  color: var(--void);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 30px;
  align-items: start;
  position: relative;
}
.pull-quote::before, .pull-quote::after {
  content: "";
  position: absolute;
  left: 0; right: 0; height: 8px;
  background: repeating-linear-gradient(
    90deg, var(--void) 0 16px, transparent 16px 32px
  );
}
.pull-quote::before { top: 0; }
.pull-quote::after { bottom: 0; }
.quote-mark {
  font-family: var(--f-display);
  font-size: clamp(60px, 10vw, 160px);
  color: var(--acid);
  line-height: 0.8;
  -webkit-text-stroke: 2px var(--void);
  text-shadow: 4px 4px 0 var(--void);
}
.pull-quote p {
  font-family: var(--f-body);
  font-size: clamp(28px, 4.2vw, 68px);
  line-height: 1.05;
  font-weight: 900;
  font-style: italic;
  color: var(--void);
  align-self: center;
}
.pull-quote p em { color: var(--blood); }
.pull-quote p strong { background: var(--acid); padding: 0 10px; }

/* ========== GAMES ========== */

.games {
  padding: 140px var(--pad-x);
  background: linear-gradient(180deg, var(--void) 0%, var(--void-2) 100%);
}

.games-header { margin-bottom: 60px; }

.game-featured {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 60px;
  margin-bottom: 100px;
  align-items: center;
}

.game-art {
  position: relative;
  overflow: hidden;
  border: 1.5px solid var(--bone);
  aspect-ratio: 1 / 1;
  background: var(--void-2);
}
.game-art-main {
  transform: rotate(-1deg);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 14px 14px 0 var(--acid);
}
.game-art-main:hover {
  transform: rotate(0deg) translate(-4px, -4px);
  box-shadow: 20px 20px 0 var(--blood);
}
.art-svg { display: block; width: 100%; height: 100%; }
.art-label {
  position: absolute;
  bottom: 16px; left: 16px; right: 16px;
  display: flex; justify-content: space-between;
  font-family: var(--f-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--bone);
  mix-blend-mode: difference;
}

.game-info { display: flex; flex-direction: column; gap: 24px; }
.game-status {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--acid);
}
.game-title {
  font-family: var(--f-display);
  font-size: clamp(52px, 7vw, 108px);
  line-height: 0.85;
  letter-spacing: -0.02em;
  color: var(--bone);
}
.game-desc {
  font-family: var(--f-body);
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.55;
  color: var(--bone-dim);
  max-width: 44ch;
}
.game-tags {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.game-tags li {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 12px;
  border: 1px solid rgba(244, 240, 230, 0.25);
  color: var(--bone);
  border-radius: 999px;
}
.game-cta-row { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 10px; }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-mono);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  padding: 14px 22px;
  border: 1.5px solid;
  transition: transform 0.2s, background 0.2s, color 0.2s;
  position: relative;
  overflow: hidden;
}
.btn-primary { background: var(--acid); color: var(--void); border-color: var(--acid); }
.btn-primary:hover { background: var(--void); color: var(--acid); transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--acid); }
.btn-ghost { color: var(--bone); border-color: var(--bone); }
.btn-ghost:hover { background: var(--bone); color: var(--void); }

.game-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.game-card {
  display: flex; flex-direction: column; gap: 14px;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.game-card:hover { transform: translateY(-10px); }
.game-card:nth-child(2) { margin-top: 40px; }
.game-card:nth-child(3) { margin-top: -20px; }

.game-art-alt {
  aspect-ratio: 3 / 2.2;
  transition: transform 0.35s;
}
.game-card:hover .game-art-alt { transform: rotate(0.8deg); }
.game-status-small { font-size: 10px; }
.game-card-title {
  font-family: var(--f-display);
  font-size: clamp(24px, 2vw, 30px);
  letter-spacing: -0.01em;
  color: var(--bone);
  line-height: 1;
}
.game-card-desc {
  font-family: var(--f-body);
  font-size: 15px;
  color: var(--bone-dim);
  line-height: 1.5;
}
.game-tag-inline {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--acid);
}
.game-card-secret .game-art-alt {
  animation: wobble 4s ease-in-out infinite;
}
@keyframes wobble {
  0%, 100% { transform: translate(0, 0); }
  20% { transform: translate(-3px, 2px); }
  40% { transform: translate(3px, -1px); }
  60% { transform: translate(-2px, -3px); }
  80% { transform: translate(2px, 3px); }
}

/* ========== LAB ========== */

.lab {
  padding: 140px var(--pad-x);
  background: var(--void);
}

.lab-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  align-items: start;
}
.reptile {
  display: flex; flex-direction: column; gap: 14px;
  padding: 36px 28px;
  border: 1.5px solid rgba(244, 240, 230, 0.15);
  background: var(--void-2);
  transition: border-color 0.3s, transform 0.35s;
  position: relative;
}
.reptile:hover {
  border-color: var(--acid);
  transform: rotate(-0.8deg);
}
.reptile-offset { margin-top: 60px; }
.reptile-offset:hover { transform: rotate(0.8deg); }

.reptile-vacant {
  border-style: dashed;
  background: transparent;
  position: relative;
}
.reptile-vacant::before {
  content: "";
  position: absolute;
  top: 12px; right: 12px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 14px var(--acid);
  animation: ping 2s ease-out infinite;
}
.reptile-vacant:hover { border-color: var(--acid); }
.reptile-avatar-vacant {
  background: transparent !important;
  border: 2px dashed var(--bone) !important;
  outline: none !important;
  color: var(--bone) !important;
  transition: border-color 0.3s, color 0.3s, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}
.reptile-avatar-vacant .avatar-initials {
  font-size: 72px;
  line-height: 1;
}
.reptile-vacant:hover .reptile-avatar-vacant {
  border-color: var(--acid) !important;
  color: var(--acid) !important;
}

.reptile-avatar {
  width: 120px; height: 120px;
  background: var(--avatar-bg, var(--acid));
  border: 1.5px solid var(--void);
  outline: 1.5px solid var(--bone);
  display: grid; place-items: center;
  font-family: var(--f-display);
  font-size: 40px;
  color: var(--void);
  margin-bottom: 8px;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.reptile:hover .reptile-avatar { transform: rotate(-6deg) scale(1.05); }
.reptile-avatar-cat { font-size: 52px; }
.avatar-initials { line-height: 1; }

.reptile-avatar-photo {
  overflow: hidden;
  padding: 0;
  position: relative;
}
.reptile-avatar-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(0) contrast(1);
  transition: filter 0.4s ease, mix-blend-mode 0.4s ease;
  mix-blend-mode: normal;
}
.reptile-avatar-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: var(--avatar-bg, var(--acid));
  mix-blend-mode: multiply;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.reptile:hover .reptile-avatar-photo img {
  filter: grayscale(1) contrast(1.05);
  mix-blend-mode: luminosity;
}
.reptile:hover .reptile-avatar-photo::after {
  opacity: 1;
}

.reptile h3 {
  font-family: var(--f-display);
  font-size: 28px;
  color: var(--bone);
  letter-spacing: -0.01em;
}
.reptile-role {
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--acid);
}
.reptile p {
  font-family: var(--f-body);
  font-size: 15px;
  line-height: 1.55;
  color: var(--bone-dim);
}
.reptile p code {
  font-family: var(--f-mono);
  font-size: 13px;
  padding: 1px 6px;
  background: var(--void);
  color: var(--acid);
  border-radius: 3px;
}
.reptile-stat {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bone-dim);
  border-top: 1px dashed rgba(244, 240, 230, 0.2);
  padding-top: 14px;
  margin-top: 6px;
}
.reptile-link {
  color: var(--acid); font-weight: 700;
  border-top-color: var(--acid);
  transition: color 0.2s, letter-spacing 0.2s;
}
.reptile-link:hover { letter-spacing: 0.2em; }

/* ========== CONTACT ========== */

.contact {
  padding: 140px var(--pad-x);
  background: var(--bone);
  color: var(--void);
}
.contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 80px;
  align-items: center;
}
.contact-left { display: flex; flex-direction: column; gap: 24px; }
.contact .section-num { color: var(--blood); }
.contact-title {
  font-family: var(--f-display);
  font-size: clamp(44px, 6.5vw, 96px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: var(--void);
}
.contact-title em {
  color: var(--blood);
  font-style: italic;
  font-family: var(--f-body);
  font-weight: 900;
}
.contact-desc {
  font-family: var(--f-body);
  font-size: 18px;
  max-width: 44ch;
  color: var(--void);
  line-height: 1.55;
}
.contact-desc em { font-style: italic; color: var(--blood); }

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-field {
  display: flex; flex-direction: column; gap: 8px;
}
.form-field-wide { grid-column: 1 / -1; }
.form-label {
  font-family: var(--f-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--void);
  opacity: 0.6;
}
.form-field input, .form-field select {
  font-family: var(--f-body);
  font-size: 18px;
  color: var(--void);
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--void);
  padding: 10px 2px;
  outline: none;
  transition: border-color 0.2s, padding-left 0.2s;
  cursor: none;
}
.form-field input::placeholder {
  font-style: italic;
  color: rgba(10, 10, 10, 0.4);
}
.form-field input:focus, .form-field select:focus {
  border-bottom-color: var(--blood);
  padding-left: 8px;
}

.btn-big {
  grid-column: 1 / -1;
  padding: 22px 28px;
  font-size: 16px;
  background: var(--void);
  color: var(--bone);
  border-color: var(--void);
  justify-content: center;
  position: relative;
}
.btn-big:hover {
  background: var(--blood);
  border-color: var(--blood);
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0 var(--void);
}
.btn-icon { transition: transform 0.3s; }
.btn-big:hover .btn-icon { transform: translateX(6px); }
.btn-sent { display: none; }
.contact-form.sent .btn-text, .contact-form.sent .btn-icon { display: none; }
.contact-form.sent .btn-sent { display: inline; color: var(--acid); font-weight: 700; }
.contact-form.sent .btn-big { background: var(--void); border-color: var(--acid); pointer-events: none; }

.contact-direct {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 30px;
  margin-top: 90px;
  padding-top: 40px;
  border-top: 1.5px solid var(--void);
  align-items: end;
}
.contact-mail {
  display: block;
  font-family: var(--f-display);
  font-size: clamp(28px, 3.5vw, 52px);
  letter-spacing: -0.02em;
  color: var(--void);
  transition: color 0.2s, letter-spacing 0.2s;
  margin-top: 4px;
}
.contact-mail:hover { color: var(--blood); letter-spacing: 0.005em; }
.contact-socials {
  display: flex; flex-wrap: wrap; gap: 20px;
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.contact-socials a {
  padding: 8px 14px;
  border: 1.5px solid var(--void);
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.contact-socials a:hover {
  background: var(--void);
  color: var(--bone);
  transform: rotate(-3deg);
}

/* ========== FOOTER ========== */

.footer {
  background: var(--void);
  padding: 40px var(--pad-x) 30px;
  position: relative;
  overflow: hidden;
}
.footer-big {
  display: flex;
  justify-content: space-between;
  font-family: var(--f-display);
  font-size: clamp(80px, 23vw, 380px);
  line-height: 0.85;
  color: var(--acid);
  letter-spacing: -0.04em;
  line-height: 1;
  padding-bottom: 20px;
}
.footer-big .letter {
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.3s;
  display: inline-block;
}
.footer-big .letter:hover {
  transform: translateY(-14px) rotate(-4deg);
  color: var(--blood);
}
.footer-meta {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 20px;
  padding-top: 30px;
  border-top: 1px solid rgba(244, 240, 230, 0.1);
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--bone-dim);
}

/* ========== RESPONSIVE ========== */

@media (max-width: 1024px) {
  .nav-links { display: none; }
  .hero-below { grid-template-columns: 1fr; gap: 40px; }
  .manifesto { grid-template-columns: 1fr; gap: 40px; }
  .game-featured { grid-template-columns: 1fr; gap: 40px; }
  .game-grid { grid-template-columns: 1fr 1fr; }
  .lab-grid { grid-template-columns: 1fr 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 50px; }
  .reptile-offset { margin-top: 0; }
}

@media (max-width: 640px) {
  body { font-size: 16px; cursor: auto; }
  .cursor-ring, .cursor-dot { display: none; }
  .nav-cta { display: none; }
  .nav { padding: 16px var(--pad-x); }
  .hero { padding: 40px var(--pad-x) 40px; min-height: auto; }
  .scroll-hint { display: none; }
  .game-grid { grid-template-columns: 1fr; gap: 30px; }
  .game-card:nth-child(n) { margin-top: 0; }
  .lab-grid { grid-template-columns: 1fr; gap: 24px; }
  .contact-form { grid-template-columns: 1fr; }
  .pull-quote { grid-template-columns: 1fr; padding: 40px 30px; }
  .quote-mark { font-size: 60px; }
  .pull-quote p { font-size: 28px; }
  .manifesto, .games, .lab, .contact { padding: 80px var(--pad-x); }
  .section-header { margin-bottom: 50px; }
  .manifesto::before { display: none; }
  .footer-big { font-size: 20vw; flex-wrap: wrap; gap: 4px; justify-content: center; }
}
