:root {
  --lime: #cdff00;
  --ink: #11110f;
  --paper: #f8f4e9;
  --soft: #eae4d6;
  --white: #fffdf5;
  --line: 3px solid var(--ink);
  --shadow: 7px 7px 0 var(--ink);
  --content: min(1180px, calc(100vw - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Comic Sans MS", "Chalkboard SE", "Bradley Hand", cursive;
  font-size: 17px;
  line-height: 1.55;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: .1;
  background-image: radial-gradient(#111 0.6px, transparent 0.6px);
  background-size: 5px 5px;
  mix-blend-mode: multiply;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
::selection { color: var(--ink); background: var(--lime); }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--lime);
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  width: var(--content);
  min-height: 90px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  position: relative;
  z-index: 20;
}

.brand, .footer-brand { display: inline-flex; align-items: center; gap: 12px; width: fit-content; }
.brand-mark {
  width: 54px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 47% 53% 42% 58% / 57% 42% 58% 43%;
  background: var(--lime);
  transform: rotate(-3deg);
}
.brand-mark img { width: 100%; height: 100%; object-fit: cover; }
.brand-copy { font-size: 14px; line-height: 1.05; letter-spacing: -.02em; text-transform: uppercase; }
.brand-copy b { font-size: 17px; }

.nav-links { display: flex; align-items: center; gap: 30px; font-size: 14px; font-weight: 700; }
.nav-links a, .footer-links a, .text-link { position: relative; }
.nav-links a::after, .footer-links a::after, .text-link::after {
  content: "";
  position: absolute;
  height: 3px;
  left: 0;
  right: 100%;
  bottom: -5px;
  background: var(--lime);
  transition: right .25s ease;
}
.nav-links a:hover::after, .nav-links a:focus-visible::after,
.footer-links a:hover::after, .footer-links a:focus-visible::after,
.text-link:hover::after, .text-link:focus-visible::after { right: 0; }

.mini-button {
  justify-self: end;
  padding: 9px 18px;
  border: 2px solid var(--ink);
  border-radius: 50% 43% 53% 45%;
  background: var(--lime);
  font-size: 14px;
  font-weight: 800;
  box-shadow: 3px 3px 0 var(--ink);
  transition: transform .2s, box-shadow .2s;
}
.mini-button:hover { transform: translate(2px, 2px) rotate(-1deg); box-shadow: 1px 1px 0 var(--ink); }

.hero {
  width: var(--content);
  min-height: calc(100vh - 90px);
  margin: 0 auto;
  padding: 52px 0 80px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}

.eyebrow { margin: 0 0 16px; text-transform: uppercase; font-size: 13px; font-weight: 800; letter-spacing: .08em; }
.eyebrow span { display: inline-block; width: 32px; height: 4px; margin-right: 8px; background: var(--lime); border: 1px solid var(--ink); transform: rotate(-3deg); vertical-align: middle; }
h1, h2, h3, p { text-wrap: balance; }
h1, h2, h3 { line-height: 1.03; letter-spacing: -.045em; }
h1 { max-width: 680px; margin: 0; font-size: clamp(3.2rem, 6.4vw, 5.3rem); }
h2 { margin: 0 0 24px; font-size: clamp(2.35rem, 4.4vw, 4rem); }
h3 { margin: 0; font-size: 1.5rem; }
.hero-script {
  width: fit-content;
  margin: 10px 0 22px;
  padding: 3px 12px 5px;
  background: var(--lime);
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  font-weight: 800;
  line-height: 1.1;
  transform: rotate(-1.4deg);
}
.hero-intro { max-width: 580px; margin: 0 0 28px; font-family: Arial, Helvetica, sans-serif; font-size: 16px; }
.hero-actions, .join-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.comic-button {
  min-height: 49px;
  padding: 12px 19px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: var(--line);
  font-size: 14px;
  font-weight: 800;
  box-shadow: 5px 5px 0 var(--ink);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.comic-button--dark { color: var(--paper); background: var(--ink); }
.comic-button--light { background: var(--white); }
.comic-button:hover, .comic-button:focus-visible { transform: translate(3px, 3px) rotate(-1deg); box-shadow: 2px 2px 0 var(--ink); }
.comic-button--dark:hover { color: var(--ink); background: var(--lime); }

.contract-strip {
  max-width: 550px;
  margin-top: 24px;
  padding: 8px 9px 8px 14px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  border: 2px dashed var(--ink);
  background: rgba(255,255,255,.38);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  transform: rotate(.3deg);
}
.contract-strip > span { font-family: "Comic Sans MS", cursive; font-weight: 800; }
.contract-strip code { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.contract-strip button {
  min-width: 65px;
  padding: 7px 10px;
  border: 2px solid var(--ink);
  background: var(--lime);
  cursor: pointer;
  font-weight: 700;
}

.hero-visual { position: relative; transform-style: preserve-3d; transition: transform .2s ease-out; }
.comic-frame {
  margin: 0;
  position: relative;
  border: var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.comic-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border: 8px solid rgba(255,255,255,.28);
  mix-blend-mode: soft-light;
}
.comic-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-frame { transform: rotate(1.8deg); border-radius: 2% 1% 3% 1%; }
.hero-frame img { aspect-ratio: 1.28; }
.hero-frame figcaption, .story-frame figcaption {
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 2;
  padding: 7px 12px;
  border: 2px solid var(--ink);
  background: var(--white);
  font-size: 13px;
  font-weight: 800;
  transform: rotate(-1deg);
}
.doodle { position: absolute; z-index: 3; font-weight: 900; }
.doodle--one { top: -35px; right: 14%; color: var(--lime); font-size: 56px; -webkit-text-stroke: 2px var(--ink); transform: rotate(13deg); }
.doodle--two { left: -26px; bottom: 12%; padding: 9px 12px; border: 2px solid var(--ink); border-radius: 50%; background: var(--lime); font-size: 15px; transform: rotate(-12deg); }

.ticker { overflow: hidden; border-top: var(--line); border-bottom: var(--line); background: var(--lime); transform: rotate(-.4deg) scale(1.01); }
.ticker-track { width: max-content; display: flex; animation: ticker 24s linear infinite; }
.ticker span { padding: 10px 0; font-size: 15px; font-weight: 900; white-space: nowrap; }

.section { width: var(--content); margin: 0 auto; padding: 130px 0; }
.story { display: grid; grid-template-columns: 70px .8fr 1.2fr; gap: clamp(28px, 5vw, 70px); align-items: center; }
.section-number { align-self: start; color: transparent; font-size: 64px; line-height: 1; -webkit-text-stroke: 2px var(--ink); transform: rotate(-90deg); }
.story-copy > p:not(.eyebrow), .token-copy > p:not(.eyebrow), .path-heading > p:not(.eyebrow), .join-copy > p:not(.eyebrow) { font-family: Arial, Helvetica, sans-serif; font-size: 16px; }
.story-frame { transform: rotate(-1deg); border-radius: 1% 3% 1% 2%; }
.story-frame img { aspect-ratio: 1.27; }
.scribble-list { margin: 30px 0 0; padding: 0; list-style: none; }
.scribble-list li { position: relative; padding: 11px 0 11px 27px; border-bottom: 2px dashed rgba(17,17,15,.35); font-size: 14px; }
.scribble-list li::before { content: "✓"; position: absolute; left: 0; top: 8px; color: var(--ink); font-size: 20px; font-weight: 900; transform: rotate(-10deg); }

.token-section {
  width: 100%;
  max-width: none;
  padding-left: max(24px, calc((100vw - 1180px) / 2));
  padding-right: max(24px, calc((100vw - 1180px) / 2));
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  gap: clamp(45px, 7vw, 100px);
  background: var(--lime);
  border-top: var(--line);
  border-bottom: var(--line);
}
.token-art { position: relative; }
.token-frame { transform: rotate(1.5deg); box-shadow: 10px 10px 0 var(--ink); }
.token-frame img { aspect-ratio: 1.32; }
.sticker {
  position: absolute;
  right: -23px;
  bottom: -30px;
  width: 110px;
  height: 110px;
  display: grid;
  place-items: center;
  border: var(--line);
  border-radius: 50%;
  background: var(--ink);
  color: var(--lime);
  text-align: center;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.05;
  transform: rotate(-9deg);
}
.token-copy { max-width: 480px; }
.token-card { margin: 30px 0; border: var(--line); background: var(--paper); box-shadow: 6px 6px 0 var(--ink); transform: rotate(-.7deg); }
.token-card div { padding: 13px 16px; display: flex; justify-content: space-between; gap: 18px; border-bottom: 2px solid var(--ink); font-size: 13px; }
.token-card div:last-child { border-bottom: 0; }
.token-card span { font-family: Arial, Helvetica, sans-serif; color: #59584f; }
.token-card strong { text-align: right; }
.text-link { display: inline-block; font-size: 14px; font-weight: 800; }
.text-link::after { background: var(--ink); }

.path-section { padding-bottom: 150px; }
.path-heading { max-width: 720px; margin: 0 auto 55px; text-align: center; }
.path-heading .eyebrow { display: flex; align-items: center; justify-content: center; }
.map-frame { max-width: 1050px; margin: 0 auto; transform: rotate(-.5deg); }
.map-frame img { aspect-ratio: 1.5; }
.milestones { margin-top: -8px; position: relative; z-index: 2; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.milestone { padding: 22px; border: var(--line); background: var(--white); box-shadow: 5px 5px 0 var(--ink); }
.milestone:nth-child(1) { transform: rotate(-1.5deg); }
.milestone:nth-child(2) { transform: translateY(14px) rotate(1deg); }
.milestone:nth-child(3) { transform: rotate(-.8deg); }
.milestone > span { display: inline-grid; place-items: center; width: 36px; height: 36px; margin-bottom: 13px; border: 2px solid var(--ink); border-radius: 50%; background: var(--lime); font-size: 13px; font-weight: 900; }
.milestone p { margin-bottom: 0; font-family: Arial, Helvetica, sans-serif; font-size: 14px; }

.join-section {
  min-height: 680px;
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  border-top: var(--line);
  background: var(--ink);
  color: var(--paper);
}
.join-visual { position: absolute; inset: 0; margin: 0; opacity: .68; }
.join-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(17,17,15,.2) 15%, rgba(17,17,15,.15) 45%, rgba(17,17,15,.94) 87%); }
.join-visual img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.9) contrast(1.04); }
.join-copy { width: min(520px, calc(100% - 48px)); margin: 0 max(24px, calc((100vw - 1180px) / 2)) 75px auto; position: relative; z-index: 2; }
.join-copy .eyebrow span { border-color: var(--paper); }
.join-copy > p:not(.eyebrow) { max-width: 440px; }
.join-actions { margin-top: 28px; }
.join-section .comic-button--dark { border-color: var(--paper); background: var(--lime); color: var(--ink); box-shadow: 5px 5px 0 var(--paper); }
.join-section .comic-button--light { border-color: var(--paper); background: transparent; color: var(--paper); box-shadow: 5px 5px 0 var(--paper); }
.join-section .comic-button:hover { box-shadow: 2px 2px 0 var(--paper); }

.site-footer {
  padding: 44px max(24px, calc((100vw - 1180px) / 2)) 26px;
  display: grid;
  grid-template-columns: 1fr 1.2fr auto;
  align-items: center;
  gap: 25px;
  background: var(--lime);
  border-top: var(--line);
}
.footer-brand { font-weight: 900; }
.footer-brand .brand-mark { width: 44px; }
.site-footer > p { margin: 0; text-align: center; font-size: 14px; font-weight: 800; }
.footer-links { display: flex; gap: 20px; font-size: 13px; font-weight: 800; }
.footer-links a::after { background: var(--ink); }
.site-footer small { grid-column: 1 / -1; padding-top: 18px; border-top: 2px dashed rgba(17,17,15,.4); font-family: Arial, Helvetica, sans-serif; font-size: 11px; text-align: center; }

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 90;
  padding: 10px 17px;
  border: 2px solid var(--lime);
  background: var(--ink);
  color: var(--lime);
  font-size: 13px;
  font-weight: 800;
  opacity: 0;
  transform: translate(-50%, 20px) rotate(-2deg);
  pointer-events: none;
  transition: .25s ease;
}
.toast.is-visible { opacity: 1; transform: translate(-50%, 0) rotate(-2deg); }

.reveal { opacity: 0; transform: translateY(28px) rotate(.4deg); transition: opacity .72s ease, transform .72s cubic-bezier(.2,.8,.2,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0) rotate(0); }

@keyframes ticker { to { transform: translateX(-50%); } }

@media (max-width: 900px) {
  :root { --content: min(100% - 36px, 760px); }
  .site-header { grid-template-columns: 1fr auto; min-height: 76px; }
  .nav-links { display: none; }
  .hero { min-height: auto; padding: 48px 0 80px; grid-template-columns: 1fr; }
  .hero-copy { max-width: 680px; }
  .hero-visual { max-width: 680px; margin: 0 auto; }
  .story { grid-template-columns: 1fr; }
  .section-number { display: none; }
  .story-copy { max-width: 620px; }
  .token-section { grid-template-columns: 1fr; }
  .token-copy { max-width: 680px; }
  .site-footer { grid-template-columns: 1fr auto; }
  .site-footer > p { grid-column: 1 / -1; grid-row: 2; text-align: left; }
}

@media (max-width: 620px) {
  :root { --content: calc(100% - 28px); }
  body { font-size: 16px; }
  .site-header { min-height: 70px; }
  .brand-mark { width: 45px; }
  .brand-copy { font-size: 11px; }
  .brand-copy b { font-size: 14px; }
  .mini-button { padding: 7px 13px; }
  .hero { padding-top: 42px; }
  h1 { font-size: clamp(2.9rem, 15vw, 4.2rem); }
  h2 { font-size: clamp(2.2rem, 11vw, 3.3rem); }
  .hero-script { font-size: 1.25rem; }
  .hero-actions, .join-actions { display: grid; grid-template-columns: 1fr; }
  .comic-button { width: 100%; }
  .contract-strip { grid-template-columns: auto minmax(0,1fr); }
  .contract-strip button { grid-column: 1 / -1; }
  .doodle--two { left: -7px; }
  .section { padding: 95px 0; }
  .token-section { padding-left: 14px; padding-right: 14px; }
  .sticker { right: -5px; bottom: -43px; width: 90px; height: 90px; font-size: 15px; }
  .token-copy { padding: 30px 4px 0; }
  .token-card div { display: block; }
  .token-card strong { display: block; margin-top: 2px; text-align: left; }
  .milestones { grid-template-columns: 1fr; gap: 16px; margin-top: 22px; }
  .milestone:nth-child(n) { transform: rotate(-.5deg); }
  .map-frame img { aspect-ratio: 1.14; object-position: center; }
  .join-section { min-height: 720px; align-items: end; }
  .join-visual::after { background: linear-gradient(0deg, rgba(17,17,15,.96) 6%, rgba(17,17,15,.78) 52%, rgba(17,17,15,.08) 100%); }
  .join-copy { width: calc(100% - 28px); margin: 0 14px 44px; }
  .site-footer { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
  .site-footer > p { grid-column: auto; grid-row: auto; }
}

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