:root {
  --bg: #f0e0d8;
  --paper: #f8f8f8;
  --navy: #102030;
  --navy-2: #182030;
  --green: #588830;
  --orange: #f84800;
  --gold: #f8c000;
  --ink: #000;
  --muted: rgba(16,32,48,.70);
  --line: rgba(0,0,0,.22);
  --shadow: 10px 10px 0 rgba(0,0,0,.20);
  color-scheme: light;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: "Satoshi", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--navy);
  background:
    linear-gradient(90deg, rgba(16,32,48,.08) 1px, transparent 1px) 0 0 / 70px 70px,
    linear-gradient(180deg, rgba(248,72,0,.16) 0 8px, transparent 8px 160px) 0 0 / 100% 160px,
    radial-gradient(circle at 12% 10%, rgba(248,72,0,.22), transparent 26vw),
    radial-gradient(circle at 90% 16%, rgba(248,192,0,.28), transparent 22vw),
    var(--bg);
  overflow-x: hidden;
}
body::before,
.texture {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(0,0,0,.18) 1px, transparent 1px);
  background-size: 13px 13px;
  opacity: .20;
  mix-blend-mode: multiply;
}
body.bell .terminal-card { animation: hit .36s cubic-bezier(.2, 1.4, .4, 1); }
body.bell #fakePrice { color: var(--gold); }
@keyframes hit {
  0% { transform: rotate(-2deg) scale(1); }
  45% { transform: rotate(1deg) scale(1.025); }
  100% { transform: rotate(-2deg) scale(1); }
}

.reddit-rain {
  position: fixed;
  inset: -14vh 0 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
  opacity: .42;
  mix-blend-mode: multiply;
}
.reddit-rain span {
  position: absolute;
  top: -10vh;
  left: var(--x);
  min-width: 30px;
  min-height: 30px;
  display: inline-grid;
  place-items: center;
  padding: 0 7px;
  border: 3px solid var(--ink);
  background: rgba(248,248,248,.84);
  color: var(--navy);
  box-shadow: 4px 4px 0 rgba(0,0,0,.12);
  font-size: 13px;
  font-weight: 950;
  animation: fall var(--t, 16s) linear infinite;
  animation-delay: var(--d, 0s);
  transform: translateX(-50%) rotate(var(--r, 0deg));
}
.reddit-rain span:nth-child(3n) { background: var(--gold); }
.reddit-rain span:nth-child(4n) { background: var(--green); color: #000; }
.reddit-rain span:nth-child(5n) { color: var(--orange); }
.reddit-rain span:nth-child(1) { --x: 8%; --t: 13s; --d: -4s; --r: -12deg; }
.reddit-rain span:nth-child(2) { --x: 15%; --t: 18s; --d: -9s; --r: 8deg; }
.reddit-rain span:nth-child(3) { --x: 22%; --t: 15s; --d: -2s; --r: -4deg; }
.reddit-rain span:nth-child(4) { --x: 29%; --t: 20s; --d: -12s; --r: 16deg; }
.reddit-rain span:nth-child(5) { --x: 36%; --t: 16s; --d: -7s; --r: -9deg; }
.reddit-rain span:nth-child(6) { --x: 43%; --t: 19s; --d: -5s; --r: 11deg; }
.reddit-rain span:nth-child(7) { --x: 50%; --t: 14s; --d: -10s; --r: -14deg; }
.reddit-rain span:nth-child(8) { --x: 57%; --t: 21s; --d: -14s; --r: 7deg; }
.reddit-rain span:nth-child(9) { --x: 64%; --t: 17s; --d: -1s; --r: -6deg; }
.reddit-rain span:nth-child(10) { --x: 71%; --t: 22s; --d: -11s; --r: 12deg; }
.reddit-rain span:nth-child(11) { --x: 78%; --t: 15s; --d: -6s; --r: -10deg; }
.reddit-rain span:nth-child(12) { --x: 85%; --t: 20s; --d: -15s; --r: 9deg; }
.reddit-rain span:nth-child(13) { --x: 91%; --t: 16s; --d: -3s; --r: -3deg; }
.reddit-rain span:nth-child(14) { --x: 11%; --t: 23s; --d: -13s; --r: 15deg; }
.reddit-rain span:nth-child(15) { --x: 48%; --t: 18s; --d: -8s; --r: -11deg; }
.reddit-rain span:nth-child(16) { --x: 88%; --t: 14s; --d: -4s; --r: 6deg; }
@keyframes fall {
  0% { translate: 0 -12vh; opacity: 0; }
  8% { opacity: 1; }
  100% { translate: 0 128vh; opacity: .10; }
}

.skip {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 50;
  padding: 10px 14px;
  background: var(--gold);
  color: var(--ink);
  font-weight: 900;
}
.skip:focus { left: 12px; }
a { color: inherit; text-decoration: none; }
button, a, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
main, footer, .site-header { position: relative; z-index: 2; }

.site-header {
  position: sticky;
  top: 12px;
  width: min(1200px, calc(100% - 28px));
  margin: 12px auto 0;
  padding: 9px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  background: rgba(248,248,248,.90);
  border: 4px solid var(--ink);
  box-shadow: 6px 6px 0 rgba(0,0,0,.18);
  z-index: 30;
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 950; letter-spacing: -.05em; }
.brand img { display: block; border: 3px solid var(--ink); border-radius: 50%; background: var(--paper); }
.nav-links { display: flex; justify-content: center; gap: 4px; font-size: 13px; font-weight: 950; text-transform: uppercase; letter-spacing: .06em; }
.nav-links a, .nav-cta { min-height: 40px; display: inline-flex; align-items: center; justify-content: center; padding: 0 12px; }
.nav-links a:hover { background: var(--gold); box-shadow: inset 0 0 0 3px var(--ink); }
.nav-cta { background: var(--green); border: 3px solid var(--ink); color: #000; font-size: 13px; font-weight: 950; text-transform: uppercase; }

.hero, .bounties, .submit-dock, .character-drop, .ads-panel, .token-panel, .footer {
  width: min(1200px, calc(100% - 32px));
  margin: 28px auto;
}
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
  border: 5px solid var(--ink);
  background: var(--paper);
  box-shadow: 16px 16px 0 rgba(0,0,0,.16);
}
.hero > * { min-width: 0; }
.hero-copy {
  padding: clamp(24px, 5vw, 62px);
  display: grid;
  align-content: center;
  border-right: 5px solid var(--ink);
  background: linear-gradient(90deg, rgba(16,32,48,.08) 1px, transparent 1px) 0 0 / 34px 34px, var(--paper);
}
.eyebrow { margin: 0 0 12px; color: var(--orange); font-size: 12px; font-weight: 950; letter-spacing: .18em; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 760px;
  margin: 0 0 14px;
  color: var(--navy);
  font-size: clamp(58px, 8vw, 122px);
  line-height: .80;
  letter-spacing: -.095em;
  text-wrap: balance;
}
.lede {
  max-width: 680px;
  margin-bottom: 18px;
  color: rgba(16,32,48,.82);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 850;
  line-height: 1.30;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 16px; }
.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 4px solid var(--ink);
  color: #000;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .02em;
  cursor: pointer;
}
.primary { background: var(--orange); box-shadow: 6px 6px 0 rgba(0,0,0,.22); }
.secondary { background: var(--gold); box-shadow: 6px 6px 0 rgba(88,136,48,.28); }
.status-row { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }
.status-row span {
  min-height: 48px;
  display: grid;
  place-items: center;
  border: 3px solid var(--ink);
  background: var(--navy);
  color: white;
  font-size: 12px;
  font-weight: 950;
  text-align: center;
  text-transform: uppercase;
}
.status-row span:nth-child(2) { background: var(--green); color: #000; }
.status-row span:nth-child(3) { background: var(--paper); color: #000; }
.hero-card {
  padding: clamp(18px, 3vw, 34px);
  display: grid;
  gap: 16px;
  align-content: center;
  background: linear-gradient(180deg, var(--orange) 0 52%, var(--navy) 52% 100%);
}
.hero-mascot { width: 100%; display: block; border: 5px solid var(--ink); background: var(--paper); box-shadow: var(--shadow); transform: rotate(1.2deg); }
.boost-card {
  padding: 18px;
  border: 5px solid var(--ink);
  background: var(--paper);
  box-shadow: var(--shadow);
  transform: rotate(-2deg);
}
.boost-card span { display: block; color: var(--orange); font-size: 12px; font-weight: 950; letter-spacing: .14em; text-transform: uppercase; }
.boost-card strong { display: block; margin: 6px 0 12px; color: var(--green); font-size: 44px; font-weight: 950; letter-spacing: -.08em; }
.boost-card button { min-height: 42px; padding: 0 14px; border: 3px solid var(--ink); background: var(--gold); color: #000; font-size: 13px; font-weight: 950; cursor: pointer; }

.ticker { width: 100%; overflow: hidden; contain: layout paint; border-block: 4px solid var(--ink); background: var(--navy); color: var(--gold); transform: rotate(-1deg); }
.ticker div { width: max-content; display: flex; gap: 30px; padding: 13px 0; animation: ticker 28s linear infinite; }
.ticker span { font-size: 13px; font-weight: 950; letter-spacing: .16em; white-space: nowrap; }
@keyframes ticker { to { transform: translateX(-50%); } }

.section-head, .submit-copy, .ads-panel, .token-panel { border: 5px solid var(--ink); background: var(--paper); box-shadow: var(--shadow); }
.section-head { padding: clamp(20px, 3vw, 34px); border-bottom: 0; }
.section-head h2, .submit-copy h2, .ads-panel h2, .token-panel h2 {
  margin-bottom: 0;
  color: var(--navy);
  font-size: clamp(42px, 5vw, 78px);
  line-height: .86;
  letter-spacing: -.08em;
}
.bounty-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0; border: 5px solid var(--ink); box-shadow: var(--shadow); }
.bounty-card {
  min-height: 250px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
  border: 0;
  border-right: 5px solid var(--ink);
  background: var(--gold);
  color: #000;
  cursor: pointer;
}
.bounty-card:last-child { border-right: 0; }
.bounty-card:nth-child(2) { background: var(--green); }
.bounty-card:nth-child(3) { background: var(--orange); }
.bounty-card:nth-child(4) { background: var(--navy); color: white; }
.bounty-card span { font-size: 40px; font-weight: 950; letter-spacing: -.08em; }
.bounty-card strong { display: block; font-size: clamp(28px, 3.5vw, 44px); line-height: .88; letter-spacing: -.07em; overflow-wrap: anywhere; }
.bounty-card em { font-style: normal; font-weight: 850; line-height: 1.28; opacity: .78; overflow-wrap: anywhere; }
.bounty-card.is-active { outline: 7px solid var(--ink); outline-offset: -13px; }

.submit-dock {
  display: grid;
  grid-template-columns: .55fr 1fr;
  gap: 0;
  border: 5px solid var(--ink);
  background: var(--paper);
  box-shadow: 16px 16px 0 rgba(0,0,0,.16);
}
.submit-copy { padding: clamp(22px, 4vw, 44px); border: 0; border-right: 5px solid var(--ink); box-shadow: none; background: var(--orange); color: #000; }
.submit-copy .eyebrow { color: #000; }
.submit-copy p { margin: 16px 0 0; max-width: 460px; color: rgba(0,0,0,.74); font-size: 18px; font-weight: 850; line-height: 1.35; }
.post-builder { padding: clamp(20px, 4vw, 42px); display: grid; gap: 14px; }
.post-builder label { display: grid; gap: 7px; color: var(--navy); font-size: 12px; font-weight: 950; letter-spacing: .12em; text-transform: uppercase; }
.post-builder input, .post-builder select, .post-builder textarea {
  width: 100%;
  border: 4px solid var(--ink);
  background: var(--paper);
  color: var(--navy);
  padding: 13px 14px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
  outline: none;
}
.post-builder textarea { resize: vertical; min-height: 160px; line-height: 1.35; }
.builder-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.builder-note { margin: 0; color: var(--muted); font-size: 14px; font-weight: 800; }

.character-drop { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.character-drop img { width: 100%; min-height: 300px; display: block; object-fit: cover; border: 5px solid var(--ink); box-shadow: var(--shadow); background: var(--paper); }
.character-drop img:nth-child(2) { transform: translateY(18px); }

.ads-panel { padding: clamp(24px, 4vw, 50px); background: var(--navy); color: white; }
.ads-panel .eyebrow { color: var(--gold); }
.ads-panel h2 { color: white; max-width: 820px; }
.loop-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; margin-top: 22px; }
.loop-grid span { min-height: 112px; padding: 16px; display: flex; align-items: end; border: 4px solid var(--ink); background: var(--paper); color: #000; font-weight: 950; line-height: 1.1; overflow-wrap: anywhere; }
.loop-grid span:nth-child(2) { background: var(--gold); }
.loop-grid span:nth-child(3) { background: var(--green); }
.loop-grid span:nth-child(4) { background: var(--orange); }

.token-panel { padding: clamp(22px, 4vw, 44px); display: grid; grid-template-columns: .58fr 1fr; gap: 18px; align-items: center; }
.token-panel p { color: var(--muted); font-size: 17px; font-weight: 850; line-height: 1.35; }
.token-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.token-grid article { min-height: 130px; min-width: 0; padding: 16px; display: flex; flex-direction: column; justify-content: space-between; border: 4px solid var(--ink); background: var(--paper); overflow: hidden; }
.token-grid article:nth-child(1) { background: var(--orange); }
.token-grid article:nth-child(2) { background: var(--gold); }
.token-grid article:nth-child(3) { background: var(--green); }
.token-grid span { font-size: 12px; font-weight: 950; letter-spacing: .16em; text-transform: uppercase; }
.token-grid strong { font-size: clamp(22px, 2.45vw, 34px); line-height: .92; letter-spacing: -.07em; overflow-wrap: anywhere; word-break: break-word; }
.token-grid article:nth-child(3) strong { font-size: clamp(18px, 2.05vw, 29px); letter-spacing: -.055em; }

.footer { margin-bottom: 34px; padding: 18px 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; border-top: 5px solid var(--ink); color: var(--navy); }
.footer p { margin: 0; font-size: 14px; font-weight: 850; }
.footer > a:last-child { color: var(--orange); font-weight: 950; }

@media (max-width: 1000px) {
  .nav-links { display: none; }
  .hero, .submit-dock, .token-panel { grid-template-columns: 1fr; }
  .hero-copy, .submit-copy { border-right: 0; border-bottom: 5px solid var(--ink); }
  .bounty-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .bounty-card:nth-child(2) { border-right: 0; }
  .bounty-card:nth-child(1), .bounty-card:nth-child(2) { border-bottom: 5px solid var(--ink); }
  .loop-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .site-header { grid-template-columns: auto 1fr; }
  .brand span { max-width: 132px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .nav-cta { justify-self: end; padding: 0 10px; font-size: 11px; }
  .reddit-rain { opacity: .28; }
  .hero, .bounties, .submit-dock, .character-drop, .ads-panel, .token-panel, .footer { width: min(100% - 24px, 1200px); margin-block: 22px; }
  .hero-copy, .hero-card, .section-head, .submit-copy, .post-builder, .ads-panel, .token-panel { padding: 20px; }
  h1 { font-size: clamp(54px, 18vw, 76px); }
  .lede { font-size: 17px; }
  .hero-actions, .builder-actions, .status-row, .bounty-grid, .loop-grid, .token-grid, .character-drop { grid-template-columns: 1fr; }
  .hero-actions, .builder-actions { display: grid; }
  .button { width: 100%; }
  .status-row span { min-height: 42px; }
  .bounty-card { min-height: 190px; border-right: 0; border-bottom: 5px solid var(--ink); }
  .bounty-card:last-child { border-bottom: 0; }
  .character-drop img, .character-drop img:nth-child(2) { min-height: 230px; transform: none; }
  .loop-grid span { min-height: 92px; }
  .footer { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
  .reddit-rain { display: none; }
}
