* { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #f1ede4;
  --bg-alt: #e8e3d6;
  --ink: #0a0a0a;
  --ink-soft: #1a1a1a;
  --muted: #6b6b6b;
  --accent: #ff3b1f;
  --accent-2: #00ff88;
  --line: rgba(10,10,10,0.15);
}

html { scroll-behavior: smooth; scroll-padding-top: 100px; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  font-size: 15px;
  line-height: 1.5;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--ink); color: var(--bg); }
input { font-family: 'JetBrains Mono', monospace; }

.kicker {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--accent);
}

.quote-mark {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
}

.arrow { display: inline-block; }

/* ===== TOP TICKER ===== */
.ticker {
  background: var(--ink);
  color: var(--bg);
  padding: 10px 0;
  overflow: hidden;
  white-space: nowrap;
  border-bottom: 1px solid var(--ink);
  position: sticky;
  top: 0;
  z-index: 200;
}
.ticker-track {
  display: inline-block;
  animation: ticker 70s linear infinite;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
}
.ticker-track span { padding: 0 24px; }
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== NAV ===== */
.nav {
  position: sticky;
  top: 32px;
  z-index: 150;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px clamp(20px, 5vw, 60px);
  background: var(--bg);
  border-bottom: 2px solid var(--ink);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 16px;
  letter-spacing: 0.04em;
}
.nav-brand img { height: 34px; width: auto; border: 1px solid var(--ink); }
.nav-brand sup { font-size: 9px; }
.nav-cta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  background: var(--ink);
  color: var(--bg);
  padding: 12px 22px;
  border: 2px solid var(--ink);
  transition: background .15s, color .15s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.nav-cta:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: calc(100vh - 80px);
  display: flex;
  flex-direction: column;
  border-bottom: 2px solid var(--ink);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/banner.png');
  background-size: cover;
  background-position: center;
  opacity: 0.08;
  filter: grayscale(1) contrast(1.3);
  pointer-events: none;
}

.hero-tape {
  background: var(--accent);
  color: var(--ink);
  padding: 12px 0;
  overflow: hidden;
  white-space: nowrap;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  position: relative;
  z-index: 2;
}
.hero-tape-top {
  transform: rotate(-1.2deg);
  margin: -10px -30px 0;
  width: calc(100% + 60px);
}
.hero-tape-bottom {
  transform: rotate(1.2deg);
  margin: 0 -30px -10px;
  width: calc(100% + 60px);
}
.hero-tape-track {
  display: inline-block;
  animation: ticker 80s linear infinite;
  white-space: nowrap;
  will-change: transform;
}
.hero-tape span {
  display: inline-block;
  padding: 0 20px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
}
.hero-tape span:nth-child(even) { padding: 0 14px; }

.hero-inner {
  flex: 1;
  position: relative;
  z-index: 1;
  padding: 60px clamp(20px, 5vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.hero-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  border: 1.5px solid var(--ink);
  padding: 8px 14px;
  width: fit-content;
}
.meta-text { padding: 0 4px; }
.hero-meta .quote-mark { font-size: 16px; line-height: 0.8; }

.hero-title {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(72px, 16vw, 240px);
  line-height: 0.82;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin-left: -8px;
}
.hero-title .line { display: block; }
.hero-title .outline {
  -webkit-text-stroke: 2px var(--ink);
  color: transparent;
  margin-left: clamp(40px, 8vw, 120px);
}

.hero-grid-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0;
  border: 2px solid var(--ink);
  max-width: 900px;
}
.hero-grid-info > div {
  padding: 18px 20px;
  border-right: 2px solid var(--ink);
}
.hero-grid-info > div:last-child { border-right: none; }
.info-lbl {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-bottom: 8px;
}
.info-val {
  font-family: 'Archivo Black', sans-serif;
  font-size: 18px;
  letter-spacing: 0.02em;
}
.pulse-text {
  color: var(--accent);
  animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.16em;
  background: var(--ink);
  color: var(--bg);
  padding: 22px 36px;
  border: 2px solid var(--ink);
  width: fit-content;
  transition: background .15s, color .15s, transform .15s;
}
.hero-cta:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translate(-3px, -3px);
  box-shadow: 6px 6px 0 var(--ink);
}
.hero-cta .arrow { font-size: 22px; }

/* ===== HERO POLAROID PEEKS ===== */
.peek {
  position: absolute;
  z-index: 3;
  background: var(--bg);
  border: 2px solid var(--ink);
  padding: 10px 10px 30px;
  box-shadow: 6px 6px 0 var(--ink);
  width: clamp(110px, 14vw, 180px);
  pointer-events: none;
}
.peek img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  filter: grayscale(0.15) contrast(1.05);
}
.peek-tag {
  position: absolute;
  bottom: 8px;
  left: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--ink);
}
.peek-left {
  top: clamp(120px, 16vh, 180px);
  left: clamp(20px, 4vw, 60px);
  transform: rotate(-7deg);
}
.peek-right {
  bottom: clamp(120px, 16vh, 180px);
  right: clamp(20px, 4vw, 60px);
  transform: rotate(6deg);
}

/* ===== SNEAK PEEK REEL ===== */
.peek-reel {
  background: var(--ink);
  color: var(--bg);
  padding: 50px 0 60px;
  border-bottom: 2px solid var(--ink);
  overflow: hidden;
}
.peek-reel-label {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 0 clamp(20px, 5vw, 80px);
  margin-bottom: 30px;
}
.peek-reel-label .kicker { color: var(--accent); }
.peek-reel-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: rgba(241,237,228,0.55);
}
.peek-track-wrap {
  overflow: hidden;
  width: 100%;
}
.peek-track {
  display: flex;
  gap: 18px;
  animation: peekScroll 45s linear infinite;
  width: max-content;
  padding: 0 18px;
}
.peek-track:hover { animation-play-state: paused; }
@keyframes peekScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.peek-card {
  position: relative;
  flex-shrink: 0;
  width: clamp(180px, 22vw, 260px);
  background: var(--bg);
  border: 2px solid var(--bg);
  transition: transform .2s, border-color .2s;
}
.peek-card:hover { transform: translateY(-4px); border-color: var(--accent); }
.peek-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}
.peek-card span {
  position: absolute;
  bottom: 8px;
  left: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--bg);
  background: var(--ink);
  padding: 4px 8px;
}
.peek-reel-foot {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
  padding: 0 20px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: rgba(241,237,228,0.55);
}
.peek-reel-foot span:nth-child(even) { color: var(--accent); }

/* ===== ABOUT ===== */
.about {
  padding: clamp(80px, 12vw, 160px) clamp(20px, 5vw, 80px);
  background: var(--bg-alt);
  border-bottom: 2px solid var(--ink);
}
.about-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 60px;
}
.about-side { padding-top: 24px; }
.about-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(48px, 9vw, 132px);
  line-height: 0.88;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin-bottom: 50px;
}
.about-title .quote-mark { color: var(--accent); }
.about-body { max-width: 620px; }
.about-body p {
  font-size: 17px;
  line-height: 1.65;
  margin-bottom: 22px;
  color: var(--ink-soft);
}
.about-cred {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.about-cred span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  border: 1.5px solid var(--ink);
  padding: 9px 14px;
}

/* ===== WHITELIST ===== */
.whitelist {
  padding: clamp(80px, 12vw, 160px) clamp(20px, 5vw, 80px);
  background: var(--bg);
  position: relative;
}
.whitelist::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: clamp(80%, 90vw, 1340px);
  height: 1px;
  background: var(--ink);
}

.wl-header {
  max-width: 1100px;
  margin: 0 auto 60px;
}
.wl-header .kicker { margin-bottom: 24px; display: inline-block; }
.wl-headline {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(46px, 8vw, 120px);
  line-height: 0.86;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.wl-headline .outline {
  -webkit-text-stroke: 2px var(--ink);
  color: transparent;
}
.wl-intro {
  font-size: 17px;
  line-height: 1.6;
  max-width: 580px;
  color: var(--ink-soft);
}

.quest-board {
  max-width: 1100px;
  margin: 0 auto 80px;
  display: grid;
  gap: 0;
  border: 2px solid var(--ink);
}
.quest {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 28px clamp(20px, 3vw, 38px);
  border-bottom: 2px solid var(--ink);
  background: var(--bg);
  transition: background .2s;
}
.quest:last-child { border-bottom: none; }
.quest.completed { background: var(--bg-alt); }
.quest.completed .quest-done { display: none; }
.quest.completed .quest-go { display: none; }
.quest.completed .quest-check { display: inline-flex; }

.quest-num {
  font-family: 'Archivo Black', sans-serif;
  font-size: 72px;
  line-height: 0.9;
  letter-spacing: -0.04em;
  -webkit-text-stroke: 2px var(--ink);
  color: transparent;
}
.quest.completed .quest-num {
  color: var(--accent);
  -webkit-text-stroke: 0;
}
.quest-lbl {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-bottom: 8px;
}
.quest-body h3 {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(22px, 3vw, 32px);
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.quest-body p {
  font-size: 14px;
  color: var(--muted);
  max-width: 520px;
}
.quest-body strong { color: var(--ink); }

.quest-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: stretch;
  min-width: 140px;
}
.quest-go,
.quest-done {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  padding: 12px 18px;
  border: 2px solid var(--ink);
  cursor: pointer;
  text-align: center;
  transition: all .15s;
  background: var(--bg);
  color: var(--ink);
  font-family: 'JetBrains Mono', monospace;
}
.quest-go:hover { background: var(--ink); color: var(--bg); }
.quest-done { background: var(--ink); color: var(--bg); }
.quest-done:hover { background: var(--accent); border-color: var(--accent); }
.quest-check {
  display: none;
  align-items: center;
  justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  background: var(--accent-2);
  color: var(--ink);
  padding: 14px 18px;
  border: 2px solid var(--ink);
}

.quest-reply { grid-template-columns: 100px 1fr; }
.quest-reply .quest-actions { grid-column: 2; flex-direction: row; justify-content: flex-start; margin-top: 16px; }
.reply-input-wrap {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 520px;
}
.reply-input-wrap label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--muted);
}
#reply-url {
  background: var(--bg);
  border: 2px solid var(--ink);
  padding: 13px 16px;
  font-size: 13px;
  outline: none;
  color: var(--ink);
  width: 100%;
  font-family: 'JetBrains Mono', monospace;
}
#reply-url:focus { background: var(--bg-alt); }
.reply-status {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-top: 4px;
}
.reply-status.ok {
  color: var(--ink);
  background: var(--accent-2);
  padding: 5px 10px;
  width: fit-content;
}

/* SUBMIT BLOCK */
.submit-block {
  max-width: 700px;
  margin: 0 auto;
  padding: 50px clamp(24px, 5vw, 60px);
  border: 2px solid var(--ink);
  background: var(--bg-alt);
  position: relative;
}

/* LOCK OVERLAY */
.lock-overlay {
  position: absolute;
  inset: 0;
  z-index: 5;
  background: rgba(232,227,214,0.86);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
  padding: 30px;
}
.submit-block.locked .lock-overlay { display: flex; }
.submit-block.locked .wl-form { filter: blur(2px); opacity: 0.4; pointer-events: none; user-select: none; }
.lock-icon { font-size: 38px; }
.lock-text {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--ink);
  max-width: 360px;
  line-height: 1.5;
}
.lock-progress {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--bg);
  background: var(--ink);
  padding: 10px 18px;
}
.submit-block .kicker { margin-bottom: 18px; display: block; }
.submit-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(32px, 5vw, 56px);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 36px;
}
.wl-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.field label {
  display: flex;
  justify-content: space-between;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--ink);
  margin-bottom: 10px;
}
.req { color: var(--accent); }
.opt { color: var(--muted); }
.count { color: var(--muted); }
.field input {
  width: 100%;
  background: var(--bg);
  border: 2px solid var(--ink);
  color: var(--ink);
  font-size: 14px;
  padding: 15px 16px;
  outline: none;
  font-family: 'JetBrains Mono', monospace;
}
.field input:focus { background: #fff; }

/* Honeypot: visually + functionally hidden, but present in DOM for bots */
.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.cf-turnstile { margin-top: 4px; }

.error {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px;
  border: 2px solid var(--accent);
  background: rgba(255,59,31,0.08);
}

.btn-submit {
  cursor: pointer;
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
  background: var(--ink);
  color: var(--bg);
  border: 2px solid var(--ink);
  padding: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  transition: background .15s, color .15s, transform .15s;
  margin-top: 6px;
}
.btn-submit:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0 var(--ink);
}
.btn-submit .arrow { font-size: 18px; }

/* SUCCESS */
.wl-success {
  text-align: center;
  padding: 16px 0;
}

/* ===== GOAL CELEBRATION ANIMATION ===== */
.goal-stage {
  position: relative;
  height: 130px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}
.goal-net {
  position: absolute;
  top: 6px;
  width: 150px;
  height: 92px;
  border: 3px solid var(--ink);
  border-bottom: none;
  background:
    repeating-linear-gradient(90deg, transparent 0 13px, rgba(10,10,10,0.18) 13px 14px),
    repeating-linear-gradient(0deg, transparent 0 13px, rgba(10,10,10,0.18) 13px 14px);
  opacity: 0;
  transform: scaleY(0.4);
  transform-origin: top center;
  animation: netDrop 0.5s ease-out 0.15s both;
}
@keyframes netDrop {
  from { opacity: 0; transform: scaleY(0.4); }
  to   { opacity: 1; transform: scaleY(1); }
}
.goal-ball {
  position: absolute;
  bottom: 18px;
  font-size: 50px;
  line-height: 1;
  z-index: 2;
  animation: ballShoot 0.85s cubic-bezier(.25,.9,.3,1) both;
}
@keyframes ballShoot {
  0%   { transform: translate(-280px, 60px) rotate(0deg) scale(0.55); opacity: 0; }
  35%  { opacity: 1; }
  100% { transform: translate(0, 0) rotate(900deg) scale(1); opacity: 1; }
}
.goal-shout {
  position: relative;
  z-index: 3;
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(46px, 10vw, 84px);
  letter-spacing: -0.03em;
  color: var(--accent);
  -webkit-text-stroke: 2px var(--ink);
  text-transform: uppercase;
  opacity: 0;
  transform: scale(0.2);
  animation: goalSlam 0.55s cubic-bezier(.2,1.5,.35,1) 0.6s both;
}
@keyframes goalSlam {
  0%   { opacity: 0; transform: scale(0.2) rotate(-10deg); }
  55%  { opacity: 1; transform: scale(1.15) rotate(3deg); }
  100% { opacity: 1; transform: scale(1) rotate(-3deg); }
}
.confetti {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: visible;
  z-index: 4;
}
.confetti i {
  position: absolute;
  top: 45%;
  left: 50%;
  display: block;
  border-radius: 1px;
  opacity: 0;
  animation: confettiBurst 1.5s ease-in forwards;
}
@keyframes confettiBurst {
  0%   { opacity: 1; transform: translate(-50%, -50%) rotate(0deg); }
  100% { opacity: 0; transform: translate(calc(-50% + var(--dx)), calc(-50% + var(--dy))) rotate(var(--rot)); }
}
@media (prefers-reduced-motion: reduce) {
  .goal-ball, .goal-shout, .goal-net, .confetti i { animation: none; opacity: 1; }
}
.success-stamp {
  display: inline-block;
  font-family: 'Archivo Black', sans-serif;
  font-size: 22px;
  letter-spacing: 0.2em;
  color: var(--accent);
  border: 4px solid var(--accent);
  padding: 14px 28px;
  transform: rotate(-6deg);
  margin-bottom: 30px;
}
.wl-success h3 {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.wl-success p {
  font-size: 15px;
  color: var(--ink-soft);
  margin-bottom: 16px;
  line-height: 1.6;
}
.masked-wallet {
  font-family: 'JetBrains Mono', monospace !important;
  font-size: 13px !important;
  font-weight: 700;
  word-break: break-all;
  padding: 12px;
  border: 1.5px dashed var(--ink);
  display: inline-block;
}
.btn-outline {
  margin-top: 24px;
  cursor: pointer;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--ink);
  padding: 12px 22px;
  transition: background .15s, color .15s;
}
.btn-outline:hover { background: var(--ink); color: var(--bg); }

.hidden { display: none !important; }

/* ===== TOAST ===== */
.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translate(-50%, 140%);
  z-index: 999;
  display: flex;
  align-items: stretch;
  gap: 0;
  background: var(--ink);
  color: var(--bg);
  border: 2px solid var(--ink);
  box-shadow: 6px 6px 0 var(--accent);
  max-width: min(440px, calc(100vw - 32px));
  opacity: 0;
  transition: transform .35s cubic-bezier(.2,.9,.3,1), opacity .35s ease;
  pointer-events: none;
}
.toast.show {
  transform: translate(-50%, 0);
  opacity: 1;
}
.toast.error { box-shadow: 6px 6px 0 var(--accent); }
.toast.ok { box-shadow: 6px 6px 0 var(--accent-2); }
.toast-bar {
  width: 8px;
  flex-shrink: 0;
  background: var(--accent);
}
.toast.ok .toast-bar { background: var(--accent-2); }
.toast-body { padding: 16px 20px; }
.toast-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.toast-msg {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: rgba(241,237,228,0.8);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--ink);
  color: var(--bg);
  padding: clamp(40px, 6vw, 70px) clamp(20px, 5vw, 80px);
}
.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-brand > span:first-child {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 16px;
  letter-spacing: 0.04em;
}
.footer-brand sup { font-size: 9px; }
.footer-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: rgba(241,237,228,0.5);
}
.socials {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.social {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  padding: 10px 16px;
  border: 1.5px solid rgba(241,237,228,0.3);
  transition: all .15s;
}
.social:hover { background: var(--accent); border-color: var(--accent); color: var(--ink); }
.social-soon {
  cursor: not-allowed;
  opacity: 0.5;
  color: rgba(241,237,228,0.5);
  border-style: dashed;
}
.social-soon:hover { background: transparent; border-color: rgba(241,237,228,0.3); color: rgba(241,237,228,0.5); }
.copyright {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: rgba(241,237,228,0.5);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .about-inner { grid-template-columns: 1fr; gap: 30px; }
  .about-side { padding-top: 0; }
  .quest { grid-template-columns: 60px 1fr; gap: 18px; padding: 22px; }
  .quest-num { font-size: 48px; }
  .quest-actions { grid-column: 1 / -1; flex-direction: row; }
  .quest-reply .quest-actions { grid-column: 1 / -1; }
  .hero-title .outline { margin-left: 40px; }
  .hero-grid-info > div { border-right: none; border-bottom: 2px solid var(--ink); }
  .hero-grid-info > div:last-child { border-bottom: none; }
}
@media (max-width: 520px) {
  .nav { top: 28px; padding: 14px 18px; }
  .nav-brand span { font-size: 13px; }
  .nav-cta { padding: 10px 14px; font-size: 11px; }
  .peek { display: none; }
}
