/* ============ FindUs Makes Music — full stylesheet ============ */
@import url('https://fonts.googleapis.com/css2?family=Permanent+Marker&family=Bricolage+Grotesque:opsz,wght@12..96,400;12..96,600;12..96,800&family=DM+Mono:wght@400;500&family=Caveat:wght@500;700&display=swap');

* { box-sizing: border-box; }

:root {
  --teal: #0e7a82;
  --teal-deep: #094a51;
  --green: #a8e85e;
  --yellow: #ffd84d;
  --pink: #ff7a8a;
  --navy: #1a1f7a;
  --cream: #fef3d4;
  --paper: #f5ecd7;
  --ink: #0a0a0a;
}

body {
  margin: 0;
  background: #1a1a1a;
  color: var(--ink);
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* ========== ZINE / STICKER DIRECTION ========== */
.zine-root {
  background: #1a1a1a;
  color: var(--ink);
  padding: 40px 0;
  min-height: 100%;
}
.zine-paper {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  background:
    radial-gradient(ellipse 800px 400px at 30% 10%, rgba(255, 216, 77, 0.18), transparent 60%),
    radial-gradient(ellipse 600px 400px at 80% 60%, rgba(255, 122, 138, 0.12), transparent 60%),
    var(--paper);
  background-blend-mode: normal;
  padding: 60px clamp(20px, 4vw, 70px) 100px;
  border-radius: 4px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(0, 0, 0, 0.1);
  filter: contrast(1.02);
  overflow: hidden;
}
.zine-paper::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 25% 25%, rgba(0,0,0,0.04) 1px, transparent 1.5px),
    radial-gradient(circle at 75% 75%, rgba(0,0,0,0.03) 1px, transparent 1.5px);
  background-size: 4px 4px, 6px 6px;
  pointer-events: none;
  mix-blend-mode: multiply;
}

.zine-hero {
  position: relative;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: center;
  padding-bottom: 50px;
  border-bottom: 3px dashed var(--ink);
}
.zine-tape {
  position: absolute;
  width: 120px;
  height: 28px;
  background: rgba(255, 216, 77, 0.55);
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
.zine-tape-1 { top: -10px; left: 60px; transform: rotate(-8deg); }
.zine-tape-2 { top: -16px; right: 80px; transform: rotate(6deg); background: rgba(168, 232, 94, 0.55); }
.zine-logo {
  width: 100%;
  border-radius: 3px;
  box-shadow: 0 8px 0 #0a0a0a, 0 12px 30px rgba(0,0,0,0.3);
  transform: rotate(-2deg);
  transition: transform 0.3s;
  cursor: pointer;
}
.zine-logo:hover { transform: rotate(-1deg) scale(1.02); }
.zine-stamp {
  display: inline-block;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  padding: 4px 10px;
  border: 2px solid var(--ink);
  color: var(--ink);
  margin-bottom: 12px;
  transform: rotate(-2deg);
  background: var(--pink);
}
.zine-tagline {
  font-family: 'Permanent Marker', cursive;
  font-size: 56px;
  line-height: 0.95;
  margin: 0 0 18px;
  color: var(--ink);
  text-wrap: balance;
}
.zine-tagline span {
  color: var(--teal);
  font-style: italic;
}
.zine-bio {
  font-size: 17px;
  line-height: 1.5;
  margin: 0 0 24px;
  max-width: 560px;
}
.zine-cta-row { display: flex; gap: 10px; flex-wrap: wrap; }
.zine-cta {
  font-family: 'DM Mono', monospace;
  font-weight: 500;
  font-size: 13px;
  padding: 10px 16px;
  background: var(--green);
  color: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 3px 3px 0 var(--ink);
  transition: transform 0.15s, box-shadow 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.zine-cta:hover { transform: translate(-1px, -1px); box-shadow: 4px 4px 0 var(--ink); }
.zine-cta:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--ink); }
.zine-cta-alt { background: var(--pink); }
.zine-cta-alt2 { background: var(--yellow); }
.zine-cta-alt3 { background: var(--cream); }
.zine-cta-donate {
  background: var(--pink);
  color: var(--ink);
  font-size: 17px;
  padding: 12px 22px;
  border-width: 3px;
  box-shadow: 5px 5px 0 var(--ink);
  transform: rotate(-1.5deg);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  position: relative;
}
.zine-cta-donate::before {
  content: '';
  position: absolute;
  inset: -3px;
  border: 2px dashed var(--ink);
  border-radius: 6px;
  opacity: 0.35;
  pointer-events: none;
}
.zine-cta-donate:hover {
  transform: rotate(0deg) translate(-2px, -2px);
  box-shadow: 7px 7px 0 var(--ink);
  background: var(--yellow);
}
.zine-foot-donate {
  display: inline-flex;
  margin: 14px 0 8px;
  font-size: 18px;
}

.zine-arrow {
  display: block;
  width: 280px;
  height: 64px;
  margin: -8px 0 18px auto;
  transform: rotate(2deg);
}
.zine-arrow-how {
  margin: -4px auto 22px 0;
  transform: rotate(-2deg);
}

/* SECTIONS */
.zine-section-tag {
  font-family: 'Permanent Marker', cursive;
  font-size: 22px;
  display: inline-block;
  padding: 6px 14px;
  background: var(--ink);
  color: var(--green);
  margin-bottom: 24px;
  transform: rotate(-1.5deg);
}

.zine-how { padding: 22px 0; border-bottom: 3px dashed var(--ink); }
.zine-how-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.zine-how-tag { margin: 0; flex-shrink: 0; font-size: 16px; padding: 4px 10px; }
.zine-how-step {
  flex: 1 1 0;
  min-width: 160px;
  background: var(--cream);
  border: 2.5px solid var(--ink);
  border-radius: 10px;
  padding: 10px 12px;
  transform: rotate(-1.2deg);
  box-shadow: 4px 4px 0 var(--ink);
}
.zine-how-step-2 { transform: rotate(1.5deg); background: var(--green); }
.zine-how-step h3 {
  font-family: 'Permanent Marker', cursive;
  font-size: 22px;
  margin: 4px 0 2px;
  line-height: 1;
}
.zine-how-step p { font-size: 12.5px; line-height: 1.3; margin: 0; }
.zine-num {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  background: var(--ink);
  color: var(--yellow);
  display: inline-block;
  padding: 2px 6px;
  border-radius: 999px;
}

/* COMPILATIONS */
.zine-comps { padding: 60px 0; border-bottom: 3px dashed var(--ink); }
.zine-comp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.zine-comp {
  --tint: var(--green);
  --ink: #0a0a0a;
  position: relative;
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: 8px;
  padding: 22px;
  box-shadow: 8px 8px 0 var(--tint), 8px 8px 0 3px var(--ink);
  transform: rotate(var(--rot));
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.zine-comp:hover {
  transform: rotate(0deg) translateY(-4px);
  box-shadow: 10px 12px 0 var(--tint), 10px 12px 0 3px var(--ink);
}
.zine-comp.open {
  transform: rotate(0deg);
  background: #fff;
}
.zine-comp-corner {
  position: absolute;
  top: -14px;
  left: -14px;
  background: var(--tint);
  color: var(--ink);
  font-family: 'DM Mono', monospace;
  font-weight: 600;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--ink);
  font-size: 14px;
  box-shadow: 3px 3px 0 var(--ink);
}
.zine-comp-cover {
  width: 100%;
  aspect-ratio: 1;
  background: var(--tint);
  border: 3px solid var(--ink);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 14px;
}
.zine-comp-cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.zine-comp-placeholder {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: repeating-linear-gradient(45deg, var(--tint), var(--tint) 12px, color-mix(in srgb, var(--tint) 70%, white) 12px, color-mix(in srgb, var(--tint) 70%, white) 24px);
}
.zine-placeholder-stamp {
  font-family: 'Permanent Marker', cursive;
  font-size: 60px;
  color: var(--ink);
  border: 4px solid var(--ink);
  padding: 4px 18px;
  background: rgba(255,255,255,0.8);
  transform: rotate(-8deg);
}
.zine-placeholder-sub {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  margin-top: 12px;
  background: var(--ink);
  color: var(--tint);
  padding: 3px 8px;
}
.zine-comp-name {
  font-family: 'Permanent Marker', cursive;
  font-size: 28px;
  line-height: 1;
}
.zine-comp-name em {
  color: var(--tint);
  font-style: normal;
  text-shadow: 2px 2px 0 var(--ink);
  -webkit-text-stroke: 1px var(--ink);
}
.zine-comp-tag {
  font-family: 'Caveat', cursive;
  font-size: 22px;
  margin-top: 4px;
  color: #555;
}
.zine-comp-blurb { font-size: 14px; line-height: 1.5; margin: 12px 0 0; }
.zine-embed { margin-top: 16px; border: 3px solid var(--ink); border-radius: 6px; overflow: hidden; }
.zine-soon { margin-top: 14px; font-family: 'DM Mono', monospace; font-size: 12px; padding: 10px; background: var(--ink); color: var(--tint); border-radius: 4px; }

/* GEAR + ART */
.zine-gear-art {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  padding: 60px 0;
  border-bottom: 3px dashed var(--ink);
}
.zine-gear-intro { font-family: 'Caveat', cursive; font-size: 20px; margin: 0 0 16px; }
.zine-gear-list { display: flex; flex-wrap: wrap; gap: 8px; }
.zine-chip {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  padding: 6px 11px;
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 4px;
  transform: rotate(var(--rot));
  box-shadow: 2px 2px 0 var(--ink);
  cursor: default;
  transition: transform 0.2s;
}
.zine-chip:hover { transform: rotate(0deg) scale(1.05); background: var(--yellow); }

.zine-art-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.zine-art-tile {
  position: relative;
  border: 3px solid var(--ink);
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform 0.2s;
}
.zine-art-tile:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--ink); }
.zine-art-tile img { width: 100%; height: 100%; object-fit: cover; display: block; }
.zine-art-cap {
  position: absolute;
  bottom: 6px;
  left: 6px;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  background: var(--ink);
  color: var(--green);
  padding: 2px 6px;
  border-radius: 3px;
}
.zine-art-more {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--pink);
  border: 3px dashed var(--ink);
  text-decoration: none;
  color: var(--ink);
  font-family: 'Permanent Marker', cursive;
  font-size: 18px;
  text-align: center;
  padding: 20px;
  border-radius: 4px;
}
.zine-art-more span { font-size: 36px; line-height: 1; }
.zine-art-more:hover { background: var(--yellow); }

/* YT */
.zine-yt { padding: 60px 0; border-bottom: 3px dashed var(--ink); }
.zine-yt-frame {
  position: relative;
  border: 3px solid var(--ink);
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--ink);
  box-shadow: 8px 8px 0 var(--ink);
}
.zine-yt-frame iframe { width: 100%; height: 100%; border: 0; }

.zine-foot {
  text-align: center;
  padding: 50px 0 0;
}
.zine-foot-stamp {
  display: inline-block;
  font-family: 'Permanent Marker', cursive;
  font-size: 40px;
  color: var(--pink);
  border: 4px double var(--ink);
  padding: 6px 24px;
  transform: rotate(-3deg);
  background: #fff;
}
.zine-foot p { font-family: 'Caveat', cursive; font-size: 22px; margin: 14px 0 4px; }
.zine-foot-mini { font-size: 14px !important; font-family: 'DM Mono', monospace !important; color: #555; }

/* Stickers floating */
.zine-sticker {
  position: absolute;
  font-family: 'Permanent Marker', cursive;
  border: 3px solid var(--ink);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 18px;
  text-align: center;
  line-height: 1.05;
  box-shadow: 3px 3px 0 var(--ink);
  pointer-events: none;
  z-index: 3;
  white-space: nowrap;
  width: auto;
  max-width: 140px;
  will-change: transform;
}
.zine-sticker-1 { top: 200px; right: 8px; background: var(--yellow); transform: rotate(12deg); }
.zine-sticker-2 { top: 1100px; left: 8px; background: var(--green); transform: rotate(-15deg); padding: 12px 14px; }
.zine-sticker-3 { top: 2200px; right: 12px; background: var(--pink); transform: rotate(-10deg); }
.zine-sticker-4 { top: 3100px; left: 16px; background: var(--navy); color: var(--cream); transform: rotate(8deg); }
.zine-sticker-5 { top: 3900px; right: 8px; background: var(--cream); transform: rotate(-6deg); }
@media (max-width: 720px) {
  .zine-sticker { font-size: 14px; padding: 6px 12px; max-width: 110px; }
  .zine-sticker-1 { top: 130px; right: -4px; }
  .zine-sticker-2 { top: 880px; left: -4px; }
  .zine-sticker-3 { top: 1700px; right: -4px; }
  .zine-sticker-4 { top: 2500px; left: -4px; }
  .zine-sticker-5 { top: 3200px; right: -4px; }
}


/* ========== COMIC DIRECTION ========== */
.comic-root {
  position: relative;
  background: var(--cream);
  color: var(--ink);
  padding: 50px 60px 100px;
  min-height: 100%;
  overflow: hidden;
}
.comic-burst-bg {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  pointer-events: none;
}
.comic-burst-bg svg { width: 100%; height: 100%; }

.comic-hero {
  position: relative;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 60px;
}
.comic-hero-inner { display: contents; }
.comic-logo {
  width: 280px;
  border: 4px solid var(--ink);
  border-radius: 8px;
  box-shadow: 10px 10px 0 var(--navy);
  position: relative;
  z-index: 2;
}
.comic-bubble {
  position: relative;
  background: #fff;
  border: 4px solid var(--ink);
  border-radius: 24px;
  padding: 26px 30px;
  box-shadow: 8px 8px 0 var(--ink);
  z-index: 2;
}
.comic-bubble-tail {
  position: absolute;
  width: 30px;
  height: 30px;
  background: #fff;
  border-left: 4px solid var(--ink);
  border-bottom: 4px solid var(--ink);
  bottom: -16px;
  left: 60px;
  transform: rotate(-45deg);
}
.comic-bubble p {
  font-size: 19px;
  line-height: 1.45;
  margin: 0 0 12px;
  font-family: 'Bricolage Grotesque', sans-serif;
}
.comic-bubble strong { font-family: 'Permanent Marker', cursive; font-size: 28px; color: var(--pink); letter-spacing: 0.04em; }
.comic-bubble em { background: var(--yellow); padding: 0 6px; font-style: normal; }
.comic-bubble-foot { font-family: 'DM Mono', monospace; font-size: 12px; color: #555; }
.comic-pow {
  position: absolute;
  font-family: 'Permanent Marker', cursive;
  font-size: 38px;
  color: var(--ink);
  z-index: 1;
  width: 110px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.comic-pow::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--yellow);
  clip-path: polygon(50% 0, 60% 18%, 78% 8%, 75% 28%, 95% 25%, 80% 42%, 100% 50%, 80% 58%, 95% 75%, 75% 72%, 78% 92%, 60% 82%, 50% 100%, 40% 82%, 22% 92%, 25% 72%, 5% 75%, 20% 58%, 0 50%, 20% 42%, 5% 25%, 25% 28%, 22% 8%, 40% 18%);
  z-index: -1;
}
.comic-pow-1 { top: -20px; right: 200px; transform: rotate(-12deg); }
.comic-pow-1::before { background: var(--pink); }
.comic-pow-2 { bottom: -10px; right: 40px; transform: rotate(10deg); width: 90px; height: 90px; font-size: 28px; }

.comic-title-strip {
  font-family: 'Permanent Marker', cursive;
  font-size: 32px;
  text-align: center;
  background: var(--ink);
  color: var(--green);
  padding: 12px;
  margin: 0 -60px 30px;
  letter-spacing: 0.08em;
}
.comic-title-strip span { color: var(--yellow); margin: 0 12px; }

.comic-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}
.comic-tab {
  --tint: var(--green);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 18px;
  background: #fff;
  color: var(--ink);
  border: 3px solid var(--ink);
  border-radius: 12px;
  padding: 14px 16px;
  cursor: pointer;
  box-shadow: 4px 4px 0 var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.15s, box-shadow 0.15s;
}
.comic-tab:hover { transform: translate(-1px, -1px); box-shadow: 5px 5px 0 var(--ink); }
.comic-tab.on { background: var(--tint); transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--ink); }
.comic-tab-dot { width: 14px; height: 14px; border-radius: 50%; background: var(--tint); border: 2px solid var(--ink); }
.comic-tab.on .comic-tab-dot { background: #fff; }
.comic-tab em { font-style: normal; font-family: 'Permanent Marker', cursive; font-weight: 400; font-size: 22px; }

.comic-panel {
  --tint: var(--green);
  background: #fff;
  border: 4px solid var(--ink);
  border-radius: 16px;
  padding: 30px;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 40px;
  align-items: center;
  box-shadow: 10px 10px 0 var(--tint), 10px 10px 0 4px var(--ink);
  margin-bottom: 60px;
}
.comic-panel-art {
  position: relative;
  aspect-ratio: 1;
}
.comic-burst {
  position: absolute;
  inset: -10%;
  width: 120%;
  height: 120%;
  z-index: 0;
}
.comic-burst.small { inset: 0; width: 100%; height: 100%; }
.comic-cover {
  position: relative;
  z-index: 1;
  width: 86%;
  height: 86%;
  margin: 7%;
  object-fit: cover;
  border: 4px solid var(--ink);
  border-radius: 6px;
  box-shadow: 6px 6px 0 var(--ink);
}
.comic-soon-burst {
  position: relative;
  width: 100%;
  height: 100%;
}
.comic-soon-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  font-family: 'Permanent Marker', cursive;
  font-size: 52px;
  line-height: 1;
  text-align: center;
  color: var(--ink);
  text-shadow: 3px 3px 0 #fff;
}
.comic-caption {
  font-family: 'Caveat', cursive;
  font-size: 22px;
  color: #555;
  letter-spacing: 0.04em;
}
.comic-panel h2 {
  font-family: 'Permanent Marker', cursive;
  font-size: 60px;
  line-height: 1;
  margin: 6px 0 16px;
}
.comic-panel h2 span {
  color: var(--tint);
  -webkit-text-stroke: 2px var(--ink);
  text-shadow: 4px 4px 0 var(--ink);
}
.comic-panel p { font-size: 17px; line-height: 1.5; margin: 0 0 16px; }
.comic-embed { border: 3px solid var(--ink); border-radius: 8px; overflow: hidden; }
.comic-soon-pill {
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  background: var(--ink);
  color: var(--tint);
  padding: 10px 14px;
  border-radius: 999px;
  display: inline-block;
}

.comic-strip {
  background: var(--ink);
  color: var(--green);
  padding: 40px;
  border-radius: 16px;
  margin: 0 -40px 60px;
  box-shadow: 0 12px 0 var(--navy);
}
.comic-strip-tag { font-family: 'DM Mono', monospace; font-size: 13px; opacity: 0.7; margin-bottom: 16px; }
.comic-strip-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.comic-strip-cell {
  background: var(--paper);
  color: var(--ink);
  border-radius: 12px;
  padding: 20px;
  border: 3px solid #000;
  position: relative;
  cursor: default;
  transition: transform 0.2s;
}
.comic-strip-cell:hover { transform: translateY(-3px); }
.comic-strip-cell:nth-child(2) { background: var(--yellow); }
.comic-strip-cell:nth-child(3) { background: var(--pink); }
.comic-strip-cell:nth-child(4) { background: var(--green); }
.comic-strip-icon { font-size: 38px; line-height: 1; margin-bottom: 6px; }
.comic-strip-step { font-family: 'DM Mono', monospace; font-size: 12px; opacity: 0.6; }
.comic-strip-t { font-family: 'Permanent Marker', cursive; font-size: 28px; line-height: 1; margin: 4px 0 6px; }
.comic-strip-s { font-size: 14px; line-height: 1.3; }

.comic-gear-row { display: grid; grid-template-columns: 1.3fr 1fr; gap: 30px; margin-bottom: 60px; }
.comic-section-tag { font-family: 'DM Mono', monospace; font-size: 13px; color: var(--teal); margin-bottom: 14px; }
.comic-gear-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.comic-gear-chip {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  background: #fff;
  border: 2px solid var(--ink);
  padding: 6px 11px;
  border-radius: 4px;
  transition: all 0.2s;
}
.comic-gear-chip:hover { background: var(--yellow); transform: rotate(-2deg) scale(1.05); }
.comic-art-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.comic-art-cell { aspect-ratio: 1; border: 3px solid var(--ink); border-radius: 6px; overflow: hidden; box-shadow: 3px 3px 0 var(--ink); transition: transform 0.2s; }
.comic-art-cell:hover { transform: translate(-2px, -2px); box-shadow: 5px 5px 0 var(--ink); }
.comic-art-cell img { width: 100%; height: 100%; object-fit: cover; display: block; }

.comic-foot {
  position: relative;
  background: var(--teal);
  color: var(--paper);
  border-radius: 16px;
  padding: 50px;
  margin: 0 -30px;
  text-align: center;
  border: 4px solid var(--ink);
  box-shadow: 10px 10px 0 var(--ink);
  overflow: hidden;
}
.comic-foot .comic-burst {
  position: absolute;
  width: 200px;
  height: 200px;
  inset: auto auto -50px -50px;
  opacity: 0.3;
}
.comic-foot-line { font-family: 'Permanent Marker', cursive; font-size: 48px; }
.comic-foot-cheers { font-family: 'Caveat', cursive; font-size: 24px; margin: 4px 0 18px; }
.comic-foot-links { display: flex; justify-content: center; gap: 18px; flex-wrap: wrap; }
.comic-foot-links a {
  color: var(--paper);
  text-decoration: none;
  font-family: 'DM Mono', monospace;
  font-size: 14px;
  border-bottom: 2px dashed currentColor;
  padding-bottom: 2px;
}
.comic-foot-links a:hover { color: var(--yellow); }


/* ========== BUBBLE DIRECTION ========== */
.bub-root {
  position: relative;
  background: linear-gradient(180deg, #fff5e0 0%, #ffe9d8 50%, #f3d4ff 100%);
  color: var(--ink);
  padding: 60px 60px 120px;
  min-height: 100%;
  overflow: hidden;
}
.bub-blobs { position: absolute; inset: 0; pointer-events: none; }
.bub-blob { position: absolute; border-radius: 50%; filter: blur(50px); mix-blend-mode: multiply; opacity: 0.55; }
.bub-blob-1 { width: 500px; height: 500px; background: var(--pink); top: -100px; right: -100px; animation: bubFloat 18s ease-in-out infinite; }
.bub-blob-2 { width: 600px; height: 600px; background: var(--green); bottom: -200px; left: -200px; animation: bubFloat 24s ease-in-out infinite reverse; }
.bub-blob-3 { width: 400px; height: 400px; background: var(--yellow); top: 30%; left: 40%; animation: bubFloat 30s ease-in-out infinite; }
.bub-blob-4 { width: 450px; height: 450px; background: var(--teal); top: 60%; right: 20%; animation: bubFloat 22s ease-in-out infinite reverse; opacity: 0.35; }
@keyframes bubFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -30px) scale(1.05); }
  66% { transform: translate(-30px, 40px) scale(0.95); }
}

.bub-hero {
  position: relative;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 80px;
  z-index: 1;
}
.bub-logo {
  width: 100%;
  border-radius: 50%;
  box-shadow: 0 20px 60px rgba(26, 31, 122, 0.35);
  cursor: pointer;
  transition: transform 0.4s;
}
.bub-logo:hover { transform: rotate(8deg) scale(1.04); }
.bub-tagline {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 64px;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  color: var(--ink);
}
.bub-tagline span {
  background: linear-gradient(120deg, var(--pink), var(--teal));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}
.bub-bio { font-size: 17px; line-height: 1.55; max-width: 560px; margin: 0; opacity: 0.85; }

/* Bubbles */
.bub-comps { position: relative; z-index: 1; margin-bottom: 80px; }
.bub-comps-tag, .bub-flow-tag, .bub-card-tag {
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 22px;
  opacity: 0.7;
}
.bub-bubble-cluster {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.bub-bubble {
  --tint: var(--green);
  --ink: #0a0a0a;
  position: relative;
  aspect-ratio: 1;
  border-radius: 50%;
  border: none;
  background: radial-gradient(circle at 30% 30%, color-mix(in srgb, var(--tint) 100%, white 40%), var(--tint) 70%);
  box-shadow:
    inset 8px 8px 24px rgba(255, 255, 255, 0.5),
    inset -10px -10px 30px rgba(0, 0, 0, 0.15),
    0 20px 40px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 0 0 18%;
}
.bub-bubble:hover, .bub-bubble.hov {
  transform: translateY(-6px) scale(1.04);
  box-shadow:
    inset 8px 8px 24px rgba(255, 255, 255, 0.6),
    inset -10px -10px 30px rgba(0, 0, 0, 0.15),
    0 30px 60px rgba(0, 0, 0, 0.25);
}
.bub-bubble.op { transform: scale(0.95); }
.bub-bubble-cover {
  position: absolute;
  top: 14%;
  left: 14%;
  width: 72%;
  height: 56%;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.bub-bubble-soon {
  position: absolute;
  top: 22%;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 38px;
  color: var(--ink);
  letter-spacing: -0.02em;
  opacity: 0.6;
}
.bub-bubble-label {
  position: relative;
  text-align: center;
  z-index: 2;
}
.bub-bubble-label em {
  display: block;
  font-style: normal;
  font-family: 'Permanent Marker', cursive;
  font-size: 28px;
  color: var(--ink);
  line-height: 1;
}
.bub-bubble-label span {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  opacity: 0.65;
}

.bub-detail {
  --tint: var(--green);
  margin-top: 30px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  border: 1px solid var(--tint);
  border-radius: 24px;
  padding: 30px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 30px;
  align-items: center;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}
.bub-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.15);
  background: #fff;
  cursor: pointer;
  font-size: 14px;
}
.bub-detail-tag { font-family: 'Caveat', cursive; font-size: 22px; color: #666; }
.bub-detail h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 40px;
  line-height: 1;
  margin: 4px 0 14px;
  letter-spacing: -0.02em;
}
.bub-detail p { font-size: 16px; line-height: 1.55; margin: 0; }
.bub-soon-card {
  text-align: center;
  padding: 40px;
  background: var(--tint);
  border-radius: 16px;
  font-family: 'Permanent Marker', cursive;
  font-size: 22px;
  color: var(--ink);
}

/* Flow */
.bub-flow { position: relative; z-index: 1; margin-bottom: 80px; }
.bub-flow-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.bub-flow-step {
  flex: 1;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 28px 24px;
  border: 1px solid rgba(0, 0, 0, 0.08);
}
.bub-flow-num {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.15em;
  opacity: 0.5;
}
.bub-flow-step h4 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 32px;
  letter-spacing: -0.02em;
  margin: 4px 0 8px;
}
.bub-flow-step p { font-size: 15px; margin: 0; opacity: 0.75; line-height: 1.4; }
.bub-flow-arrow { font-size: 40px; color: var(--teal); transform: rotate(90deg); opacity: 0.5; }

/* Grid bottom */
.bub-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 30px;
  margin-bottom: 60px;
}
.bub-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 30px;
  border: 1px solid rgba(0, 0, 0, 0.08);
}
.bub-gear-list { display: flex; flex-wrap: wrap; gap: 8px; }
.bub-tag {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  padding: 6px 12px;
  border: 1px solid rgba(0,0,0,0.1);
  transition: all 0.2s;
}
.bub-tag:hover { background: var(--yellow); transform: translateY(-2px); }
.bub-art-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.bub-art-tile { aspect-ratio: 1; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1); transition: transform 0.3s; }
.bub-art-tile:hover { transform: scale(1.04); }
.bub-art-tile img { width: 100%; height: 100%; object-fit: cover; display: block; }
.bub-art-more {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--pink), var(--yellow));
  border-radius: 12px;
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  text-decoration: none;
  color: var(--ink);
  text-align: center;
  padding: 8px;
  font-weight: 500;
}

.bub-foot { text-align: center; position: relative; z-index: 1; }
.bub-foot-line { font-family: 'Permanent Marker', cursive; font-size: 32px; margin-bottom: 14px; }
.bub-foot-links { display: flex; justify-content: center; gap: 18px; flex-wrap: wrap; }
.bub-foot-links a {
  color: var(--ink);
  text-decoration: none;
  font-family: 'DM Mono', monospace;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.7);
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.1);
}
.bub-foot-links a:hover { background: var(--ink); color: var(--paper); }


/* ========== PLAYZONE ========== */
.pz-root {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  width: min(1100px, 96vw);
  font-family: 'DM Mono', monospace;
  pointer-events: none;
}
.pz-root > * { pointer-events: auto; }

.pz-handle {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 auto;
  padding: 8px 18px;
  background: var(--ink);
  color: var(--green);
  border: 2px solid var(--green);
  border-bottom: none;
  border-radius: 12px 12px 0 0;
  cursor: pointer;
  transform: translateY(0);
  transition: transform 0.2s;
}
.pz-root.open .pz-handle { background: var(--green); color: var(--ink); border-color: var(--ink); }
.pz-handle-icon { font-size: 14px; }
.pz-handle-text {
  font-family: 'Permanent Marker', cursive;
  font-size: 18px;
  letter-spacing: 0.04em;
}
.pz-handle-sub { font-size: 11px; opacity: 0.7; }

.pz-panel {
  background: #0e0e0e;
  color: #eee;
  border: 2px solid var(--green);
  border-bottom: none;
  border-radius: 14px 14px 0 0;
  padding: 14px 18px 18px;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pz-row { display: flex; }
.pz-top {
  gap: 18px;
  align-items: stretch;
  flex-wrap: wrap;
}
.pz-section-label {
  font-size: 9px;
  letter-spacing: 0.2em;
  opacity: 0.5;
  margin-bottom: 6px;
}
.pz-voice, .pz-fx, .pz-loop, .pz-meta {
  background: #161616;
  border-radius: 10px;
  padding: 10px 12px;
  border: 1px solid #222;
}
.pz-voice { flex: 0 0 auto; }
.pz-fx { flex: 1; min-width: 380px; }
.pz-loop { flex: 1; min-width: 280px; }
.pz-meta { flex: 0 0 auto; display: flex; flex-direction: column; gap: 6px; justify-content: center; }

.pz-voice-row { display: flex; gap: 4px; flex-wrap: wrap; }
.pz-pill {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  background: #0a0a0a;
  color: #aaa;
  border: 1px solid #333;
  border-radius: 6px;
  padding: 5px 9px;
  cursor: pointer;
  transition: all 0.15s;
}
.pz-pill:hover { border-color: var(--green); color: var(--green); }
.pz-pill.on { background: var(--green); color: var(--ink); border-color: var(--green); }
.pz-metro-pill.on { background: var(--pink); border-color: var(--pink); color: var(--ink); animation: pz-metro-glow 1.2s ease-in-out infinite alternate; }
@keyframes pz-metro-glow { from { box-shadow: 0 0 4px rgba(255, 122, 138, 0.4); } to { box-shadow: 0 0 12px rgba(255, 122, 138, 0.8); } }
.pz-dub.on { background: var(--pink); border-color: var(--pink); color: var(--ink); }

.pz-knobs { display: flex; gap: 14px; align-items: flex-start; flex-wrap: wrap; }
.pz-knob { display: flex; flex-direction: column; align-items: center; cursor: ns-resize; user-select: none; }
.pz-knob-label { font-size: 9px; opacity: 0.6; margin-top: 3px; letter-spacing: 0.05em; }

.pz-loopbar {
  position: relative;
  height: 22px;
  background: #0a0a0a;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  border: 1px solid #222;
}
.pz-beat { flex: 1; border-right: 1px solid #181818; }
.pz-beat:last-child { border-right: none; }
.pz-playhead {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--green);
  box-shadow: 0 0 6px var(--green);
}
.pz-loopbar.rec .pz-playhead { background: var(--pink); box-shadow: 0 0 8px var(--pink); }
.pz-recdot {
  position: absolute;
  top: 4px;
  right: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--pink);
  animation: pzPulse 1s ease-in-out infinite;
}
@keyframes pzPulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }

.pz-loop-row { display: flex; gap: 8px; align-items: center; margin-top: 8px; flex-wrap: wrap; }
.pz-rec {
  font-family: 'DM Mono', monospace;
  background: #0a0a0a;
  color: var(--pink);
  border: 1px solid var(--pink);
  border-radius: 6px;
  padding: 5px 10px;
  font-size: 11px;
  cursor: pointer;
}
.pz-rec.on { background: var(--pink); color: var(--ink); animation: pzPulse 1s infinite; }

.pz-bpm { display: flex; align-items: center; gap: 4px; font-size: 10px; }
.pz-bpm label { opacity: 0.5; }
.pz-bpm input, .pz-bpm select {
  width: 50px;
  background: #0a0a0a;
  color: #eee;
  border: 1px solid #333;
  border-radius: 4px;
  padding: 3px 6px;
  font-family: inherit;
  font-size: 11px;
}
.pz-sync-tip { font-size: 10px; opacity: 0.5; margin-top: 6px; line-height: 1.3; }

.pz-mute, .pz-oct button {
  font-family: 'DM Mono', monospace;
  background: #0a0a0a;
  color: #999;
  border: 1px solid #333;
  border-radius: 4px;
  padding: 4px 8px;
  font-size: 10px;
  cursor: pointer;
}
.pz-mute:hover, .pz-oct button:hover { color: var(--green); border-color: var(--green); }
.pz-oct { display: flex; align-items: center; gap: 4px; font-size: 10px; opacity: 0.8; }

/* Keyboard */
.pz-kb {
  position: relative;
  display: flex;
  height: 110px;
  background: #050505;
  border-radius: 8px;
  padding: 4px;
  border: 1px solid #222;
}
.pz-key {
  cursor: pointer;
  user-select: none;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 6px;
  transition: background 0.05s;
}
.pz-key-w {
  flex: 1;
  background: linear-gradient(180deg, #f5ecd7 0%, #e0d4b5 100%);
  border: 1px solid #1a1a1a;
  border-radius: 0 0 4px 4px;
  margin: 0 1px;
  color: #222;
}
.pz-key-w.on { background: linear-gradient(180deg, var(--green) 0%, color-mix(in srgb, var(--green) 70%, black) 100%); }
.pz-key-b {
  position: absolute;
  top: 4px;
  height: 65%;
  background: linear-gradient(180deg, #2a2a2a 0%, #050505 100%);
  border: 1px solid #000;
  border-radius: 0 0 3px 3px;
  z-index: 2;
  color: #888;
  box-shadow: inset 0 -3px 5px rgba(255,255,255,0.1);
}
.pz-key-b.on { background: linear-gradient(180deg, var(--pink) 0%, color-mix(in srgb, var(--pink) 60%, black) 100%); color: #000; }
.pz-keylabel { font-size: 9px; opacity: 0.6; text-transform: uppercase; pointer-events: none; }
.pz-notelabel { position: absolute; top: 6px; left: 6px; font-size: 8px; opacity: 0.4; pointer-events: none; }

/* Direction switcher (top of canvas) */
.fmm-switcher {
  position: fixed;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5000;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(168, 232, 94, 0.35);
  border-radius: 999px;
  padding: 5px;
  display: flex;
  gap: 4px;
  font-family: 'DM Mono', monospace;
}
.fmm-switcher button {
  background: transparent;
  border: none;
  color: #ccc;
  padding: 7px 14px;
  font-size: 12px;
  border-radius: 999px;
  cursor: pointer;
  font-family: inherit;
}
.fmm-switcher button.on { background: var(--green); color: var(--ink); }

@media (max-width: 800px) {
  .zine-paper, .comic-root, .bub-root { padding: 30px 20px 100px; }
  .zine-hero, .comic-hero, .bub-hero { grid-template-columns: 1fr; }
  .zine-tagline, .bub-tagline { font-size: 38px; }
  .zine-comp-grid, .bub-bubble-cluster, .comic-tabs, .comic-strip-row, .zine-how-grid { grid-template-columns: 1fr; }
  .zine-conn { display: none; }
  .pz-fx, .pz-loop { min-width: 0; }
}
