:root {
  --paper: #f3e9d2;
  --paper-2: #ece0c1;
  --ink: #141414;
  --ink-soft: #2a2a2a;
  --ink-mute: #6e6354;
  --line: rgba(20, 20, 20, 0.12);
  --line-strong: rgba(20, 20, 20, 0.32);

  /* 4chan greentext + /biz/ palette */
  --greentext: #789922;
  --greentext-bg: #f0f0d8;
  --biz-pink: #ffacc5;
  --biz-pink-hot: #ff5fb3;
  --sticky: #fff2a8;
  --sticky-blue: #c9e8ff;
  --sticky-pink: #ffd1e0;
  --sol-purple: #9945ff;
  --tape: rgba(255, 235, 153, 0.7);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: -apple-system, "Helvetica Neue", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  position: relative;
  background:
    radial-gradient(900px 500px at 85% -5%, rgba(255, 95, 179, 0.12), transparent 60%),
    radial-gradient(700px 500px at -10% 30%, rgba(120, 153, 34, 0.10), transparent 60%),
    var(--paper);
}

/* Notebook paper grid */
.bg-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent 0, transparent 31px, rgba(20, 20, 20, 0.06) 31px, rgba(20, 20, 20, 0.06) 32px);
  opacity: 0.7;
}
.bg-glow, .bg-glow--a, .bg-glow--b { display: none; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
code, .mono { font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace; }

/* Hand-drawn marker font for big headers, comic for accents */
.marker { font-family: "Permanent Marker", "Marker Felt", cursive; font-weight: 400; letter-spacing: 0; }
.comic { font-family: "Comic Sans MS", "Comic Neue", "Chalkboard SE", cursive; }

/* ---------- Nav ---------- */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 36px;
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Permanent Marker", cursive;
  font-size: 26px;
  letter-spacing: 0.02em;
}
.nav__logo {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 2px solid var(--ink);
  background: var(--paper-2);
  object-fit: cover;
}
.nav__chain {
  font-family: "Comic Sans MS", cursive;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 8px;
  border: 2px solid var(--ink);
  background: var(--biz-pink);
  color: var(--ink);
  transform: rotate(-3deg);
  letter-spacing: 0.05em;
}
.nav__links { display: flex; gap: 28px; }
.nav__links a {
  font-family: "Comic Sans MS", cursive;
  color: var(--ink-soft);
  font-size: 16px;
  font-weight: 700;
  position: relative;
  transition: color 0.15s ease;
}
.nav__links a::before {
  content: ">> ";
  color: var(--greentext);
  opacity: 0;
  transition: opacity 0.15s ease;
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::before { opacity: 1; }
.nav__cta { padding: 10px 16px; font-size: 15px; }

/* ---------- Buttons / pills ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  font-family: "Permanent Marker", cursive;
  font-size: 18px;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 2.5px solid var(--ink);
  background: var(--paper-2);
  color: var(--ink);
  box-shadow: 4px 4px 0 0 var(--ink);
  transition: transform 0.1s ease, box-shadow 0.1s ease;
  white-space: nowrap;
  text-transform: lowercase;
}
.btn:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 0 var(--ink); }
.btn:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 0 var(--ink); }

.btn--primary {
  background: var(--biz-pink-hot);
  color: #fff;
}
.btn--ghost {
  background: var(--paper-2);
}
.btn--lg { padding: 16px 30px; font-size: 22px; }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border: 2px dashed var(--ink);
  background: var(--sticky);
  font-family: "Comic Sans MS", cursive;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  transform: rotate(-1.5deg);
}
.pill__dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: #e53935;
  box-shadow: 0 0 0 2px var(--ink);
  animation: blink 1.4s steps(2, end) infinite;
}
@keyframes blink { 50% { opacity: 0.2; } }

/* ---------- Hero ---------- */
.hero {
  max-width: 1240px;
  margin: 40px auto 100px;
  padding: 0 36px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 1;
}
.hero__title {
  margin: 22px 0 20px;
  font-family: "Permanent Marker", cursive;
  font-size: clamp(46px, 7.2vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-transform: lowercase;
}
.hero__title .underlined {
  position: relative;
  display: inline-block;
}
.hero__title .underlined::after {
  content: "";
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: 4%;
  height: 16px;
  background: var(--biz-pink-hot);
  z-index: -1;
  transform: rotate(-1deg);
  opacity: 0.85;
}
.hero__sub {
  font-family: "Comic Sans MS", "Comic Neue", cursive;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.55;
  max-width: 540px;
  margin: 0 0 28px;
}

/* CA — kept clean & functional, looks like an attached file */
.ca {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 10px 10px 14px;
  background: #fff;
  border: 2px solid var(--ink);
  margin-bottom: 22px;
  max-width: 100%;
  overflow: hidden;
  box-shadow: 4px 4px 0 0 var(--ink);
}
.ca__label {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--ink);
  background: var(--sticky);
  padding: 2px 6px;
  border: 1.5px solid var(--ink);
}
.ca code {
  font-size: 13px;
  color: var(--ink);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;
  min-width: 0;
  font-weight: 600;
}
.ca__copy {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  background: var(--greentext);
  color: #fff;
  border: 2px solid var(--ink);
  font-family: "Comic Sans MS", cursive;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}
.ca__copy:hover { background: #5e7a1a; }
.ca__copy.copied { background: var(--biz-pink-hot); }

.cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 36px; }

.hero__meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 540px;
}
.hero__meta > div {
  padding: 14px 16px;
  background: var(--sticky-blue);
  border: 2px solid var(--ink);
  font-family: "Comic Sans MS", cursive;
  transform: rotate(-0.6deg);
}
.hero__meta > div:nth-child(2) { background: var(--sticky-pink); transform: rotate(0.8deg); }
.hero__meta > div:nth-child(3) { background: var(--sticky); transform: rotate(-1.2deg); }
.hero__meta span {
  display: block;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--ink-mute);
  text-transform: uppercase;
  margin-bottom: 2px;
  font-weight: 700;
}
.hero__meta strong {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
}

/* Polaroid hero portrait */
.hero__art {
  position: relative;
  aspect-ratio: 1 / 1.15;
  max-width: 440px;
  justify-self: end;
  width: 100%;
}
.hero__frame {
  position: absolute;
  inset: 0;
  background: #fff;
  padding: 18px 18px 70px;
  border: 1.5px solid var(--ink);
  box-shadow: 8px 10px 0 0 rgba(20, 20, 20, 0.18), 14px 18px 30px -10px rgba(0, 0, 0, 0.25);
  transform: rotate(-3deg);
  display: flex;
  flex-direction: column;
}
.hero__frame::after {
  content: "wojak.png";
  position: absolute;
  bottom: 18px;
  left: 0; right: 0;
  text-align: center;
  font-family: "Permanent Marker", cursive;
  font-size: 22px;
  color: var(--ink);
}
.hero__frame img,
.hero__frame .wojak-svg {
  width: 100%;
  flex: 1;
  object-fit: contain;
  background: #f7f1e1;
  border: 1px solid var(--line);
  image-rendering: pixelated;
  image-rendering: -moz-crisp-edges;
}
.hero__sticker {
  position: absolute;
  padding: 8px 14px;
  font-family: "Permanent Marker", cursive;
  font-size: 18px;
  background: var(--sticky);
  border: 2px solid var(--ink);
  box-shadow: 3px 3px 0 0 var(--ink);
  z-index: 2;
}
.hero__sticker--1 {
  top: -10px; left: -22px;
  background: var(--biz-pink-hot);
  color: #fff;
  transform: rotate(-8deg);
}
.hero__sticker--2 {
  bottom: 80px; right: -28px;
  background: var(--sticky-blue);
  transform: rotate(6deg);
}
/* tape on polaroid */
.hero__art::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%) rotate(-2deg);
  width: 90px; height: 26px;
  background: var(--tape);
  border: 1px solid rgba(20, 20, 20, 0.15);
  z-index: 3;
}

/* ---------- Sections ---------- */
section { padding: 0 36px; margin: 110px auto; max-width: 1240px; position: relative; z-index: 1; }

.section__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px;
}
.eyebrow {
  display: inline-block;
  font-family: "Comic Sans MS", cursive;
  font-size: 14px;
  font-weight: 700;
  color: var(--greentext);
  margin-bottom: 12px;
}
.eyebrow::before { content: ">> "; }
.section__head h2 {
  font-family: "Permanent Marker", cursive;
  font-size: clamp(38px, 5.5vw, 68px);
  line-height: 1;
  letter-spacing: -0.01em;
  margin: 0 0 14px;
  text-transform: lowercase;
}
.section__sub {
  font-family: "Comic Sans MS", cursive;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.55;
  margin: 0;
}
.grad { color: var(--biz-pink-hot); }
.grad-green { color: var(--greentext); }

/* ---------- Legend (sticky-note cards) ---------- */
.legend__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.card {
  padding: 30px 26px;
  background: var(--sticky);
  border: 2px solid var(--ink);
  box-shadow: 5px 5px 0 0 var(--ink);
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:nth-child(1) { transform: rotate(-1.5deg); background: var(--sticky); }
.card:nth-child(2) { transform: rotate(0.8deg); background: var(--sticky-pink); }
.card:nth-child(3) { transform: rotate(-0.6deg); background: var(--sticky-blue); }
.card:hover { transform: rotate(0) translateY(-3px); box-shadow: 7px 9px 0 0 var(--ink); }
.card::before {
  content: "";
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%) rotate(-3deg);
  width: 70px; height: 22px;
  background: var(--tape);
  border: 1px solid rgba(20, 20, 20, 0.12);
}
.card__icon {
  display: inline-block;
  font-family: "Permanent Marker", cursive;
  font-size: 28px;
  color: var(--ink);
  margin-bottom: 14px;
}
.card h3 {
  font-family: "Permanent Marker", cursive;
  margin: 0 0 8px;
  font-size: 26px;
  text-transform: lowercase;
  letter-spacing: 0;
}
.card p {
  font-family: "Comic Sans MS", cursive;
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.5;
}

/* ---------- Greentext / 4chan post ---------- */
.greentext {
  max-width: 760px;
  margin: 110px auto;
  padding: 0 36px;
  position: relative;
  z-index: 1;
}
.greentext__post {
  background: var(--greentext-bg);
  border: 2px solid var(--ink);
  padding: 22px 26px;
  box-shadow: 6px 6px 0 0 var(--ink);
  position: relative;
}
.greentext__post::before {
  content: "";
  position: absolute;
  top: -16px; left: 30px;
  width: 80px; height: 24px;
  background: var(--tape);
  border: 1px solid rgba(20, 20, 20, 0.12);
  transform: rotate(-3deg);
}
.greentext__head {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Arial", sans-serif;
  font-size: 13px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--line-strong);
}
.greentext__head strong {
  color: #117743;
}
.greentext__head .anon { color: #117743; }
.greentext__head .id {
  color: var(--ink-mute);
  font-family: "JetBrains Mono", monospace;
  font-size: 11.5px;
}
.greentext__head .num {
  color: var(--ink-mute);
  margin-left: auto;
  font-family: "JetBrains Mono", monospace;
  font-size: 11.5px;
}
.greentext__body {
  font-family: "JetBrains Mono", "Courier New", monospace;
  font-size: 15px;
  line-height: 1.55;
  white-space: pre-wrap;
  color: var(--ink);
}
.greentext__body .gt { color: var(--greentext); display: block; }
.greentext__body .gt::before { content: ">"; margin-right: 4px; }

/* ---------- How to buy ---------- */
.how { text-align: center; }
.steps {
  list-style: none;
  margin: 0 auto 40px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  text-align: left;
}
.step {
  padding: 26px;
  background: #fff;
  border: 2px solid var(--ink);
  box-shadow: 5px 5px 0 0 var(--ink);
  position: relative;
}
.step:nth-child(odd) { transform: rotate(-0.8deg); }
.step:nth-child(even) { transform: rotate(0.6deg); }
.step__num {
  display: inline-block;
  font-family: "Permanent Marker", cursive;
  font-size: 36px;
  color: var(--biz-pink-hot);
  line-height: 1;
}
.step h3 {
  font-family: "Permanent Marker", cursive;
  margin: 6px 0 8px;
  font-size: 24px;
  text-transform: lowercase;
}
.step p {
  font-family: "Comic Sans MS", cursive;
  margin: 0;
  color: var(--ink-soft);
  font-size: 14.5px;
  line-height: 1.5;
}
.step p a { color: var(--greentext); border-bottom: 2px solid var(--greentext); font-weight: 700; }

/* ---------- Community ---------- */
.socials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.social {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 22px;
  background: #fff;
  border: 2px solid var(--ink);
  box-shadow: 5px 5px 0 0 var(--ink);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.social:hover { transform: translate(-2px, -2px); box-shadow: 7px 7px 0 0 var(--ink); }
.social svg {
  flex-shrink: 0;
  color: var(--ink);
  width: 26px; height: 26px;
}
.social__name {
  display: block;
  font-family: "Permanent Marker", cursive;
  font-size: 22px;
  text-transform: lowercase;
}
.social__handle {
  display: block;
  font-family: "Comic Sans MS", cursive;
  font-size: 13px;
  color: var(--ink-mute);
  margin-top: 2px;
}

/* ---------- Meme wall (polaroid scatter) ---------- */
.meme-wall {
  margin: 100px auto;
  max-width: 1400px;
  padding: 0 36px;
  position: relative;
  z-index: 1;
}
.meme-wall__row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.tile {
  position: relative;
  margin: 0;
  aspect-ratio: 1 / 1.18;
  background: #fff;
  border: 1.5px solid var(--ink);
  padding: 14px 14px 38px;
  box-shadow: 5px 6px 0 0 rgba(20, 20, 20, 0.15);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.tile:nth-child(1) { transform: rotate(-3deg); }
.tile:nth-child(2) { transform: rotate(2deg); }
.tile:nth-child(3) { transform: rotate(-1.5deg); }
.tile:nth-child(4) { transform: rotate(3deg); }
.tile:nth-child(5) { transform: rotate(-2deg); }
.tile:hover { transform: rotate(0) translateY(-5px); box-shadow: 8px 10px 0 0 rgba(20, 20, 20, 0.22); z-index: 5; }
.tile::before {
  content: "";
  position: absolute;
  top: -12px; left: 30%;
  width: 50px; height: 20px;
  background: var(--tape);
  border: 1px solid rgba(20, 20, 20, 0.12);
  transform: rotate(-4deg);
}
.tile img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #f7f1e1;
}
.tile figcaption {
  position: absolute;
  bottom: 10px;
  left: 0; right: 0;
  text-align: center;
  font-family: "Permanent Marker", cursive;
  font-size: 14px;
  color: var(--ink);
  text-transform: lowercase;
}
.tile--empty img { display: none; }
.tile--empty::after {
  content: "missing.jpg";
  position: absolute;
  inset: 14px 14px 38px;
  display: grid;
  place-items: center;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  color: var(--ink-mute);
  background: repeating-linear-gradient(45deg, #f0e8d2, #f0e8d2 8px, #e6dec3 8px, #e6dec3 16px);
}

/* ---------- PFP Maker ---------- */
.pfp__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.pfp__stage {
  position: relative;
  background: #fff;
  border: 2px solid var(--ink);
  padding: 22px 22px 60px;
  box-shadow: 10px 12px 0 0 rgba(20, 20, 20, 0.18);
  transform: rotate(-1.2deg);
}
.pfp__stage::after {
  content: "wojak-pfp.png";
  position: absolute;
  bottom: 18px;
  left: 0; right: 0;
  text-align: center;
  font-family: "Permanent Marker", cursive;
  font-size: 20px;
  color: var(--ink);
}
.pfp__tape {
  position: absolute;
  top: -14px;
  width: 90px; height: 24px;
  background: var(--tape);
  border: 1px solid rgba(20, 20, 20, 0.12);
}
.pfp__tape--l { left: 8%; transform: rotate(-4deg); }
.pfp__tape--r { right: 8%; transform: rotate(5deg); }

#pfp-canvas {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  background: var(--paper);
  border: 1.5px solid var(--ink);
  touch-action: none;
  cursor: grab;
}
#pfp-canvas:active { cursor: grabbing; }
.pfp__hint {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Comic Sans MS", cursive;
  font-size: 12px;
  color: var(--ink-mute);
  pointer-events: none;
}

.pfp__panel {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.pfp__block {
  background: var(--sticky);
  border: 2px solid var(--ink);
  padding: 18px 20px;
  box-shadow: 5px 5px 0 0 var(--ink);
  position: relative;
}
.pfp__block:nth-child(2) { background: var(--sticky-pink); transform: rotate(-0.4deg); }
.pfp__block:nth-child(3) { background: var(--sticky-blue); transform: rotate(0.5deg); }
.pfp__block:nth-child(4) { background: var(--sticky); transform: rotate(-0.3deg); }
.pfp__block::before {
  content: "";
  position: absolute;
  top: -12px; left: 16px;
  width: 60px; height: 20px;
  background: var(--tape);
  border: 1px solid rgba(20, 20, 20, 0.12);
  transform: rotate(-3deg);
}
.pfp__label {
  font-family: "Permanent Marker", cursive;
  font-size: 20px;
  color: var(--ink);
  margin-bottom: 12px;
  text-transform: lowercase;
}
.pfp__tip {
  margin: 10px 0 0;
  font-family: "Comic Sans MS", cursive;
  font-size: 12px;
  color: var(--ink-mute);
}

.pfp__chips, .pfp__stickers, .pfp__row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.chip {
  font-family: "Comic Sans MS", cursive;
  font-size: 13px;
  font-weight: 700;
  padding: 7px 12px;
  background: #fff;
  border: 2px solid var(--ink);
  cursor: pointer;
  color: var(--ink);
  box-shadow: 2px 2px 0 0 var(--ink);
  transition: transform 0.08s ease, box-shadow 0.08s ease;
}
.chip:hover { transform: translate(-1px, -1px); box-shadow: 3px 3px 0 0 var(--ink); }
.chip:active { transform: translate(1px, 1px); box-shadow: 1px 1px 0 0 var(--ink); }
.chip.is-active { background: var(--biz-pink-hot); color: #fff; }
.chip--upload { background: var(--greentext); color: #fff; }
.chip--danger { background: #e53935; color: #fff; }

.sticker {
  width: 56px; height: 56px;
  padding: 0;
  background: #fff;
  border: 2px solid var(--ink);
  cursor: pointer;
  overflow: hidden;
  box-shadow: 2px 2px 0 0 var(--ink);
  transition: transform 0.1s ease, box-shadow 0.1s ease;
}
.sticker img {
  width: 100%; height: 100%;
  object-fit: cover;
  background: var(--paper);
}
.sticker:hover { transform: translate(-1px, -1px); box-shadow: 3px 3px 0 0 var(--ink); }
.sticker.is-active { outline: 3px solid var(--biz-pink-hot); outline-offset: 2px; }
.sticker--none, .sticker--upload {
  display: grid;
  place-items: center;
  font-family: "Comic Sans MS", cursive;
  font-size: 10px;
  font-weight: 700;
  color: var(--ink-mute);
  text-transform: lowercase;
  background: repeating-linear-gradient(45deg, #fff, #fff 6px, #f0f0f0 6px, #f0f0f0 12px);
  text-align: center;
  line-height: 1.1;
  padding: 4px;
}
.sticker--upload { color: var(--greentext); background: var(--greentext-bg); }

.pfp__stickers--acc .sticker { background: #fff; }
.pfp__stickers--acc .sticker img { object-fit: contain; padding: 6px; background: transparent; }

.pfp__slider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.pfp__slider span {
  font-family: "Comic Sans MS", cursive;
  font-size: 13px;
  font-weight: 700;
  min-width: 50px;
  color: var(--ink);
}
.pfp__slider input[type="range"] {
  flex: 1;
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  background: #fff;
  border: 1.5px solid var(--ink);
  outline: none;
  cursor: pointer;
}
.pfp__slider input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px; height: 22px;
  background: var(--biz-pink-hot);
  border: 2px solid var(--ink);
  cursor: grab;
}
.pfp__slider input[type="range"]::-moz-range-thumb {
  width: 22px; height: 22px;
  background: var(--biz-pink-hot);
  border: 2px solid var(--ink);
  cursor: grab;
  border-radius: 0;
}

.pfp__input {
  width: 100%;
  padding: 10px 12px;
  background: #fff;
  border: 2px solid var(--ink);
  font-family: "Permanent Marker", cursive;
  font-size: 18px;
  color: var(--ink);
  outline: none;
  margin-bottom: 10px;
}
.pfp__input:focus { box-shadow: inset 3px 3px 0 0 rgba(255, 95, 179, 0.15); }

.pfp__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 4px;
}

/* ---------- Footer ---------- */
.foot {
  border-top: 2px dashed var(--line-strong);
  margin-top: 100px;
  padding: 40px 36px;
  background: var(--paper-2);
  position: relative;
  z-index: 1;
}
.foot__inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  align-items: flex-start;
}
.foot__brand {
  display: block;
  font-family: "Permanent Marker", cursive;
  font-size: 22px;
  margin-bottom: 8px;
  text-transform: lowercase;
}
.foot__disclaimer {
  margin: 0;
  font-family: "Comic Sans MS", cursive;
  font-size: 13px;
  color: var(--ink-mute);
  line-height: 1.5;
  max-width: 720px;
}
.foot__ca {
  font-size: 11.5px;
  color: var(--ink-soft);
  padding: 8px 12px;
  background: #fff;
  border: 2px solid var(--ink);
  word-break: break-all;
  font-family: "JetBrains Mono", monospace;
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .nav__links { display: none; }
  .hero {
    grid-template-columns: 1fr;
    gap: 60px;
    margin-top: 20px;
  }
  .hero__art { justify-self: center; max-width: 360px; }
  .hero__meta { grid-template-columns: repeat(3, 1fr); }
  .legend__grid, .steps, .socials { grid-template-columns: 1fr; gap: 22px; }
  .meme-wall__row { grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .pfp__grid { grid-template-columns: 1fr; gap: 40px; }
  .pfp__stage { max-width: 480px; margin: 0 auto; transform: rotate(-0.8deg); }
}

@media (max-width: 560px) {
  .nav { padding: 16px 20px; }
  .nav__cta { display: none; }
  section, .greentext { padding: 0 20px; margin: 80px auto; }
  .hero { padding: 0 20px; margin: 20px auto 60px; }
  .hero__meta { grid-template-columns: 1fr 1fr; }
  .ca { width: 100%; }
  .ca code { font-size: 11.5px; }
  .meme-wall__row { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .foot { padding: 30px 20px; }
}
