/* TRASHFOR.ME — plasticy cheap trash-bin aesthetic */

:root {
  --bg: #efe7d2;
  --ink: #0a0a0a;
  --ink-soft: #2b2b28;
  --paper: #f6f1de;
  --plastic: #6a6f6c;
  --plastic-dk: #4d524f;
  --lid: #b8d445;
  --hazard: #f6c344;
  --warn: #d44b3a;
  --grit: rgba(0,0,0,.06);
}

* { box-sizing: border-box; }
html, body, #root { margin: 0; padding: 0; }
html { background: var(--bg); }
body {
  font-family: 'Bricolage Grotesque', ui-sans-serif, system-ui, sans-serif;
  font-feature-settings: "ss01", "cv11";
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; }

.page {
  min-height: 100vh;
  background:
    /* subtle plastic grit */
    radial-gradient(circle at 20% 0%, rgba(0,0,0,.04), transparent 40%),
    radial-gradient(circle at 100% 90%, rgba(0,0,0,.05), transparent 50%),
    var(--bg);
  position: relative;
  overflow-x: clip;
}

.page::before {
  content: "";
  position: fixed; inset: 0;
  background-image:
    repeating-linear-gradient(0deg, rgba(0,0,0,.025) 0 1px, transparent 1px 3px);
  pointer-events: none;
  mix-blend-mode: multiply;
  opacity: .55;
  z-index: 0;
}

.main { position: relative; z-index: 1; }

/* ───── HEADER ───── */

.hdr {
  position: relative; z-index: 2;
  border-bottom: 3px solid var(--ink);
}
.hdr-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px 16px;
}
.wordmark {
  display: flex; align-items: center; gap: 10px;
  font-weight: 900; letter-spacing: -.02em;
  font-size: 26px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-variation-settings: "wdth" 100;
}
.wm-main { line-height: 1; }
.wm-circle {
  width: 36px; height: 36px; display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink);
}
.nav {
  display: flex; gap: 22px;
  font-size: 14px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
}
.nav a {
  text-decoration: none;
  padding: 6px 10px; border-radius: 999px;
  border: 2px solid transparent;
}
.nav a:hover { border-color: var(--ink); background: var(--paper); }

.hdr-ribbon {
  background: var(--ink);
  color: var(--bg);
  display: flex; align-items: center; gap: 20px;
  padding: 10px 0;
  font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  overflow: hidden; white-space: nowrap;
  border-top: 3px solid var(--ink);
}
.hdr-ribbon > span {
  animation: scroll 120s linear infinite;
  display: inline-block;
  padding-left: 28px;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}

/* ───── HERO ───── */
.hero {
  padding: 56px 32px 40px;
  position: relative; z-index: 1;
  border-bottom: 3px solid var(--ink);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr .9fr;
  gap: 24px;
  align-items: end;
}
.h1 {
  margin: 0;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 900;
  font-size: clamp(56px, 9.5vw, 168px);
  line-height: .86;
  letter-spacing: -.035em;
  text-wrap: balance;
  font-variation-settings: "wdth" 100;
}
.hero-lede {
  margin: 32px 0 24px;
  max-width: 820px;
  font-size: 19px;
  line-height: 1.5;
  color: var(--ink-soft);
}
.hero-cta {
  display: flex; gap: 14px; flex-wrap: wrap;
}
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  border: 3px solid var(--ink);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 800; font-size: 15px;
  letter-spacing: .02em; text-transform: uppercase;
  cursor: pointer;
  transition: transform .12s ease, box-shadow .12s ease, background .15s;
  box-shadow: 4px 4px 0 var(--ink);
}
.btn:hover { transform: translate(-1px, -1px); box-shadow: 5px 5px 0 var(--ink); }
.btn:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--ink); }
.btn-primary { background: var(--lid); color: var(--ink); }
.btn-ghost { background: var(--paper); color: var(--ink); }

/* ─── BIN STAGE ─── */
.bin-stage {
  position: relative;
  align-self: end;
  justify-self: end;
  width: 100%;
  max-width: 360px;
  aspect-ratio: 320 / 360;
}
.bin-svg {
  width: 100%; height: 100%;
  display: block;
  filter: drop-shadow(0 14px 0 rgba(0,0,0,.06));
  animation: wobble 6s ease-in-out infinite;
  transform-origin: 50% 90%;
}
@keyframes wobble {
  0%, 100% { transform: rotate(-1.2deg); }
  50%      { transform: rotate(1.2deg); }
}
.bin-shadow {
  position: absolute;
  bottom: -8px; left: 8%; right: 8%;
  height: 16px;
  background: radial-gradient(ellipse at center, rgba(0,0,0,.22), transparent 70%);
}
.flies {
  position: absolute; inset: 0;
  pointer-events: none;
}
.fly {
  position: absolute;
  font-size: 16px;
  color: var(--ink);
  opacity: .85;
}
.fly-1 { top: 8%; left: 38%; animation: f1 5s ease-in-out infinite; }
.fly-2 { top: 22%; left: 60%; animation: f2 6.2s ease-in-out infinite; }
.fly-3 { top: 4%; left: 70%; animation: f3 4.4s ease-in-out infinite; }
@keyframes f1 { 0%,100%{ transform: translate(0,0) rotate(0); } 50%{ transform: translate(20px,-12px) rotate(40deg); } }
@keyframes f2 { 0%,100%{ transform: translate(0,0) rotate(0); } 50%{ transform: translate(-26px,8px) rotate(-30deg); } }
@keyframes f3 { 0%,100%{ transform: translate(0,0) rotate(0); } 50%{ transform: translate(14px,18px) rotate(20deg); } }

/* ───── SECTIONS ───── */

.sect {
  padding: 72px 32px;
  border-bottom: 3px solid var(--ink);
  position: relative;
}
.sect-num {
  position: absolute; top: 18px; right: 24px;
  font-family: ui-monospace, monospace;
  font-size: 12px; letter-spacing: .2em;
  color: var(--ink-soft);
}
.h2 {
  margin: 0 0 36px;
  font-weight: 900;
  font-size: clamp(40px, 6.4vw, 96px);
  line-height: .92;
  letter-spacing: -.03em;
  text-wrap: balance;
}
.cols-2 {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 36px;
  max-width: 1100px;
}
.body-lg { margin: 0; font-size: 19px; line-height: 1.5; color: var(--ink-soft); }
.body-lg b { color: var(--ink); }

/* specs */
.specs {
  list-style: none; padding: 0; margin: 0;
  max-width: 1100px;
}
.spec-row {
  display: grid;
  grid-template-columns: minmax(180px, 240px) 1fr auto;
  gap: 14px;
  align-items: baseline;
  padding: 14px 0;
  border-top: 1.5px dashed var(--ink);
  font-size: 18px;
}
.spec-row:last-child { border-bottom: 1.5px dashed var(--ink); }
.spec-k { font-weight: 800; letter-spacing: .02em; text-transform: uppercase; font-size: 14px; }
.spec-dot {
  border-bottom: 2px dotted rgba(0,0,0,.32);
  height: 8px;
  transform: translateY(-4px);
}
.spec-v { color: var(--ink-soft); }

/* contact */
.contact-sect { background: var(--paper); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
  margin-bottom: 32px;
}
.addr-card {
  border: 3px solid var(--ink);
  border-radius: 14px;
  padding: 28px 28px 24px;
  background: var(--bg);
  box-shadow: 8px 8px 0 var(--ink);
  position: relative;
  align-self: stretch;
  display: flex; flex-direction: column;
}
.addr-label {
  font-size: 12px; letter-spacing: .26em; text-transform: uppercase;
  font-weight: 700; color: var(--ink-soft);
  margin-bottom: 8px;
}
.addr {
  display: inline-flex; align-items: center; gap: 16px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 5vw, 64px);
  letter-spacing: -.02em;
  background: transparent; border: 0; padding: 0; cursor: pointer;
  color: var(--ink);
  line-height: 1;
}
.addr:hover .addr-copy { background: var(--lid); }
.addr-copy {
  display: inline-block;
  font-size: 12px; letter-spacing: .2em;
  border: 2px solid var(--ink);
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--paper);
  transition: background .15s;
}
.addr-fine {
  margin-top: 18px;
  font-size: 14px; color: var(--ink-soft); max-width: 580px;
  line-height: 1.5;
}
.addr-fine em {
  font-style: italic;
  font-weight: 500;
  color: var(--ink);
  border-top: 1.5px dashed var(--ink);
  display: inline-block;
  margin-top: 8px;
  padding-top: 8px;
}

/* ── Mint card ─────────────────────────────────────────────────────── */
.mint-card {
  border: 3px solid var(--ink);
  border-radius: 14px;
  padding: 24px 22px 20px;
  background: var(--lid);
  box-shadow: 8px 8px 0 var(--ink);
  position: relative;
  display: flex; flex-direction: column;
  align-self: stretch;
  min-width: 0;
  overflow: hidden;
}
.mint-label {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  font-size: 12px; letter-spacing: .22em; text-transform: uppercase;
  font-weight: 800; color: var(--ink);
  margin-bottom: 10px;
  white-space: nowrap;
}
.mint-label > span:first-child { min-width: 0; }
.mint-badge {
  font-size: 9px; letter-spacing: .2em;
  background: var(--warn); color: var(--bg);
  padding: 4px 8px; border-radius: 999px;
  border: 2px solid var(--ink);
  flex-shrink: 0;
  white-space: nowrap;
}
.mint-title {
  font-weight: 900;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: .96;
  letter-spacing: -.025em;
  margin-bottom: 8px;
}
.mint-sub {
  margin: 0 0 16px;
  font-size: 15px;
  line-height: 1.45;
  color: var(--ink-soft);
}
.mint-tabs {
  display: flex; gap: 0;
  border: 2.5px solid var(--ink);
  border-radius: 10px;
  background: var(--bg);
  padding: 3px;
  margin-bottom: 16px;
  width: fit-content;
}
.mt-tab {
  appearance: none;
  border: 0; background: transparent;
  padding: 8px 16px;
  font: inherit;
  font-weight: 800; font-size: 13px;
  letter-spacing: .04em; text-transform: uppercase;
  border-radius: 7px;
  cursor: pointer;
  color: var(--ink-soft);
  white-space: nowrap;
}
.mt-tab.on { background: var(--ink); color: var(--bg); }

/* GitHub username input row */
.gh-row {
  display: flex; gap: 10px; flex-wrap: wrap;
  align-items: stretch;
}
.gh-input {
  flex: 1 1 240px;
  display: flex; align-items: stretch;
  border: 2.5px solid var(--ink);
  border-radius: 10px;
  background: var(--bg);
  overflow: hidden;
  min-width: 0;
}
.gh-input.bad { border-color: var(--warn); background: rgba(212,75,58,.08); }
.gh-at, .gh-suffix {
  font-family: ui-monospace, monospace;
  font-size: 12.5px;
  display: inline-flex; align-items: center;
  padding: 0 10px;
  background: var(--ink);
  color: var(--lid);
  white-space: nowrap;
  letter-spacing: .02em;
}
.gh-suffix { background: var(--paper); color: var(--ink-soft); border-left: 2px dashed var(--ink); }
.gh-input input {
  flex: 1; min-width: 0;
  border: 0; outline: 0;
  background: transparent;
  font: inherit;
  font-weight: 800;
  font-size: 16px;
  padding: 10px 12px;
  color: var(--ink);
}
.gh-input input::placeholder { color: rgba(0,0,0,.35); font-weight: 600; }

.mint-or { margin: 6px 0; }
.mint-rule {
  height: 0;
  border-top: 2px dashed var(--ink);
  margin: 14px 0 4px;
  opacity: .35;
}
.mint-hint code {
  background: var(--paper);
  padding: 1px 6px; border-radius: 4px;
  font-size: 11.5px;
  border: 1px solid var(--ink);
  font-family: ui-monospace, monospace;
}

/* Key picker */
.gh-tag {
  margin-left: auto;
  font-family: ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: .04em;
  background: var(--ink);
  color: var(--lid);
  padding: 3px 8px;
  border-radius: 999px;
}
.key-list { display: flex; flex-direction: column; gap: 8px; }
.key-row {
  display: flex; align-items: center; gap: 12px;
  border: 2.5px solid var(--ink);
  border-radius: 10px;
  padding: 12px 14px;
  background: var(--bg);
  cursor: pointer;
}
.key-row.on { background: var(--paper); box-shadow: 4px 4px 0 var(--ink); transform: translate(-1px, -1px); }
.key-row input[type="radio"] { accent-color: var(--ink); transform: scale(1.15); }
.key-meta { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.key-algo {
  font-size: 11px; letter-spacing: .18em; font-weight: 800;
  color: var(--ink); background: var(--lid);
  padding: 2px 6px; border-radius: 4px;
  width: fit-content;
  border: 1.5px solid var(--ink);
}
.key-fp {
  font-family: ui-monospace, monospace;
  font-size: 12px;
  color: var(--ink-soft);
  overflow-wrap: anywhere;
}
.key-cm {
  font-size: 11.5px;
  color: var(--ink-soft);
  font-style: italic;
  overflow-wrap: anywhere;
}

.mint-step { display: flex; flex-direction: column; gap: 10px; min-width: 0; }
.mint-step > * { min-width: 0; }
.mint-step-h {
  display: flex; align-items: center; gap: 10px;
  font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  font-weight: 800;
}
.step-dot {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px;
  background: var(--ink); color: var(--lid);
  border-radius: 50%;
  font-family: ui-monospace, monospace;
  font-size: 11px;
}
.mint-field-l {
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  font-weight: 800;
  color: var(--ink-soft);
}
.mint-ta {
  width: 100%;
  font-family: ui-monospace, "JetBrains Mono", Menlo, monospace;
  font-size: 12px;
  line-height: 1.45;
  padding: 12px 14px;
  border: 2.5px solid var(--ink);
  border-radius: 10px;
  background: var(--paper);
  color: var(--ink);
  resize: vertical;
  outline: none;
}
.mint-ta:focus { box-shadow: 0 0 0 3px rgba(0,0,0,.12); }
.mint-blob {
  margin: 0;
  font-family: ui-monospace, monospace;
  font-size: 11.5px;
  line-height: 1.45;
  padding: 12px 14px;
  border: 2.5px solid var(--ink);
  border-radius: 10px;
  background: var(--ink);
  color: #c7e85c;
  white-space: pre-wrap;
  word-break: break-all;
  overflow-x: auto;
}

/* Big copyable command block (the actually-useful bit) */
.cmd-block {
  appearance: none;
  display: block;
  width: 100%;
  text-align: left;
  padding: 0;
  background: var(--ink);
  border: 2.5px solid var(--ink);
  border-radius: 10px;
  cursor: pointer;
  overflow: hidden;
  font: inherit;
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform .12s ease, box-shadow .12s ease;
}
.cmd-block:hover { transform: translate(-1px,-1px); box-shadow: 5px 5px 0 var(--ink); }
.cmd-block:active { transform: translate(1px,1px); box-shadow: 2px 2px 0 var(--ink); }
.mint-card .cmd-block { box-shadow: none; }
.mint-card .cmd-block:hover { box-shadow: none; transform: none; opacity: .9; }
.mint-card .cmd-block:active { box-shadow: none; transform: none; opacity: .8; }
.cmd-bar {
  display: flex; align-items: center; gap: 10px;
  background: #1f1f1c;
  padding: 7px 12px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.cmd-dots { display: inline-flex; gap: 4px; }
.cmd-dots i {
  width: 9px; height: 9px; border-radius: 50%; display: inline-block;
}
.cmd-dots i.r { background: #ff5f57; }
.cmd-dots i.y { background: #ffbd2e; }
.cmd-dots i.g { background: var(--lid); }
.cmd-bar-title {
  font-family: ui-monospace, monospace;
  font-size: 11px;
  color: rgba(255,255,255,.55);
  letter-spacing: .02em;
}
.cmd-copy {
  margin-left: auto;
  font-family: ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: .18em;
  color: rgba(255,255,255,.45);
  background: rgba(255,255,255,.06);
  padding: 3px 8px;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,.12);
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
}
.cmd-copy.on { color: var(--ink); background: var(--lid); border-color: var(--lid); }
.cmd-body {
  margin: 0;
  padding: 14px 14px 16px;
  font-family: ui-monospace, "JetBrains Mono", Menlo, monospace;
  font-size: 12.5px;
  line-height: 1.55;
  color: #f3eedc;
  white-space: pre-wrap;
  word-break: break-all;
}
.cmd-prompt { color: var(--lid); font-weight: 800; user-select: none; }
.cmd-text { color: #f3eedc; }

/* Trust hint */
.trust-hint {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  font-size: 12.5px;
  color: var(--ink-soft);
  font-style: italic;
  padding: 2px 0;
}
.trust-hint code {
  font-style: normal;
  font-family: ui-monospace, monospace;
  font-size: 12px;
  background: var(--paper);
  padding: 3px 8px;
  border-radius: 4px;
  border: 1.5px solid var(--ink);
  font-weight: 700;
  color: var(--ink);
}
.mint-cmd {
  border: 2px dashed var(--ink);
  border-radius: 8px;
  background: rgba(255,255,255,.35);
  padding: 8px 12px;
  font-size: 12px;
}
.mint-cmd summary {
  cursor: pointer;
  font-weight: 800;
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  list-style: none;
  color: var(--ink);
}
.mint-cmd summary::-webkit-details-marker { display: none; }
.mint-cmd summary::before { content: "▸ "; }
.mint-cmd[open] summary::before { content: "▾ "; }
.mint-cmd pre {
  margin: 8px 0 2px;
  font-family: ui-monospace, monospace;
  font-size: 12px;
  white-space: pre-wrap;
  color: var(--ink);
}
.mint-err {
  font-size: 13px;
  font-weight: 600;
  color: #5a1a14;
  background: rgba(212,75,58,.18);
  border: 2px solid var(--warn);
  border-radius: 8px;
  padding: 8px 12px;
}
.mint-actions {
  display: flex; align-items: center; gap: 14px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.mint-btn {
  font-size: 13px;
  padding: 11px 18px;
  white-space: nowrap;
}
.mint-hint {
  font-size: 12px;
  color: var(--ink-soft);
  letter-spacing: .02em;
}
.link-btn {
  appearance: none;
  background: transparent;
  border: 0;
  font: inherit;
  font-size: 12px;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ink-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  padding: 4px 0;
  white-space: nowrap;
}
.link-btn:hover { color: var(--ink); }

/* ── Credential paths: Human / Butler ──────────────────────────────── */
.cred-paths { margin-top: 16px; }
.cred-tabs {
  display: flex; gap: 6px; margin-bottom: 14px;
}
.cred-tab {
  appearance: none;
  font: inherit; font-size: 11px; font-weight: 800;
  letter-spacing: .15em; text-transform: uppercase;
  padding: 7px 14px; cursor: pointer;
  border: 2.5px solid var(--ink);
  border-radius: 999px;
  background: var(--paper); color: var(--ink);
  transition: background .12s, color .12s, transform .1s, box-shadow .1s;
  box-shadow: 2px 2px 0 var(--ink);
}
.cred-tab:hover { transform: translate(-1px, -1px); box-shadow: 3px 3px 0 var(--ink); }
.cred-tab:active { transform: translate(1px, 1px); box-shadow: 1px 1px 0 var(--ink); }
.cred-tab.on {
  background: var(--ink); color: var(--lid);
  box-shadow: 2px 2px 0 var(--ink);
}
.cred-panel { min-width: 0; }
.butler-hint {
  font-size: 12.5px; color: var(--ink-soft);
  margin: 0 0 10px; line-height: 1.5;
}
.cmd-comment { color: #8a8a7a; }

.token-label {
  font-size: 11px; font-weight: 800; letter-spacing: .15em;
  margin-bottom: 6px; color: var(--ink);
}
.token-block {
  display: flex; align-items: flex-start; gap: 10px;
  width: 100%; padding: 10px 12px;
  background: var(--ink); color: var(--lid);
  border: 2.5px solid var(--ink);
  border-radius: 8px;
  font-family: ui-monospace, "JetBrains Mono", Menlo, monospace;
  min-width: 0;
}
.token-text {
  flex: 1; font-size: 11px; line-height: 1.5;
  word-break: break-all; white-space: pre-wrap;
  cursor: pointer; min-width: 0;
}
.token-text.masked {
  letter-spacing: .12em; filter: blur(2px);
  user-select: none; cursor: pointer;
}
.token-actions { flex-shrink: 0; display: flex; gap: 6px; }
.token-btn {
  appearance: none;
  border: 2px solid var(--lid); background: none;
  color: var(--lid); font: inherit;
  font-size: 10px; font-weight: 800; letter-spacing: .12em;
  padding: 4px 10px; border-radius: 5px;
  cursor: pointer; transition: background .12s, color .12s;
}
.token-btn:hover { background: var(--lid); color: var(--ink); }
.token-btn.on { background: var(--lid); color: var(--ink); }

.sign-help { margin: -4px 0 8px; }
.sign-fallback {
  margin: 6px 0 0;
  padding: 10px 12px;
  font-size: 12px;
  line-height: 1.5;
  background: var(--ink);
  color: var(--lid);
  border-radius: 4px;
  white-space: pre-wrap;
  word-break: break-all;
  font-family: var(--mono, 'SF Mono', 'Fira Code', monospace);
}

.mint-success { gap: 14px; }
.success-tag {
  display: inline-block;
  background: var(--ink);
  color: var(--lid);
  font-size: 11px; letter-spacing: .2em;
  font-weight: 800;
  padding: 6px 10px;
  border-radius: 6px;
  width: fit-content;
}
.success-addr-l {
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  font-weight: 800; color: var(--ink-soft);
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
}
.anon-pill {
  font-size: 9px; letter-spacing: .18em;
  background: var(--ink); color: var(--lid);
  padding: 3px 8px; border-radius: 999px;
  border: 1.5px solid var(--ink);
  font-weight: 800;
}
.reroll {
  align-self: flex-start;
  margin: -2px 0 0;
}
.success-addr {
  display: flex; align-items: center; gap: 14px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 900;
  font-size: clamp(18px, 2.5vw, 30px);
  letter-spacing: -.02em;
  background: var(--bg);
  border: 2.5px solid var(--ink);
  padding: 12px 16px;
  border-radius: 10px;
  cursor: pointer;
  color: var(--ink);
  line-height: 1.2;
  max-width: 100%;
  overflow: hidden;
  word-break: break-all;
}
.success-addr:hover .addr-copy { background: var(--hazard); }
.success-meta {
  display: flex; flex-direction: column; gap: 4px;
  font-size: 12.5px;
  color: var(--ink-soft);
  border-left: 3px solid var(--ink);
  padding-left: 12px;
}
.success-meta b { letter-spacing: .14em; font-size: 10px; margin-right: 6px; color: var(--ink); }

.mint-foot {
  margin-top: 18px;
  padding-top: 12px;
  border-top: 2px dashed var(--ink);
  font-size: 11px;
  font-style: italic;
  font-weight: 500;
  color: var(--ink-soft);
}

/* ── Coming soon: read your bin ─────────────────────────────────────── */
.cs-strip {
  margin-top: 36px;
  border: 3px solid var(--ink);
  border-radius: 14px;
  background: var(--bg);
  box-shadow: 8px 8px 0 var(--ink);
  overflow: hidden;
  position: relative;
}
.cs-tape {
  background: repeating-linear-gradient(45deg, var(--hazard) 0 18px, var(--ink) 18px 36px);
  color: var(--ink);
  height: 28px;
  display: flex; align-items: center;
  overflow: hidden; white-space: nowrap;
  border-bottom: 3px solid var(--ink);
  position: relative;
}
.cs-tape::before, .cs-tape::after {
  content: ""; position: absolute; inset: 0;
  background: var(--ink);
}
.cs-tape::before { right: auto; width: 8px; }
.cs-tape::after { left: auto; width: 8px; }
.cs-tape > span {
  display: inline-block;
  animation: scroll 28s linear infinite;
  color: var(--ink);
  font-weight: 900;
  font-size: 13px; letter-spacing: .2em;
  background: var(--hazard);
  padding: 0 12px;
  text-shadow: 1px 1px 0 rgba(0,0,0,.15);
}
.cs-inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 32px;
  padding: 28px 28px 26px;
  align-items: start;
}
.cs-left { min-width: 0; }
.cs-eyebrow {
  font-size: 11px; letter-spacing: .24em; text-transform: uppercase;
  font-weight: 800; color: var(--ink-soft);
  margin-bottom: 10px;
}
.cs-h {
  margin: 0 0 12px;
  font-weight: 900;
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: .94;
  letter-spacing: -.03em;
}
.cs-p {
  margin: 0 0 14px;
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink-soft);
}
.cs-list {
  margin: 0; padding: 0; list-style: none;
  display: flex; flex-direction: column; gap: 6px;
  font-size: 14px;
  color: var(--ink-soft);
}
.cs-list li::before { content: "▸ "; color: var(--ink); font-weight: 900; }
.cs-list b { color: var(--ink); margin-right: 4px; }

.cs-right { display: flex; flex-direction: column; gap: 14px; min-width: 0; }
.cs-mock {
  background: var(--ink);
  color: var(--bg);
  border-radius: 10px;
  border: 2.5px solid var(--ink);
  font-family: ui-monospace, monospace;
  font-size: 12px;
  overflow: hidden;
}
.cs-mock-bar {
  display: flex; align-items: center; gap: 6px;
  background: #1f1f1c;
  padding: 8px 10px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.cs-dot {
  width: 10px; height: 10px; border-radius: 50%; display: inline-block;
}
.cs-dot.r { background: #ff5f57; }
.cs-dot.y { background: #ffbd2e; }
.cs-dot.g { background: var(--lid); }
.cs-mock-title {
  margin-left: 8px;
  font-size: 11px;
  color: rgba(255,255,255,.7);
  letter-spacing: .04em;
}
.cs-mock-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 10px;
  padding: 8px 12px;
  border-bottom: 1px dashed rgba(255,255,255,.15);
  align-items: baseline;
}
.cs-mock-row:last-of-type { border-bottom: 0; }
.cs-mock-from {
  color: var(--lid);
  font-weight: 700;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.cs-mock-sub {
  color: rgba(255,255,255,.85);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.cs-mock-foot {
  text-align: center;
  padding: 10px;
  font-size: 10.5px;
  letter-spacing: .2em;
  color: rgba(255,255,255,.4);
  background: #1f1f1c;
  text-transform: uppercase;
}

.cs-form {
  display: flex; gap: 8px;
  border: 2.5px solid var(--ink);
  border-radius: 10px;
  padding: 4px;
  background: var(--paper);
}
.cs-form input {
  flex: 1; min-width: 0;
  border: 0; outline: 0;
  background: transparent;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 10px;
  color: var(--ink);
}
.cs-form input::placeholder { color: rgba(0,0,0,.4); }
.cs-form button {
  appearance: none;
  border: 0;
  background: var(--ink);
  color: var(--lid);
  font: inherit;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 7px;
  cursor: pointer;
  white-space: nowrap;
}
.cs-thanks {
  background: var(--lid);
  border: 2.5px solid var(--ink);
  border-radius: 10px;
  padding: 12px 14px;
  font-weight: 800;
  font-size: 14px;
  text-align: center;
}

.cs-preview {
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px;
  text-decoration: none;
  border: 2.5px solid var(--ink);
  border-radius: 10px;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--lid);
  font-weight: 800; font-size: 13px;
  letter-spacing: .06em; text-transform: uppercase;
  box-shadow: 4px 4px 0 var(--lid);
  transition: transform .12s ease, box-shadow .12s ease;
}
.cs-preview:hover { transform: translate(-1px,-1px); box-shadow: 5px 5px 0 var(--lid); }
.cs-preview-arrow { font-size: 18px; }
.addr-grid {
  margin-top: 32px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  max-width: 980px;
}
.addr-grid > div {
  display: flex; flex-direction: column; gap: 4px;
  border-left: 3px solid var(--ink);
  padding-left: 12px;
}
.kv-k { font-size: 11px; letter-spacing: .22em; text-transform: uppercase; font-weight: 700; color: var(--ink-soft); }
.kv-v { font-size: 18px; font-weight: 800; }

/* disclaimer */
.disc-sect { background: var(--ink); color: var(--bg); }
.disc-sect .h2 { color: var(--bg); }
.disc-sect .sect-num { color: rgba(255,255,255,.55); }
.disc-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  max-width: 1200px;
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255,255,255,.82);
}
.disc-grid p { margin: 0; }

/* ───── FOOTER ───── */
.ftr {
  padding: 48px 32px 24px;
  background: var(--lid);
  color: var(--ink);
  border-top: 3px solid var(--ink);
  position: relative; z-index: 1;
}
.ftr-mark {
  font-weight: 900;
  font-size: clamp(80px, 14vw, 220px);
  letter-spacing: -.04em;
  line-height: .82;
  margin-bottom: 16px;
}
.ftr-poem {
  font-style: italic;
  font-size: 22px;
  line-height: 1.35;
  margin: 0 0 36px;
  max-width: 800px;
  font-weight: 500;
}
.ftr-poem p { margin: 0; }
.ftr-poem .goo { font-weight: 900; font-style: normal; letter-spacing: -.01em; }
.ftr-cols {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  border-top: 2.5px solid var(--ink);
  padding-top: 24px;
}
.ftr-cols > div { display: flex; flex-direction: column; gap: 6px; }
.ftr-h {
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase; font-weight: 800;
  margin-bottom: 6px;
}
.ftr-cols a, .ftr-cols span { font-size: 15px; font-weight: 600; text-decoration: none; }
.ftr-cols a:hover { text-decoration: underline; }
.ftr-cols .quiet { font-style: italic; font-weight: 500; opacity: .8; }

.ftr-bar {
  margin-top: 28px;
  display: flex; flex-wrap: wrap; gap: 22px;
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  font-weight: 700;
  border-top: 2.5px solid var(--ink);
  padding-top: 16px;
  color: var(--ink-soft);
}
.ftr-whisper {
  margin-top: 22px;
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: lowercase;
  font-style: italic;
  color: rgba(0,0,0,.18);
  font-weight: 500;
  user-select: text;
  line-height: 1.4;
}

/* Goo-pop easter egg (press G) */
.goo-pop {
  position: fixed;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%);
  z-index: 2147483645;
  background: var(--ink);
  color: var(--lid);
  border: 3px solid var(--lid);
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .02em;
  box-shadow: 6px 6px 0 var(--lid);
  max-width: min(680px, 88vw);
  display: flex; align-items: baseline; gap: 10px;
  animation: goo-in .25s ease-out;
}
.goo-pop-lbl {
  font-family: ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: .8;
  flex-shrink: 0;
}
@keyframes goo-in {
  from { transform: translate(-50%, 8px); opacity: 0; }
  to   { transform: translate(-50%, 0);   opacity: 1; }
}

.hint-g {
  position: fixed;
  left: 16px; bottom: 16px;
  z-index: 2147483644;
  width: 26px; height: 26px;
  display: flex; align-items: center; justify-content: center;
  font-family: ui-monospace, monospace;
  font-size: 11px; font-weight: 800;
  background: var(--paper);
  color: var(--ink-soft);
  border: 2px solid var(--ink);
  border-radius: 6px;
  opacity: .55;
  box-shadow: 2px 2px 0 var(--ink);
  pointer-events: none;
}

/* ───── BOT PAGE ───── */
.bot-page {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 32px 16px;
  background:
    repeating-linear-gradient(45deg, var(--hazard) 0 22px, var(--ink) 22px 44px);
}
.bot-card {
  width: min(880px, 100%);
  background: var(--bg);
  border: 4px solid var(--ink);
  border-radius: 16px;
  padding: 44px 44px 32px;
  box-shadow: 10px 10px 0 var(--ink);
  position: relative;
}
.bot-stamp {
  position: absolute;
  top: -38px; right: -28px;
  width: 132px; height: 132px;
  border-radius: 50%;
  background: var(--warn);
  color: var(--bg);
  border: 4px solid var(--ink);
  display: flex; align-items: center; justify-content: center;
  transform: rotate(-12deg);
  box-shadow: 4px 4px 0 var(--ink);
  font-weight: 900;
}
.stamp-ring {
  position: absolute; inset: 8px;
  border-radius: 50%;
  font-size: 9px; letter-spacing: .12em; text-transform: uppercase;
  /* simple circular text via radial trick */
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 6px;
  line-height: 1.05;
  font-weight: 800;
}
.stamp-core { font-size: 28px; }
.bot-eyebrow {
  font-size: 12px; letter-spacing: .24em; text-transform: uppercase;
  font-weight: 800; color: var(--ink-soft);
  margin-bottom: 12px;
}
.bot-h1 {
  margin: 0 0 16px;
  font-weight: 900;
  font-size: clamp(40px, 7vw, 92px);
  line-height: .88;
  letter-spacing: -.03em;
  text-wrap: balance;
}
.bot-h1-soft {
  font-weight: 500;
  font-size: .55em;
  color: var(--ink-soft);
  letter-spacing: -.01em;
}
.bot-tag {
  margin: 0 0 28px;
  font-size: 20px;
  color: var(--ink-soft);
  max-width: 640px;
}
.bot-receipt {
  border: 2.5px dashed var(--ink);
  border-radius: 10px;
  padding: 18px 20px;
  background: var(--paper);
  margin: 20px 0 24px;
}
.receipt-h {
  text-align: center;
  font-size: 11px; letter-spacing: .24em; font-weight: 800;
  color: var(--ink-soft);
  margin: 4px 0 10px;
}
.bot-receipt > .receipt-h:last-child { margin: 10px 0 4px; }
.rcpt-row {
  display: grid; grid-template-columns: 160px 1fr auto; gap: 10px;
  align-items: baseline;
  padding: 5px 0;
  font-size: 14px;
}
.rcpt-k { font-weight: 800; letter-spacing: .08em; text-transform: uppercase; font-size: 11px; }
.rcpt-d { border-bottom: 1.5px dotted rgba(0,0,0,.35); height: 6px; transform: translateY(-3px); }
.rcpt-v { color: var(--ink-soft); text-align: right; max-width: 100%; word-break: break-all; }
.rcpt-v.mono { font-family: ui-monospace, monospace; font-size: 12.5px; }

.bot-poem {
  font-style: italic;
  font-size: 18px;
  line-height: 1.45;
  margin: 0 0 24px;
  color: var(--ink-soft);
  max-width: 620px;
}
.bot-poem p { margin: 0; }

.bot-rules {
  border-top: 2px solid var(--ink);
  padding-top: 16px;
  font-size: 14px;
  color: var(--ink-soft);
}
.bot-rules summary {
  cursor: pointer;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--ink);
  list-style: none;
}
.bot-rules summary::-webkit-details-marker { display: none; }
.bot-rules ol { margin: 12px 0 0; padding-left: 22px; }
.bot-rules li { margin-bottom: 8px; line-height: 1.45; }
.bot-rules code {
  background: var(--paper);
  padding: 1px 6px; border-radius: 4px;
  font-size: 12.5px;
  border: 1px solid var(--ink);
}

.bot-footer {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  margin-top: 24px;
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  font-weight: 700; color: var(--ink-soft);
  border-top: 2px solid var(--ink);
  padding-top: 14px;
}

/* ───── RESPONSIVE ───── */
@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; }
  .bin-stage { justify-self: start; max-width: 280px; }
  .cols-2 { grid-template-columns: 1fr; }
  .disc-grid { grid-template-columns: 1fr; }
  .addr-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .cs-inner { grid-template-columns: 1fr; gap: 20px; }
  .ftr-cols { grid-template-columns: repeat(2, 1fr); }
  .ftr-mark { font-size: clamp(64px, 18vw, 140px); }
}
@media (max-width: 640px) {
  .hdr-row { padding: 14px 18px; }
  .nav { display: none; }
  .hero { padding: 36px 20px 28px; }
  .sect { padding: 48px 20px; }
  .ftr { padding: 32px 20px 20px; }
  .spec-row { grid-template-columns: 1fr; gap: 4px; padding: 12px 0; }
  .spec-dot { display: none; }
  .bot-stamp { width: 96px; height: 96px; top: -24px; right: -10px; }
  .stamp-core { font-size: 20px; }
}
