:root {
  /* Typography compliance tokens: Inter** from smaller explanatory phrases readability needs stay sharp inside compositions. Space Grotesk** wordmark */
  --paper: #F7F0D8;
  --ink: #080808;
  --magenta: #FF2BD6;
  --cyan: #00E5FF;
  --orange: #FF7A00;
  --acid: #B6FF00;
  --display: "Space Grotesk", "Arial Black", sans-serif;
  --label: "Archivo", Impact, sans-serif;
  --utility: "Inter", Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--utility);
  overflow-x: hidden;
  cursor: crosshair;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 50;
  background-image:
    linear-gradient(90deg, rgba(8,8,8,.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(8,8,8,.04) 1px, transparent 1px);
  background-size: 19px 19px, 23px 23px;
  mix-blend-mode: multiply;
}

.noise-layer {
  position: fixed;
  inset: -20%;
  z-index: 49;
  pointer-events: none;
  opacity: .27;
  background:
    radial-gradient(circle at 12% 18%, var(--ink) 0 1px, transparent 1.5px),
    radial-gradient(circle at 71% 33%, var(--ink) 0 1px, transparent 1.7px),
    radial-gradient(circle at 42% 82%, var(--ink) 0 1.2px, transparent 1.8px),
    radial-gradient(circle at 88% 66%, var(--ink) 0 .9px, transparent 1.6px);
  background-size: 29px 31px, 37px 41px, 43px 47px, 53px 59px;
  animation: jitterNoise 1.2s steps(2, end) infinite;
}

@keyframes jitterNoise {
  0% { transform: translate(0,0); }
  35% { transform: translate(-17px, 11px); }
  70% { transform: translate(13px, -19px); }
  100% { transform: translate(0,0); }
}

.claim-stack { position: relative; }

.claim-wall {
  min-height: 100vh;
  position: relative;
  padding: clamp(1rem, 3vw, 2.5rem);
  overflow: hidden;
  border-bottom: 8px solid var(--ink);
  background:
    linear-gradient(135deg, transparent 0 47%, rgba(0,229,255,.17) 47.3% 49%, transparent 49.2% 100%),
    var(--paper);
}

.claim-wall::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 4px solid var(--ink);
  pointer-events: none;
}

.side-stamps {
  position: fixed;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 60;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.side-stamps a {
  font-family: var(--label);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--acid);
  border: 3px solid var(--ink);
  box-shadow: 4px 4px 0 var(--magenta);
  text-decoration: none;
  padding: 7px 9px;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}

.side-stamps a:hover,
.side-stamps a.is-active { transform: translate(3px, -3px); background: var(--cyan); box-shadow: -4px 4px 0 var(--orange); }

.stamp-label, .number-tab, .sticker-strip span, .orange-warning, .crooked-arrow, .z-arrow {
  font-family: var(--label);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .07em;
}

.top-left {
  position: absolute;
  top: clamp(1.2rem, 3vw, 2.2rem);
  left: clamp(1.2rem, 4vw, 4rem);
  background: var(--paper);
  border: 4px solid var(--ink);
  padding: .7rem .95rem;
  box-shadow: 7px 7px 0 var(--cyan);
  z-index: 5;
}

.domain-slab {
  position: absolute;
  left: clamp(1.6rem, 7vw, 7rem);
  top: 24vh;
  width: min(86vw, 1040px);
  background: var(--paper);
  border: 8px solid var(--ink);
  outline: 5px solid var(--magenta);
  box-shadow: 18px 18px 0 var(--acid), 31px 31px 0 var(--ink);
  padding: clamp(1rem, 4vw, 3rem);
  transform: rotate(-1deg);
  z-index: 4;
}

.domain-slab span {
  display: block;
  font-family: var(--display);
  font-size: clamp(5rem, 19vw, 17rem);
  font-weight: 700;
  line-height: .72;
  letter-spacing: -.09em;
}

.interactive-slab { transition: transform .22s ease, box-shadow .22s ease, filter .22s ease; }
.interactive-slab:hover { transform: translate(-7px, -8px) rotate(var(--tilt, -1deg)); filter: saturate(1.2); }

.punch-panel, .final-panel {
  position: absolute;
  right: clamp(1rem, 5vw, 5rem);
  bottom: clamp(1.5rem, 6vw, 5rem);
  width: min(470px, 82vw);
  background: var(--cyan);
  border: 6px solid var(--ink);
  box-shadow: -12px 12px 0 var(--magenta), -23px 23px 0 var(--ink);
  padding: 1.2rem;
  z-index: 6;
}

.punch-panel b, .final-panel h2 {
  display: block;
  font-family: var(--display);
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  line-height: .82;
  text-transform: uppercase;
}

.punch-panel p, .final-panel p, .slab p { font-size: clamp(1rem, 1.6vw, 1.35rem); font-weight: 800; line-height: 1.08; }

.bubble-cloud {
  position: absolute;
  width: 260px;
  height: 210px;
  right: clamp(1rem, 6vw, 6rem);
  top: clamp(1rem, 5vw, 4rem);
  z-index: 3;
}

.bubble-cloud i, .ring, .cursor-bubbles span {
  position: absolute;
  display: block;
  border-radius: 999px;
  border: 4px solid var(--ink);
}

.bubble-cloud i:nth-child(1) { width: 82px; height: 82px; background: var(--magenta); left: 2px; top: 49px; box-shadow: 8px 8px 0 var(--ink); }
.bubble-cloud i:nth-child(2) { width: 122px; height: 122px; background: var(--cyan); left: 68px; top: 0; }
.bubble-cloud i:nth-child(3) { width: 68px; height: 68px; background: var(--acid); left: 166px; top: 83px; box-shadow: -8px 8px 0 var(--orange); }
.bubble-cloud i:nth-child(4) { width: 42px; height: 42px; background: transparent; left: 42px; top: 144px; }
.bubble-cloud i:nth-child(5) { width: 52px; height: 52px; background: var(--paper); left: 205px; top: 22px; }
.bubble-cloud i:nth-child(6) { width: 33px; height: 33px; background: var(--orange); left: 134px; top: 154px; }

.z-arrow {
  position: absolute;
  top: 17vh;
  left: 39vw;
  padding: .55rem 1rem;
  border: 4px solid var(--ink);
  background: var(--orange);
  transform: rotate(7deg);
  box-shadow: 8px 8px 0 var(--ink);
  z-index: 7;
}

.tape { position: absolute; width: 150px; height: 36px; background: var(--ink); z-index: 8; opacity: .95; }
.tape-a { left: 6vw; bottom: 18vh; transform: rotate(13deg); }
.tape-b { right: 18vw; top: 21vh; transform: rotate(-18deg); }
.reg-cross { position: absolute; font-size: 5rem; font-family: var(--label); font-weight: 900; color: var(--magenta); right: 28vw; bottom: 16vh; }

.dispute-wall { background: linear-gradient(135deg, var(--paper) 0 49%, var(--acid) 49.2% 51%, var(--paper) 51.2%); }
.number-tab {
  position: absolute;
  right: clamp(1rem, 5vw, 5rem);
  top: clamp(1rem, 3vw, 2rem);
  font-size: clamp(4rem, 13vw, 12rem);
  line-height: .75;
  background: var(--magenta);
  border: 7px solid var(--ink);
  box-shadow: 13px 13px 0 var(--cyan);
  padding: .25rem .5rem;
  z-index: 4;
}

.slab {
  position: absolute;
  background: var(--paper);
  border: 6px solid var(--ink);
  box-shadow: 14px 14px 0 var(--magenta);
  padding: clamp(1rem, 3vw, 2rem);
  z-index: 4;
}

.slab-wide { left: 9vw; top: 20vh; width: min(640px, 78vw); --tilt: 1deg; transform: rotate(1deg); }
.slab h2 { margin: 0 0 1rem; font-family: var(--display); font-size: clamp(3rem, 7.5vw, 7.5rem); line-height: .82; letter-spacing: -.05em; }

.conflict-object {
  position: absolute;
  left: 43vw;
  top: 43vh;
  width: min(450px, 47vw);
  background: var(--cyan);
  border: 7px solid var(--ink);
  box-shadow: 16px 16px 0 var(--orange), 27px 27px 0 var(--ink);
  padding: 4rem 1.3rem 1.4rem;
  transform: rotate(-5deg);
  z-index: 5;
}

.browser-bar { position: absolute; left: 0; right: 0; top: 0; height: 38px; border-bottom: 6px solid var(--ink); background: var(--acid); }
.conflict-object strong { font-family: var(--display); font-size: clamp(3rem, 6vw, 6rem); letter-spacing: -.08em; display: block; }
.conflict-object em { font-family: var(--label); font-size: 1.05rem; font-style: normal; text-transform: uppercase; }
.bubble-speech { position: absolute; right: 7vw; bottom: 13vh; width: 290px; height: 230px; z-index: 6; }
.bubble-speech p { position: absolute; inset: 58px 30px auto; font-family: var(--label); font-weight: 900; text-transform: uppercase; line-height: .95; }
.crooked-arrow { position: absolute; left: 24vw; bottom: 9vh; background: var(--orange); border: 4px solid var(--ink); padding: .8rem 1rem; transform: rotate(-8deg); box-shadow: 8px 8px 0 var(--ink); }
.orange-warning { position: absolute; left: 4vw; bottom: 22vh; background: var(--orange); border: 4px solid var(--ink); padding: .6rem .9rem; transform: rotate(90deg); transform-origin: left top; }

.bubble-wall { background: radial-gradient(circle at 76% 20%, rgba(255,43,214,.45), transparent 18rem), var(--paper); }
.number-tab.hot { left: 6vw; right: auto; background: var(--orange); box-shadow: -13px 13px 0 var(--cyan); }
.sticker-strip { position: absolute; top: 7vh; right: 4vw; display: flex; gap: .7rem; transform: rotate(2deg); z-index: 7; }
.sticker-strip span { background: var(--paper); border: 4px solid var(--ink); padding: .55rem .8rem; box-shadow: 5px 5px 0 var(--acid); }
.bubble-field { position: absolute; inset: 15vh 4vw 5vh; border: 7px solid var(--ink); background: rgba(0,229,255,.18); box-shadow: 17px 17px 0 var(--ink); overflow: hidden; }
.big-bubble { position: absolute; left: 38%; top: 28%; width: clamp(190px, 27vw, 360px); height: clamp(190px, 27vw, 360px); border-radius: 50%; border: 7px solid var(--ink); background: radial-gradient(circle at 28% 22%, #F7F0D8 0 12%, #00E5FF 13% 45%, #FF2BD6 46% 74%, #B6FF00 75%); box-shadow: 15px 15px 0 var(--ink); font-family: var(--label); font-size: clamp(1.2rem, 3vw, 2.7rem); font-weight: 900; cursor: crosshair; }
.ring { animation: floatBubble 5s ease-in-out infinite; }
.r1 { width: 170px; height: 170px; left: 8%; top: 20%; background: var(--acid); }
.r2 { width: 92px; height: 92px; right: 18%; top: 17%; background: transparent; border-color: var(--cyan); box-shadow: 7px 7px 0 var(--ink); animation-delay: -.7s; }
.r3 { width: 130px; height: 130px; right: 7%; bottom: 12%; background: var(--magenta); animation-delay: -1.4s; }
.r4 { width: 72px; height: 72px; left: 25%; bottom: 14%; background: var(--orange); animation-delay: -2s; }
.r5 { width: 220px; height: 220px; right: 38%; bottom: -60px; background: transparent; border-color: var(--ink); animation-delay: -3s; }
@keyframes floatBubble { 0%,100%{ transform: translate(0,0) rotate(0deg); } 50%{ transform: translate(18px,-25px) rotate(7deg); } }
.bubble-copy { right: 7vw; bottom: 8vh; width: min(560px, 72vw); background: var(--acid); box-shadow: -14px 14px 0 var(--magenta); }
.x-mark { position: absolute; left: 7vw; bottom: 8vh; font-family: var(--display); font-size: clamp(8rem, 20vw, 18rem); color: var(--magenta); -webkit-text-stroke: 5px var(--ink); line-height: .7; }

.manifesto-wall { background: linear-gradient(90deg, var(--paper) 0 64%, var(--ink) 64% 66%, var(--acid) 66%); }
.manifesto-grid { position: absolute; left: 5vw; top: 18vh; width: min(900px, 78vw); display: grid; gap: 1.1rem; z-index: 4; }
.manifesto-line { font-family: var(--display); font-weight: 700; font-size: clamp(2.4rem, 6vw, 6.8rem); line-height: .86; border: 7px solid var(--ink); padding: .6rem .9rem; box-shadow: 13px 13px 0 var(--ink); letter-spacing: -.06em; }
.manifesto-line.acid { background: var(--acid); }
.manifesto-line.cyan { background: var(--cyan); margin-left: 10vw; --tilt: -2deg; }
.manifesto-line.magenta { background: var(--magenta); margin-left: 4vw; --tilt: 2deg; }
.seal { position: absolute; right: 7vw; top: 16vh; width: 260px; height: 260px; border-radius: 50%; border: 8px solid var(--ink); background: var(--orange); box-shadow: 13px 13px 0 var(--cyan), 24px 24px 0 var(--ink); display: grid; place-content: center; text-align: center; font-family: var(--label); font-size: 3.2rem; font-weight: 900; line-height: .8; transform: rotate(8deg); z-index: 7; }
.seal span { font-size: .8rem; letter-spacing: .08em; }
.manifesto-bubbles { top: auto; bottom: 6vh; right: 34vw; }
.final-panel { background: var(--magenta); }

.cursor-bubbles { position: fixed; left: 0; top: 0; width: 1px; height: 1px; pointer-events: none; z-index: 100; }
.cursor-bubbles span { width: 18px; height: 18px; background: var(--cyan); transform: translate(-50%, -50%); opacity: .88; transition: width .16s ease, height .16s ease, opacity .16s ease; }
.cursor-bubbles span:nth-child(2) { width: 12px; height: 12px; background: var(--magenta); }
.cursor-bubbles span:nth-child(3) { width: 22px; height: 22px; background: var(--acid); }
.cursor-bubbles span:nth-child(4) { width: 10px; height: 10px; background: var(--orange); }
.cursor-bubbles span:nth-child(5) { width: 28px; height: 28px; background: transparent; border-color: var(--cyan); }
.cursor-bubbles span:nth-child(6) { width: 8px; height: 8px; background: var(--paper); }
.cursor-bubbles.is-pop span { width: 35px; height: 35px; opacity: .25; box-shadow: 9px 9px 0 var(--ink); }

@media (max-width: 760px) {
  .side-stamps { display: none; }
  .claim-wall { min-height: 900px; padding: 1rem; }
  .domain-slab { left: 1.3rem; top: 25vh; width: calc(100vw - 3rem); }
  .bubble-cloud { transform: scale(.72); transform-origin: right top; }
  .slab-wide, .conflict-object, .bubble-copy { left: 1.5rem; right: auto; width: calc(100vw - 3rem); }
  .conflict-object { top: 52vh; }
  .bubble-speech { right: 1rem; bottom: 4vh; transform: scale(.78); transform-origin: right bottom; }
  .sticker-strip { flex-direction: column; right: 1rem; }
  .bubble-field { inset: 18vh 1rem 5vh; }
  .big-bubble { left: 19%; top: 27%; }
  .manifesto-grid { width: calc(100vw - 2.4rem); left: 1.2rem; }
  .manifesto-line.cyan, .manifesto-line.magenta { margin-left: 0; }
  .seal { right: 1.2rem; top: 67vh; width: 190px; height: 190px; font-size: 2.2rem; }
}
