:root {
  --green: #3fa334;
  --green-neon: #9dff3d;
  --purple: #8a4ce8;
  --orange: #ff8c1a;
  --red: #e8342a;
  --blue: #2a6be8;
  --ink: #0c1410;
  --paper: #f3ecd8;
  --paper-dark: #e4d9b8;
  --brown: #4a3420;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--ink);
  color: var(--paper);
  font-family: 'Kalam', cursive;
  overflow-x: hidden;
  cursor:
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 40 40"><g transform="rotate(-25 20 20)"><path d="M20 4 L34 34 A17 17 0 0 1 6 34 Z" fill="%23ffcf4d" stroke="%23000" stroke-width="2"/><path d="M6 34 A17 17 0 0 0 34 34 Z" fill="%23e8a33d" stroke="%23000" stroke-width="2"/><circle cx="18" cy="17" r="2.4" fill="%23c1372b" stroke="%23000" stroke-width="1"/><circle cx="24" cy="22" r="2.4" fill="%23c1372b" stroke="%23000" stroke-width="1"/><circle cx="19" cy="26" r="2.4" fill="%23c1372b" stroke="%23000" stroke-width="1"/></g></svg>') 4 4,
    auto;
}

a, button, summary, .btn, .ticker {
  cursor:
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 40 40"><g transform="rotate(-25 20 20)"><path d="M20 4 L34 34 A17 17 0 0 1 6 34 Z" fill="%23ffcf4d" stroke="%23000" stroke-width="2"/><path d="M6 34 A17 17 0 0 0 34 34 Z" fill="%23e8a33d" stroke="%23000" stroke-width="2"/><circle cx="18" cy="17" r="2.4" fill="%23c1372b" stroke="%23000" stroke-width="1"/><circle cx="24" cy="22" r="2.4" fill="%23c1372b" stroke="%23000" stroke-width="1"/><circle cx="19" cy="26" r="2.4" fill="%23c1372b" stroke="%23000" stroke-width="1"/></g></svg>') 4 4,
    pointer;
}

h1, h2, h3, .logo, .footer-logo, .stop-dot, .manhole-ring span {
  font-family: 'Bangers', cursive;
  letter-spacing: 1.5px;
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.06;
  background-image: radial-gradient(circle, #fff 1px, transparent 1px);
  background-size: 3px 3px;
  mix-blend-mode: overlay;
}

/* NAV */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 6%;
  position: relative;
  z-index: 10;
  background: var(--ink);
  border-bottom: 3px solid var(--green-neon);
}

.logo, .footer-logo {
  font-size: 1.8rem;
  color: var(--green-neon);
  text-shadow: 3px 3px 0 #000;
  transform: rotate(-2deg);
  display: inline-block;
}

.dollar { color: var(--orange); }

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

nav ul li a {
  color: var(--paper);
  text-decoration: none;
  font-weight: 700;
  position: relative;
  transition: color .2s;
}

nav ul li a:hover { color: var(--green-neon); }

.btn {
  display: inline-block;
  padding: 14px 28px;
  font-family: 'Bangers', cursive;
  font-size: 1.1rem;
  letter-spacing: 1px;
  text-decoration: none;
  border: 3px solid #000;
  border-radius: 4px;
  transform: rotate(-1deg);
  transition: transform .15s;
  box-shadow: 4px 4px 0 #000;
}

.btn:hover { transform: rotate(-1deg) translate(-2px,-2px); box-shadow: 6px 6px 0 #000; }
.btn:active { transform: rotate(-1deg) translate(2px,2px); box-shadow: 1px 1px 0 #000; }

.btn.primary { background: var(--green-neon); color: #0b1a0b; }
.btn.secondary { background: var(--orange); color: #1a0e00; }
.btn.big { padding: 20px 44px; font-size: 1.4rem; }
.nav-btn { transform: rotate(2deg); }

/* HERO — asymmetric split with torn edge */
.hero {
  position: relative;
  background:
    radial-gradient(circle at 20% 20%, rgba(157,255,61,0.08), transparent 40%),
    repeating-linear-gradient(135deg, #14201580 0px, #14201580 2px, transparent 2px, transparent 14px),
    var(--ink);
  padding: 70px 6% 60px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
}

.kicker {
  font-family: 'Permanent Marker', cursive;
  color: var(--orange);
  margin-bottom: 10px;
  font-size: 1rem;
}

.hero h1 {
  font-size: clamp(2.1rem, 4.4vw, 3.6rem);
  line-height: 1.15;
  margin-bottom: 20px;
  text-shadow: 4px 4px 0 #000;
}

.hero h1 .stroke { color: var(--paper); -webkit-text-stroke: 2px var(--red); }
.hero h1 .highlight { color: var(--green-neon); }

.subtitle {
  font-size: 1.25rem;
  color: var(--paper-dark);
  margin-bottom: 28px;
  max-width: 520px;
}

.hero-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.ticker {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  background: var(--paper);
  color: var(--ink);
  border: 3px solid #000;
  padding: 10px 18px;
  border-radius: 6px;
  font-family: 'Kalam', cursive;
  cursor: pointer;
  transform: rotate(1deg);
  box-shadow: 4px 4px 0 #000;
}

.ticker-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 2px; color: var(--red); }
.ticker-value { font-family: monospace; font-size: 0.9rem; }

.hero-art { position: relative; }

.hero-img {
  width: 100%;
  border: 4px solid #000;
  border-radius: 6px;
  transform: rotate(2deg);
  box-shadow: 10px 10px 0 rgba(157,255,61,0.25), 0 0 0 3px var(--green-neon) inset;
}

/* MARQUEE */
.marquee {
  background: repeating-linear-gradient(45deg, var(--green-neon), var(--green-neon) 20px, #0b1a0b 20px, #0b1a0b 40px);
  color: #0b1a0b;
  overflow: hidden;
  white-space: nowrap;
  padding: 14px 0;
  font-family: 'Bangers', cursive;
  font-size: 1.1rem;
  border-top: 3px solid #000;
  border-bottom: 3px solid #000;
}

.marquee-track {
  display: inline-flex;
  animation: scroll-left 26s linear infinite;
}

.marquee-track span {
  -webkit-text-stroke: 1px #000;
  padding-right: 4px;
}

@keyframes scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* SECTIONS */
.panel-section {
  padding: 90px 6%;
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
}

.panel-section.dark {
  background: #10190f;
  max-width: 100%;
  clip-path: polygon(0 3%, 100% 0, 100% 97%, 0 100%);
  padding: 110px 6%;
}

.panel-section.dark > * { max-width: 1300px; margin-left: auto; margin-right: auto; }

.section-title {
  font-size: 2.6rem;
  text-align: center;
  margin-bottom: 50px;
  color: var(--green-neon);
  text-shadow: 3px 3px 0 #000;
  transform: rotate(-1deg);
}

/* CASE FILE (about) */
.case-file {
  background: var(--paper);
  color: var(--ink);
  border: 4px solid #000;
  border-radius: 6px;
  padding: 40px;
  transform: rotate(-0.6deg);
  box-shadow: 12px 12px 0 rgba(0,0,0,0.4);
  position: relative;
}

.case-file-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.case-file-header h2 {
  font-size: 2.4rem;
  color: var(--brown);
}

.stamp {
  font-family: 'Permanent Marker', cursive;
  color: var(--red);
  border: 3px solid var(--red);
  padding: 6px 14px;
  border-radius: 4px;
  transform: rotate(-8deg);
  font-size: 0.85rem;
  opacity: 0.85;
}

.case-file-body {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 40px;
  align-items: start;
}

.polaroid {
  width: 100%;
  border: 10px solid #fff;
  border-bottom-width: 40px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.35);
  transform: rotate(3deg);
}

.case-notes p {
  margin-bottom: 16px;
  line-height: 1.7;
  font-size: 1.05rem;
}

.badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.badge {
  background: var(--ink);
  color: var(--green-neon);
  font-family: 'Bangers', cursive;
  border: 2px solid #000;
  padding: 8px 14px;
  border-radius: 4px;
  font-size: 0.85rem;
  transform: rotate(-1.5deg);
}

.badge:nth-child(2) { transform: rotate(1deg); }
.badge:nth-child(3) { transform: rotate(-0.5deg); }

/* TOKENOMICS — manholes */
.manhole-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.manhole { text-align: center; }

.manhole-ring {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin: 0 auto 16px;
  background:
    radial-gradient(circle at 35% 30%, #3a4a36, #1a241a 70%);
  border: 6px solid #060a06;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 0 4px #2a3a26, 0 8px 0 rgba(0,0,0,0.4);
  position: relative;
}

.manhole-ring::before {
  content: '';
  position: absolute;
  inset: 14px;
  border-radius: 50%;
  border: 3px dashed rgba(157,255,61,0.35);
}

.manhole-ring span {
  font-size: 1.7rem;
  color: var(--green-neon);
  text-shadow: 2px 2px 0 #000;
}

.manhole p { color: var(--paper-dark); font-size: 1.05rem; }

/* HOW TO BUY — subway line */
.subway-line {
  position: relative;
  max-width: 850px;
  margin: 0 auto 50px;
  padding-left: 40px;
}

.subway-line::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 10px;
  bottom: 10px;
  width: 6px;
  background: repeating-linear-gradient(to bottom, var(--orange) 0, var(--orange) 12px, #000 12px, #000 20px);
  border-radius: 4px;
}

.subway-stop {
  display: flex;
  gap: 26px;
  align-items: flex-start;
  margin-bottom: 40px;
  position: relative;
}

.stop-dot {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 50%;
  background: var(--orange);
  border: 4px solid #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #1a0e00;
  z-index: 1;
  box-shadow: 3px 3px 0 #000;
}

.stop-text h3 { color: var(--paper); font-size: 1.4rem; margin-bottom: 6px; }
.stop-text p { color: var(--paper-dark); font-size: 1rem; }

.placeholder {
  color: var(--orange);
  font-weight: 700;
  border-bottom: 2px dashed var(--orange);
}

.center-btn { text-align: center; }

/* GALLERY — corkboard */
.corkboard {
  position: relative;
  min-height: 420px;
  background:
    radial-gradient(circle, rgba(0,0,0,0.15) 1px, transparent 1px) 0 0/14px 14px,
    #6b4a2f;
  border: 6px solid var(--brown);
  border-radius: 8px;
  padding: 40px;
}

.pin {
  position: absolute;
  border: 8px solid #fff;
  box-shadow: 0 8px 16px rgba(0,0,0,0.5);
  max-width: 280px;
  width: 32%;
  object-fit: cover;
}

.pin::after { content: ''; }

.pin-1 { top: 6%; left: 4%; transform: rotate(-8deg); border-color: #fff; z-index: 2; }
.pin-2 { top: 14%; left: 36%; transform: rotate(5deg); z-index: 1; }
.pin-3 { top: 4%; right: 5%; transform: rotate(-4deg); z-index: 2; }

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

details {
  background: var(--paper);
  color: var(--ink);
  border: 3px solid #000;
  border-radius: 6px;
  padding: 18px 22px;
  box-shadow: 5px 5px 0 rgba(0,0,0,0.5);
}

summary {
  cursor: pointer;
  font-family: 'Bangers', cursive;
  font-size: 1.2rem;
  letter-spacing: 1px;
  color: var(--brown);
}

details p {
  margin-top: 12px;
  line-height: 1.6;
  font-size: 1.05rem;
}

/* FOOTER */
footer {
  background: #081208;
  padding: 60px 6% 40px;
  text-align: center;
  border-top: 4px solid var(--green-neon);
}

.socials {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 20px 0 26px;
}

.socials a {
  color: var(--paper);
  text-decoration: none;
  font-weight: 700;
  border: 2px solid var(--green-neon);
  padding: 8px 18px;
  border-radius: 20px;
  transition: background .2s;
}

.socials a:hover { background: rgba(157,255,61,0.15); }

.disclaimer {
  max-width: 700px;
  margin: 0 auto 16px;
  font-size: 0.78rem;
  font-family: 'Kalam', cursive;
  color: #7a9573;
  line-height: 1.5;
}

.copyright { font-size: 0.85rem; color: #567051; }

/* RESPONSIVE */
@media (max-width: 900px) {
  nav ul { display: none; }
  .hero-inner { grid-template-columns: 1fr; }
  .case-file-body { grid-template-columns: 1fr; }
  .manhole-grid { grid-template-columns: repeat(2, 1fr); }
  .corkboard { min-height: 900px; }
  .pin { position: static; width: 80%; display: block; margin: 20px auto; }
  .pin-1, .pin-2, .pin-3 { transform: rotate(-2deg); }
}
