/* $ZBRA — design tokens from design_handoff_zbra_site/README.md */
:root {
  --yellow: #F4B728;
  --ink: #111111;
  --cream: #FFFDF6;
  --brown: #7A5200;
  --blush: #F4A0B0;
  --muted: #B8A98A;
  --display: 'Press Start 2P', monospace;
  --body: 'Baloo 2', system-ui, sans-serif;
  --stripes: repeating-linear-gradient(-35deg, #111 0 34px, #FFFDF6 34px 68px);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--body);
  font-weight: 500;
  overflow-x: hidden;
}

a { color: var(--ink); }
a:hover { color: var(--brown); }

h1, h2, h3, p, ul { margin: 0; }
ul { padding: 0; }

.wrap { max-width: 1120px; width: 100%; margin: 0 auto; }

.eyebrow {
  font-family: var(--display);
  font-size: 12px;
  color: var(--brown);
}

.h2 {
  font-size: 48px;
  line-height: 1.05;
  font-weight: 800;
  text-wrap: pretty;
}

.section-head { display: flex; flex-direction: column; gap: 12px; }

/* Sprite */
.sprite { display: block; width: 100%; height: 100%; }
.sprite svg { display: block; width: 100%; height: 100%; shape-rendering: crispEdges; }

/* Buttons (sticker look, no radius anywhere) */
.btn {
  display: inline-block;
  text-decoration: none;
  font-family: var(--display);
  font-size: 12px;
  padding: 18px 22px;
  border: 3px solid var(--ink);
  transition: background .12s, color .12s;
  cursor: pointer;
  line-height: 1;
}
.btn-primary { background: var(--ink); color: var(--yellow); box-shadow: 5px 5px 0 var(--brown); }
.btn-primary:hover { background: var(--cream); color: var(--ink); }
.btn-secondary { background: var(--cream); color: var(--ink); box-shadow: 5px 5px 0 var(--ink); }
.btn-secondary:hover { background: var(--ink); color: var(--yellow); }
.btn-small { font-size: 11px; padding: 14px 18px; box-shadow: 4px 4px 0 var(--brown); }

/* Cards */
.card {
  background: var(--cream);
  border: 4px solid var(--ink);
  box-shadow: 8px 8px 0 var(--ink);
}
.panel {
  background: var(--yellow);
  border: 5px solid var(--ink);
  box-shadow: 12px 12px 0 var(--ink);
  padding: 56px 64px;
}

/* ── Header ─────────────────────────────────────── */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 40px;
  background: var(--yellow);
  border-bottom: 4px solid var(--ink);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
}
.brand:hover { color: var(--ink); }
.brand .sprite { width: 40px; height: 36px; }
.brand-name { font-family: var(--display); font-size: 14px; }
.site-nav { display: flex; gap: 28px; font-weight: 700; font-size: 17px; }
.site-nav a { text-decoration: none; }

/* ── Hero ───────────────────────────────────────── */
.hero {
  position: relative;
  background: var(--stripes);
  padding: 80px 40px 100px;
  display: flex;
  justify-content: center;
}
.hero-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
}
.hero-sprite { width: 320px; height: 290px; flex-shrink: 0; }
.hero-copy { display: flex; flex-direction: column; gap: 22px; flex: 1; min-width: 320px; }
.hero h1 {
  font-family: var(--display);
  font-size: 64px;
  line-height: 1.05;
  letter-spacing: -2px;
  font-weight: 400;
}
.tagline { font-size: 26px; font-weight: 700; line-height: 1.25; text-wrap: pretty; }
.lede { font-size: 19px; line-height: 1.45; text-wrap: pretty; max-width: 520px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

@keyframes gallop {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
.gallop { animation: gallop 0.9s ease-in-out infinite; }

/* ── Marquee ────────────────────────────────────── */
.marquee {
  background: var(--ink);
  color: var(--yellow);
  border-top: 4px solid var(--ink);
  border-bottom: 4px solid var(--ink);
  overflow: hidden;
  padding: 14px 0;
  font-family: var(--display);
  font-size: 13px;
  white-space: nowrap;
}
.marquee-track { display: inline-block; animation: marquee 28s linear infinite; }
.marquee-track span { padding: 0 36px; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── Sections ───────────────────────────────────── */
.section { padding: 96px 40px; display: flex; justify-content: center; }
.band-yellow { background: var(--yellow); border-top: 4px solid var(--ink); border-bottom: 4px solid var(--ink); }
.band-stripes { background: var(--stripes); border-top: 4px solid var(--ink); border-bottom: 4px solid var(--ink); }

/* Lore */
.lore-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.lore-copy { display: flex; flex-direction: column; gap: 20px; }
.lore-copy p { font-size: 19px; line-height: 1.55; text-wrap: pretty; }
.lore-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.lore-card { padding: 24px; display: flex; flex-direction: column; gap: 8px; }
.lore-card.yellow { background: var(--yellow); }
.lore-sprite { width: 72px; height: 65px; }
.lore-sprite-side { height: 50px; }
.lore-sprite svg { width: 100%; height: 100%; }
.lore-card strong { font-size: 18px; }
.lore-card span:last-child { font-size: 15px; line-height: 1.4; }

/* How to buy */
.stack-40 { display: flex; flex-direction: column; gap: 40px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; }
.step { padding: 28px 24px; display: flex; flex-direction: column; gap: 14px; }
.step-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.step .num { font-family: var(--display); font-size: 22px; color: var(--brown); }
.step-face { width: 64px; height: 58px; flex-shrink: 0; }
.step strong { font-size: 21px; line-height: 1.2; }
.step span:last-child { font-size: 16px; line-height: 1.45; }

.buy-row { display: flex; gap: 24px; align-items: stretch; flex-wrap: wrap; }
.chart-panel {
  flex: 2;
  min-width: 320px;
  background: var(--ink);
  border: 4px solid var(--ink);
  box-shadow: 8px 8px 0 var(--brown);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: var(--cream);
}
.chart-head { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.chart-head .eyebrow { color: var(--yellow); }
.chart-head a { color: var(--yellow); font-weight: 700; font-size: 15px; }
.chart-placeholder {
  min-height: 320px;
  border: 2px solid var(--brown);
  background: #1a1a1a;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 28px 24px;
  font-size: 16px;
  line-height: 1.5;
  color: var(--cream);
}
.chart-placeholder > span:not(.sprite) { max-width: 420px; }
.chart-sprite { width: 120px; height: 105px; }
.chart-embed { height: 260px; border: 0; width: 100%; display: block; background: var(--ink); }
.wallets {
  flex: 1;
  min-width: 260px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
}
.wallets strong { font-size: 20px; }
.wallets p { font-size: 16px; line-height: 1.45; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  font-weight: 700;
  font-size: 14px;
  background: var(--yellow);
  border: 2px solid var(--ink);
  padding: 4px 10px;
  text-decoration: none;
  color: var(--ink);
}
a.chip:hover { background: var(--ink); color: var(--yellow); }

/* Tokenomics */
.tok-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; }
.tok-profile { width: 200px; height: 180px; flex-shrink: 0; }
.tok { padding: 28px 24px; display: flex; flex-direction: column; gap: 10px; }
.tok .label { font-size: 15px; font-weight: 700; color: var(--brown); text-transform: uppercase; letter-spacing: 1px; }
.tok .value { font-family: var(--display); font-size: 20px; line-height: 1.3; }
.tok .note { font-size: 15px; line-height: 1.4; }

/* Roadmap */
.roadmap-panel { display: flex; flex-direction: column; gap: 40px; }
.phase { display: flex; flex-direction: column; gap: 14px; }
.phase-face { width: 120px; height: 110px; }
.phase-tag {
  font-family: var(--display);
  font-size: 11px;
  background: var(--ink);
  color: var(--yellow);
  padding: 8px 10px;
  align-self: flex-start;
}
.phase ul { padding-left: 20px; font-size: 17px; line-height: 1.6; font-weight: 600; }

/* Memes */
.memes-head { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 16px; }
.memes-head a { font-weight: 700; font-size: 17px; }
.meme-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.meme {
  aspect-ratio: 1 / 1;
  border: 4px solid var(--ink);
  box-shadow: 8px 8px 0 var(--ink);
  background: var(--yellow);
  overflow: hidden;
  display: block;
  margin: 0;
  position: relative;
}
.meme img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── Footer ─────────────────────────────────────── */
.site-footer { background: var(--ink); color: var(--cream); padding: 72px 40px 48px; display: flex; justify-content: center; }
.footer-top { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 24px; }
.footer-brand { display: flex; align-items: center; gap: 16px; }
.footer-brand .sprite { width: 64px; height: 62px; }
.footer-brand span { font-family: var(--display); font-size: 20px; color: var(--yellow); }
.footer-links { display: flex; gap: 28px; font-weight: 700; font-size: 17px; }
.footer-links a { color: var(--yellow); }
.footer-links a:hover { color: var(--cream); }
.disclaimer { font-size: 14px; line-height: 1.6; color: var(--muted); max-width: 820px; text-wrap: pretty; }
.copyright { font-family: var(--display); font-size: 10px; color: var(--brown); }

/* ── Motion preferences ─────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .gallop { animation: none; }
  .marquee-track { animation: none; }
}

/* ── Responsive ─────────────────────────────────── */
@media (max-width: 1100px) {
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 900px) {
  .site-nav { display: none; }
  .lore-grid { grid-template-columns: 1fr; gap: 48px; }
  .meme-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero { padding: 56px 20px 72px; }
  .hero-panel { padding: 40px 28px; gap: 32px; }
  .hero-sprite { width: 240px; height: 218px; }
  .hero h1 { font-size: 44px; }
  .h2 { font-size: 36px; }
  .section { padding: 64px 20px; }
  .panel { padding: 40px 28px; }
  .site-header { padding: 14px 20px; }
  .site-footer { padding: 56px 20px 40px; }
  .tok-profile { width: 120px; height: 108px; }
}
@media (max-width: 560px) {
  .grid-4 { grid-template-columns: 1fr; }
  .meme-grid { grid-template-columns: 1fr; }
  .lore-cards { grid-template-columns: 1fr; }
  .hero h1 { font-size: 36px; letter-spacing: -1px; }
  .hero-copy { min-width: 0; }
  .btn { font-size: 11px; padding: 16px 18px; }
  .panel, .hero-panel { box-shadow: 8px 8px 0 var(--ink); }
  .tok-head { flex-direction: column; align-items: flex-start; }
}
