:root {
  --ink: #140e09;
  --ink-2: #1f160f;
  --kraft: #c9a36a;
  --kraft-deep: #8a6230;
  --kraft-light: #e4c896;
  --cream: #f3e6c8;
  --moss: #7cff3a;
  --moss-dim: #2f8f12;
  --rust: #9a4a1a;
  --blaze: #ff7a2f;
  --cart: #c4232a;
  --tape: #e8d5a3;
  --nav: 78px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { background: var(--ink); }
body {
  margin: 0;
  color: var(--cream);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
code { font-family: "Special Elite", ui-monospace, monospace; }
section { scroll-margin-top: calc(var(--nav) + 12px); }
::selection { background: var(--moss); color: var(--ink); }

/* ───────── WORLD BACKGROUND (banner.png, never in hero) ───────── */
.world { position: fixed; inset: 0; z-index: -3; pointer-events: none; }
.world__banner {
  position: absolute; inset: -8%;
  background: url("banner.png") center 42% / cover no-repeat;
  filter: blur(10px) saturate(1.15) brightness(0.38);
  transform: scale(1.08);
}
.world__grade {
  position: absolute; inset: 0;
  background:
    radial-gradient(900px 520px at 12% 18%, rgba(255,122,47,.16), transparent 62%),
    radial-gradient(800px 480px at 88% 72%, rgba(124,255,58,.10), transparent 60%),
    linear-gradient(180deg, rgba(20,14,9,.72), rgba(20,14,9,.88) 46%, rgba(20,14,9,.78));
}
.world__grain {
  position: absolute; inset: 0; opacity: .28;
  background-image: radial-gradient(rgba(243,230,200,.18) 0.8px, transparent 0.9px);
  background-size: 3px 3px;
}
.world__vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 42%, rgba(10,6,3,.72) 100%);
}

/* ───────── NAV ───────── */
.tape-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  height: var(--nav);
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  padding: 0 22px;
  background:
    repeating-linear-gradient(90deg, rgba(80,48,16,.07) 0 3px, transparent 3px 10px),
    linear-gradient(180deg, #ead4a4, #cda86a);
  color: var(--ink);
  border-bottom: 4px solid #5a3a16;
  box-shadow: 0 10px 0 rgba(0,0,0,.28);
}
.tape-nav::before,
.tape-nav::after {
  content: "";
  position: absolute; top: 0; bottom: 0; width: 18px;
  background: repeating-linear-gradient(
    135deg,
    #1a1008 0 8px,
    #ead4a4 8px 16px
  );
}
.tape-nav::before { left: 0; }
.tape-nav::after { right: 0; }

.brand { display: flex; align-items: center; gap: 10px; min-width: 0; }
.brand__seal {
  width: 48px; height: 48px; flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #3a2410;
  box-shadow: 3px 3px 0 #3a2410;
  background: #2a1a0c;
}
.brand__seal img { width: 100%; height: 100%; object-fit: cover; }
.brand__copy { display: flex; flex-direction: column; line-height: 1; }
.brand__copy b { font-size: 15px; letter-spacing: .04em; }
.brand__copy i { font-size: 11px; font-style: normal; opacity: .75; margin-top: 3px; }

.desk-links { display: flex; gap: 22px; }
.desk-links a {
  position: relative;
  font-size: 15px;
  letter-spacing: .06em;
}
.desk-links a::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -6px; height: 2px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}
.desk-links a:hover::after { transform: scaleX(1); }

.nav-acts { display: flex; align-items: center; gap: 8px; }
.ico {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border: 2px solid #3a2410;
  background: #f3e6c8;
  box-shadow: 3px 3px 0 #3a2410;
  font-size: 16px;
}
.ico:hover { transform: translate(-1px, -1px); box-shadow: 4px 4px 0 #3a2410; }
.ico-dex { background: #d9f7c4; }
.buy-tab {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px;
  background: var(--moss);
  color: #102006;
  border: 2px solid #102006;
  box-shadow: 3px 3px 0 #102006;
  font-family: "Bowlby One SC", sans-serif;
  font-size: 14px;
  letter-spacing: .04em;
}
.buy-tab:hover { transform: translate(-1px, -1px); box-shadow: 4px 4px 0 #102006; }
.burger {
  display: none;
  width: 40px; height: 40px;
  border: 2px solid #3a2410;
  background: #f3e6c8;
  box-shadow: 3px 3px 0 #3a2410;
  font-size: 22px;
}

.drawer {
  position: fixed; top: var(--nav); left: 0; right: 0; z-index: 49;
  display: flex; flex-direction: column;
  background: #e4c896;
  color: var(--ink);
  border-bottom: 4px solid #3a2410;
  padding: 12px 20px 18px;
}
.drawer[hidden] { display: none; }
.drawer a {
  padding: 12px 0;
  border-bottom: 1px dashed #8a6230;
  font-family: "Special Elite", monospace;
  font-size: 18px;
}

/* ───────── HERO ───────── */
.hero {
  position: relative;
  min-height: 100vh;
  padding: calc(var(--nav) + 36px) 28px 72px;
  overflow: hidden;
}
.hero__scene {
  position: absolute; inset: 0; z-index: 0;
  background: url("3.png") center 40% / cover no-repeat;
  filter: saturate(1.12) contrast(1.05);
}
.hero__shade {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg, rgba(12,8,5,.18) 0%, rgba(12,8,5,.28) 38%, rgba(12,8,5,.78) 100%),
    linear-gradient(180deg, rgba(12,8,5,.15), transparent 28%, rgba(12,8,5,.55) 100%);
}
.hero__rays {
  position: absolute; inset: -20%; z-index: 1; pointer-events: none; opacity: .12;
  background: repeating-conic-gradient(
    from 8deg at 28% 55%,
    rgba(255,210,120,.9) 0deg 1deg,
    transparent 1deg 9deg
  );
}
.hero__stage {
  position: relative; z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 420px) 1fr;
  gap: 48px;
  align-items: center;
}

.peek { perspective: 1400px; }
.peek__depth {
  position: relative;
  height: 460px;
  transform-style: preserve-3d;
  transform: rotateY(-18deg) rotateX(7deg);
  transition: transform .18s ease-out;
}
.peek__plate {
  position: absolute;
  inset: 0 16px 18px 0;
}
.peek__portrait {
  position: absolute; inset: 0;
  overflow: hidden;
  background: #1a1008;
}
.peek__portrait img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 28%;
}
.peek__face {
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(80,48,16,.08) 0 2px, transparent 2px 7px),
    linear-gradient(165deg, #e0c089 0%, #c4a06a 46%, #9a7038 100%);
  border: 5px solid #3a2410;
  box-shadow:
    12px 16px 0 rgba(20,10,4,.45),
    inset 0 0 0 10px rgba(90,58,22,.18);
  -webkit-mask-image: url("crate-mask.svg");
  mask-image: url("crate-mask.svg");
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}
.peek__ring {
  position: absolute;
  border: 6px solid #5a3a18;
  box-shadow: inset 0 10px 16px rgba(0,0,0,.45);
  pointer-events: none;
}
.peek__ring--l,
.peek__ring--r {
  width: 23%;
  aspect-ratio: 1;
  border-radius: 50%;
  top: 24.5%;
}
.peek__ring--l { left: 20.5%; }
.peek__ring--r { left: 56.5%; }
.peek__ring--m {
  width: 27%;
  height: 19%;
  border-radius: 50%;
  left: 36.5%;
  top: 52.5%;
}
.peek__horn {
  position: absolute; top: 6%; width: 18px; height: 70px;
  background: linear-gradient(180deg, #2a1c12, #0c0806);
  border: 2px solid #0c0806;
  border-radius: 40% 40% 20% 20%;
}
.peek__horn--l { left: 18%; transform: rotate(-22deg); }
.peek__horn--r { right: 18%; transform: rotate(22deg); }
.peek__stamp {
  position: absolute; left: 16px; bottom: 22px;
  color: #6b1c16;
  font-size: 13px;
  letter-spacing: .12em;
  transform: rotate(-6deg);
  border: 2px solid #6b1c16;
  padding: 4px 8px;
}
.peek__barcode {
  position: absolute; right: 18px; bottom: 20px;
  width: 78px; height: 28px;
  background: repeating-linear-gradient(
    90deg,
    #2a1a0c 0 3px,
    transparent 3px 6px,
    #2a1a0c 6px 8px,
    transparent 8px 10px
  );
}
.peek__side {
  position: absolute; top: 8px; right: -22px; bottom: 26px; width: 28px;
  background: linear-gradient(180deg, #8a6230, #5c3d18);
  border: 4px solid #3a2410;
  transform: skewY(-18deg);
}
.peek__flap {
  position: absolute; left: 8px; right: 28px; top: -18px; height: 26px;
  background: linear-gradient(180deg, #d7b47a, #b88a48);
  border: 4px solid #3a2410;
  transform: skewX(-18deg);
}
.peek__caption {
  margin: 16px 0 0;
  font-size: 13px;
  letter-spacing: .14em;
  color: #f3e6c8;
  text-shadow: 0 2px 0 #140e09;
}

.hero__copy { max-width: 640px; justify-self: end; }
.issue-chip {
  display: inline-flex; gap: 10px; align-items: center;
  margin: 0 0 14px;
  padding: 6px 10px;
  background: rgba(20,14,9,.55);
  border: 2px dashed var(--kraft-light);
  letter-spacing: .14em;
  font-size: 13px;
}
.issue-chip span { color: var(--moss); }
h1 { margin: 0; line-height: .86; }
.t-anon {
  display: block;
  font-size: clamp(42px, 7vw, 84px);
  color: #f4e3bf;
  text-shadow: 5px 5px 0 #1a1008;
  letter-spacing: .02em;
}
.t-bull {
  display: block;
  font-size: clamp(72px, 12vw, 132px);
  color: var(--moss);
  -webkit-text-stroke: 3px #102006;
  text-shadow: 7px 7px 0 #102006, 0 0 28px rgba(124,255,58,.28);
}
.ticker {
  margin: 14px 0 18px;
  letter-spacing: .16em;
  font-size: 14px;
  color: #f0d7a4;
}
.ticker em { color: var(--blaze); font-style: normal; }
.bio-tag {
  margin: 0 0 22px;
  max-width: 34ch;
  padding: 14px 16px 16px;
  background:
    linear-gradient(135deg, rgba(228,200,150,.94), rgba(201,163,106,.94));
  color: #2a1a0c;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.35;
  border: 3px solid #3a2410;
  box-shadow: 6px 6px 0 #3a2410;
  transform: rotate(-1.4deg);
  clip-path: polygon(2% 0, 100% 3%, 98% 96%, 0 100%);
}

.cta-row { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 20px; }
.btn-buy,
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 16px;
  border: 3px solid #102006;
  font-family: "Bowlby One SC", sans-serif;
  font-size: 15px;
  letter-spacing: .03em;
  box-shadow: 4px 4px 0 #102006;
}
.btn-buy { background: var(--moss); color: #102006; }
.btn-buy--wide { padding-inline: 28px; }
.btn-ghost { background: rgba(243,230,200,.12); color: var(--cream); border-color: var(--cream); box-shadow: 4px 4px 0 #3a2410; }
.btn-buy:hover,
.btn-ghost:hover { transform: translate(-1px, -1px); }

.ship-label {
  background: #f7efd8;
  color: #1a1008;
  border: 3px solid #1a1008;
  box-shadow: 5px 5px 0 #1a1008;
}
.ship-label--plain { margin-top: 8px; }
.ship-label__head {
  display: flex; justify-content: space-between; gap: 12px;
  padding: 7px 12px;
  background: #1a1008;
  color: #f3e6c8;
  font-size: 12px;
  letter-spacing: .12em;
}
.ship-label__ca {
  display: flex; align-items: center; gap: 10px;
  padding: 12px;
}
.ship-label__ca span { font-size: 12px; letter-spacing: .12em; color: #6b4a22; }
.ship-label__ca code {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 13px;
}
.copy-btn {
  width: 36px; height: 36px;
  border: 2px solid #1a1008;
  background: var(--moss);
  box-shadow: 2px 2px 0 #1a1008;
}

/* ───────── SHARED SECTION CHROME ───────── */
.about, .howto, .herd {
  position: relative;
  padding: 88px 28px 40px;
}
.sec-kicker {
  text-align: center;
  letter-spacing: .22em;
  font-size: 13px;
  color: var(--kraft-light);
  margin-bottom: 8px;
}
.sec-title {
  text-align: center;
  margin: 0 0 14px;
  font-size: clamp(40px, 6vw, 68px);
  letter-spacing: .04em;
  text-shadow: 4px 4px 0 #0a0603;
}
.sec-lead {
  text-align: center;
  max-width: 46ch;
  margin: 0 auto 36px;
  color: #ead8b4;
  font-size: 18px;
}

/* ───────── ABOUT / DOSSIER ───────── */
.about { padding-bottom: 24px; }
.dossier {
  position: relative;
  max-width: 1100px;
  margin: 28px auto 0;
  background:
    repeating-linear-gradient(transparent 0 31px, rgba(90,58,22,.08) 31px 32px),
    linear-gradient(180deg, #f6ecd2, #e8d4a8);
  color: #23170d;
  border: 4px solid #3a2410;
  box-shadow:
    14px 16px 0 rgba(12,8,4,.4),
    inset 0 0 0 10px rgba(90,58,22,.08);
  transform: perspective(1400px) rotateY(4deg) rotateX(2deg);
}
.dossier__tab {
  position: absolute;
  top: -28px; left: 28px;
  background: #d7b07a;
  border: 4px solid #3a2410;
  border-bottom: none;
  padding: 8px 18px 6px;
  letter-spacing: .12em;
  font-size: 13px;
}
.paperclip {
  position: absolute; top: -18px; right: 48px; width: 22px; height: 48px;
  border: 4px solid #8d9196;
  border-radius: 12px;
  transform: rotate(12deg);
  box-shadow: inset 0 0 0 3px #cfd2d6;
}
.dossier__body {
  display: grid;
  grid-template-columns: minmax(240px, 42%) 1fr;
  gap: 28px;
  padding: 36px 28px 32px;
}
.taped {
  position: relative;
  margin: 0;
  background: #111;
  border: 8px solid #f7f1e4;
  box-shadow: 6px 8px 0 rgba(40,24,10,.28);
  transform: rotate(-2.4deg);
}
.taped img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.taped figcaption {
  padding: 8px 10px 10px;
  background: #f7f1e4;
  color: #3a2410;
  letter-spacing: .1em;
  font-size: 12px;
}
.tape {
  position: absolute; z-index: 2;
  width: 86px; height: 22px;
  background: rgba(232,213,163,.82);
  border: 1px solid rgba(90,58,22,.25);
  box-shadow: 0 1px 0 rgba(255,255,255,.35) inset;
}
.tape--tl { top: -8px; left: 16px; transform: rotate(-18deg); }
.tape--tr { top: -6px; right: 18px; transform: rotate(16deg); }

.dossier__copy p { margin: 0 0 14px; font-size: 17px; line-height: 1.55; }
.hand {
  color: var(--rust);
  font-size: 22px;
  transform: rotate(-3deg);
  margin-bottom: 10px !important;
}
.stamps {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.stamps li {
  border: 2px dashed #6b4a22;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stamps b { font-size: 11px; letter-spacing: .16em; color: #6b4a22; }
.stamps span { font-family: "Bowlby One SC", sans-serif; font-size: 16px; }

/* ───────── HOW TO BUY / ISOMETRIC DOCK ───────── */
.howto { padding-top: 72px; }
.dock {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(220px, 320px) 1fr;
  gap: 28px;
  align-items: center;
}
.cart-star {
  margin: 0;
  transform: perspective(900px) rotateY(16deg) rotate(-3deg);
  border: 5px solid #3a2410;
  box-shadow: 10px 12px 0 rgba(12,8,4,.4);
  background: #111;
}
.cart-star img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.cart-star figcaption {
  padding: 8px 10px;
  background: #c4232a;
  color: #fff8e8;
  letter-spacing: .12em;
  font-size: 12px;
}

.crate-line {
  list-style: none;
  margin: 0;
  padding: 18px 6px 8px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  perspective: 1600px;
}
.iso-crate {
  position: relative;
  background:
    repeating-linear-gradient(90deg, rgba(80,48,16,.08) 0 2px, transparent 2px 8px),
    linear-gradient(180deg, #d8b57c, #b88846);
  color: #1f140b;
  border: 4px solid #3a2410;
  padding: 28px 14px 18px;
  min-height: 260px;
  box-shadow: 8px 10px 0 rgba(12,8,4,.35);
  transform: rotateY(-22deg) rotateX(10deg);
  transform-origin: bottom center;
}
.iso-crate:nth-child(2) { transform: rotateY(-22deg) rotateX(10deg) translateZ(-28px) scale(.97); }
.iso-crate:nth-child(3) { transform: rotateY(-22deg) rotateX(10deg) translateZ(-56px) scale(.94); }
.iso-crate:nth-child(4) { transform: rotateY(-22deg) rotateX(10deg) translateZ(-84px) scale(.91); }
.iso-crate__lid {
  position: absolute; left: -4px; right: -4px; top: -14px; height: 16px;
  background: #e4c896;
  border: 4px solid #3a2410;
  transform: skewX(-18deg);
}
.iso-crate__mark {
  position: absolute; top: 10px; right: 10px;
  color: #6b1c16;
  font-size: 22px;
  opacity: .7;
}
.iso-crate i {
  font-size: 28px;
  color: #3a2410;
}
.iso-crate h3 {
  margin: 10px 0 8px;
  font-size: 18px;
  line-height: 1.05;
}
.iso-crate p { margin: 0; font-size: 14px; line-height: 1.4; }
.howto__cta { display: flex; justify-content: center; margin: 36px 0 8px; }

/* ───────── COMMUNITY / WANTED ───────── */
.herd { padding-bottom: 80px; }
.herd__grid {
  max-width: 1100px;
  margin: 28px auto 0;
  display: grid;
  grid-template-columns: minmax(240px, 380px) 1fr;
  gap: 28px;
  align-items: stretch;
}
.wanted {
  background: #f3e6c8;
  color: #1a1008;
  border: 5px solid #1a1008;
  padding: 22px 18px 20px;
  text-align: center;
  box-shadow: 12px 14px 0 rgba(12,8,4,.38);
  transform: perspective(1000px) rotateY(-8deg) rotate(-1.2deg);
}
.wanted__kicker { letter-spacing: .18em; font-size: 12px; margin: 0 0 6px; }
.wanted h3 {
  margin: 0;
  font-size: clamp(48px, 7vw, 72px);
  letter-spacing: .08em;
  line-height: .85;
}
.wanted__sub { letter-spacing: .16em; margin: 8px 0 14px; font-size: 13px; }
.wanted__mug {
  border: 4px solid #1a1008;
  overflow: hidden;
  margin-bottom: 12px;
}
.wanted__mug img { width: 100%; aspect-ratio: 4/3; object-fit: cover; object-position: center 40%; }
.wanted__note { margin: 0; font-weight: 700; }

.dispatch {
  background: rgba(20,14,9,.62);
  border: 3px dashed var(--kraft);
  padding: 28px 24px;
}
.dispatch__lead { margin: 0 0 22px; font-size: 18px; line-height: 1.55; color: #f0dcb8; }
.labels { display: grid; gap: 12px; margin-bottom: 18px; }
.postal {
  display: grid;
  grid-template-columns: 36px 1fr;
  grid-template-rows: auto auto;
  column-gap: 12px;
  align-items: center;
  padding: 12px 14px;
  border: 3px solid #1a1008;
  box-shadow: 4px 4px 0 #1a1008;
  color: #1a1008;
}
.postal i { grid-row: 1 / span 2; font-size: 22px; }
.postal span { font-size: 11px; letter-spacing: .16em; }
.postal b { font-family: "Bowlby One SC", sans-serif; font-size: 20px; }
.postal--x { background: #f3e6c8; }
.postal--buy { background: var(--moss); }
.postal--dex { background: #ffd36a; }

/* ───────── FOOTER ───────── */
.site-foot {
  padding: 40px 20px 56px;
  text-align: center;
  border-top: 4px solid #3a2410;
  background:
    linear-gradient(180deg, rgba(20,14,9,.2), rgba(20,14,9,.75)),
    url("banner.png") center 70% / cover no-repeat;
}
.site-foot img {
  width: 72px; height: 72px;
  margin: 0 auto 12px;
  border-radius: 50%;
  border: 3px solid var(--cream);
  object-fit: cover;
}
.site-foot .font-stamp { letter-spacing: .16em; font-size: 13px; margin: 0 0 8px; }
.site-foot .font-stencil { margin: 0 0 10px; letter-spacing: .08em; }
.fine { margin: 0; opacity: .7; font-size: 13px; }

/* ───────── RESPONSIVE ───────── */
@media (max-width: 980px) {
  .desk-links { display: none; }
  .burger { display: grid; place-items: center; }
  .hero__stage,
  .dossier__body,
  .dock,
  .herd__grid { grid-template-columns: 1fr; }
  .hero__copy { justify-self: stretch; }
  .peek__depth { height: 380px; max-width: 360px; margin: 0 auto; }
  .dossier,
  .cart-star,
  .wanted { transform: none; }
  .crate-line { grid-template-columns: 1fr 1fr; }
  .iso-crate,
  .iso-crate:nth-child(n) { transform: none; min-height: 0; }
}

@media (max-width: 560px) {
  .tape-nav { padding: 0 12px; }
  .tape-nav::before, .tape-nav::after { width: 8px; }
  .brand__copy b { font-size: 12px; }
  .buy-tab { display: none; }
  .hero { padding-inline: 16px; }
  .about, .howto, .herd { padding-inline: 16px; }
  .crate-line { grid-template-columns: 1fr; }
  .t-bull { -webkit-text-stroke-width: 2px; }
  .cta-row .btn-ghost:last-child { display: none; }
}
