:root {
  --screen: #48A05A;
  --accent: #FFE03A;
  --ink: #0D2A17;
  --ink-line: #245236;
  --mint: #CFE6D4;
  --black: #000000;
  --white: #FFFFFF;
  --pink: #FF8FA6;
  --orange: #FF5A1F;
  --gutter: 96px;
  --display: 'Anton', Impact, sans-serif;
  --body: 'Barlow', 'Helvetica Neue', Helvetica, sans-serif;
  --mono: 'IBM Plex Mono', ui-monospace, Menlo, monospace;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: var(--body); background: var(--black); color: var(--ink); -webkit-font-smoothing: antialiased; }
h1, h2, h3, p { margin: 0; }
[hidden] { display: none !important; }
img { max-width: 100%; }
a { color: var(--ink); }
a:hover { color: var(--black); }
a:focus-visible, button:focus-visible { outline: 3px solid var(--white); outline-offset: 3px; box-shadow: 0 0 0 6px var(--black); }

.display { font-family: var(--display); font-weight: 400; }
.stroke { color: var(--white); -webkit-text-stroke: 2px var(--black); paint-order: stroke fill; text-shadow: 3px 3px 0 var(--black); }
.show-mobile { display: none; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 56px; padding: 0 28px; border-radius: 14px; border: 3px solid var(--black); box-shadow: 5px 5px 0 var(--black); font-weight: 800; font-size: 18px; text-decoration: none; transition: transform .08s, box-shadow .08s; }
.btn:hover { transform: translate(2px, 2px); box-shadow: 3px 3px 0 var(--black); }
.btn:active { transform: translate(5px, 5px); box-shadow: 0 0 0 var(--black); }
.btn-sm { min-height: 50px; padding: 0 26px; box-shadow: 4px 4px 0 var(--black); }
.btn-lg { min-height: 62px; padding: 0 30px; }
.btn-accent { background: var(--accent); color: var(--black); }
.btn-white { background: var(--white); color: var(--black); }
.btn-black, .btn-black:hover { background: var(--black); color: var(--white); }
.btn-accent:hover, .btn-white:hover { color: var(--black); }

/* Hero */
.hero { background: var(--screen); }
.site-header { display: flex; align-items: center; gap: 40px; padding: 24px var(--gutter); }
.brand { display: flex; align-items: center; gap: 14px; text-decoration: none; margin-right: auto; }
.brand img { width: 52px; height: 52px; border-radius: 12px; border: 3px solid var(--black); background: var(--ink); }
.brand span { font-family: var(--display); font-size: 34px; line-height: 1; }
.main-nav { display: flex; align-items: center; gap: 40px; }
.main-nav a { font-size: 18px; font-weight: 800; text-decoration: none; }
.main-nav a:hover { text-decoration: underline; text-decoration-thickness: 3px; }

.hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 698px); gap: 48px; align-items: end; padding: 24px var(--gutter) 0; }
.hero-copy { display: flex; flex-direction: column; gap: 24px; align-items: flex-start; padding-bottom: 88px; }
.pill { display: inline-flex; align-items: center; padding: 10px 18px; border: 3px solid var(--black); border-radius: 12px; background: var(--white); color: var(--black); font-weight: 800; font-size: 17px; }
.hero-title { font-size: 64px; line-height: 1.04; }
.lede { font-size: 20px; line-height: 1.5; font-weight: 600; }
.cta-row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.text-link { font-weight: 800; font-size: 18px; }

.hero-art { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.hero-kicker { font-family: var(--display); font-size: 54px; line-height: 1.05; text-align: center; -webkit-text-stroke-width: 3px; text-shadow: 4px 4px 0 var(--black); }
.hero-img { position: relative; width: 100%; aspect-ratio: 698 / 474; }
.hero-img img { display: block; width: 100%; height: 100%; }
.hero-img h1 { position: absolute; left: 0; right: 0; bottom: 12px; font-family: var(--display); font-weight: 400; font-size: clamp(72px, 10.3vw, 148px); line-height: 1; text-align: center; -webkit-text-stroke-width: 5px; text-shadow: 7px 7px 0 var(--black); }

/* Contract address */
.ca-box { display: flex; align-items: center; gap: 14px; width: 100%; padding: 8px 8px 8px 20px; background: var(--white); border: 3px solid var(--black); border-radius: 16px; box-shadow: 5px 5px 0 var(--black); color: var(--black); }
.ca-label { font-weight: 800; font-size: 15px; }
.ca-value { flex-grow: 1; min-width: 0; font-family: var(--mono); font-size: 14px; line-height: 1.4; word-break: break-all; }
.copy-btn { min-height: 46px; min-width: 96px; padding: 0 20px; border: none; border-radius: 10px; background: var(--black); color: var(--white); font-family: inherit; font-weight: 800; font-size: 16px; cursor: pointer; }

/* Ticker */
.ticker { background: var(--black); overflow: hidden; padding: 18px 0; }
.ticker-track { display: flex; align-items: center; gap: 28px; width: max-content; white-space: nowrap; font-family: var(--display); font-size: 44px; line-height: 1.2; color: var(--white); padding-left: 40px; animation: ticker 28s linear infinite; }
.ticker-track img { width: 56px; height: 56px; border-radius: 10px; background: var(--ink); }
.ticker .accent { color: var(--accent); }
@keyframes ticker { to { transform: translateX(-50%); } }
.ticker-mobile { display: none; }

/* Shared section rhythm */
section { padding: 112px var(--gutter); }
.hero { padding: 0; }
.card { background: var(--white); border: 4px solid var(--black); border-radius: 22px; box-shadow: 7px 7px 0 var(--black); padding: 28px; display: flex; flex-direction: column; gap: 6px; }
.num { display: flex; align-items: center; justify-content: center; width: 64px; height: 64px; border-radius: 16px; background: var(--screen); border: 3px solid var(--black); font-family: var(--display); font-size: 30px; -webkit-text-stroke-width: 1.5px; text-shadow: none; }

/* Memes */
.memes { display: flex; flex-direction: column; gap: 48px; background: var(--black); color: var(--white); }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 48px; }
.section-head h2 { font-size: 96px; line-height: 0.98; max-width: 760px; }
.section-head p { max-width: 420px; font-size: 20px; line-height: 1.5; font-weight: 600; color: #D6D6D6; }
.meme-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 32px; }
.meme { position: relative; margin: 0; height: 394px; overflow: hidden; border: 4px solid var(--black); border-radius: 22px; box-shadow: 8px 8px 0 var(--black); }
.meme img { position: absolute; left: 50%; bottom: 0; width: 470px; height: 319px; max-width: none; margin-left: -235px; }
.meme img.flip { transform: scaleX(-1); }
.meme img.deepfry { filter: saturate(3.2) contrast(1.6) brightness(1.05); }
.meme img.zoom { width: 820px; height: 557px; margin-left: -410px; bottom: auto; top: -71px; }
.meme figcaption { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: space-between; align-items: center; padding: 16px 14px; text-align: center; font-family: var(--display); line-height: 1.04; -webkit-text-stroke-width: 2.5px; font-size: 34px; }
.meme figcaption .sm { font-size: 32px; }
.meme figcaption .lg { font-size: 54px; }
.bg-screen { background: var(--screen); }
.bg-accent { background: var(--accent); }
.bg-pink { background: var(--pink); }
.bg-orange { background: var(--orange); }
.bg-black { background: var(--black); }
.bg-white { background: var(--white); }

/* Lore */
.lore { display: grid; grid-template-columns: 420px minmax(0, 1fr); gap: 72px; align-items: start; background: var(--white); }
.lore-intro { display: flex; flex-direction: column; gap: 24px; align-items: flex-start; }
.lore-intro h2 { font-size: 104px; line-height: 0.95; }
.lore-intro p { font-size: 21px; line-height: 1.5; font-weight: 600; }
.lore-intro img { width: 200px; height: 200px; border-radius: 28px; border: 4px solid var(--black); background: var(--screen); box-shadow: 8px 8px 0 var(--black); transform: rotate(-4deg); margin-top: 16px; }
.timeline { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; background: var(--ink); border: 4px solid var(--black); border-radius: 24px; box-shadow: 10px 10px 0 var(--black); overflow: hidden; }
.timeline li { display: grid; grid-template-columns: 96px minmax(0, 1fr); gap: 20px; padding: 26px 28px; border-bottom: 2px solid var(--ink-line); }
.timeline li:last-child { border-bottom: none; }
.timeline .year { font-family: var(--display); font-size: 36px; line-height: 1; color: var(--accent); }
.timeline li > div { display: flex; flex-direction: column; gap: 6px; }
.timeline h3 { font-size: 23px; font-weight: 800; color: var(--white); }
.timeline p { font-size: 18px; line-height: 1.55; color: var(--mint); }

/* Fees */
.fees { display: flex; flex-direction: column; gap: 56px; background: var(--ink); color: var(--white); }
.fees-head { display: flex; flex-direction: column; gap: 20px; }
.fees-head h2 { font-size: 84px; line-height: 1.02; color: var(--accent); max-width: 1180px; }
.fees-head p { font-size: 21px; line-height: 1.55; max-width: 720px; color: var(--mint); }
.fees-grid { display: grid; grid-template-columns: minmax(0, 1fr) 500px; gap: 80px; align-items: start; }
.steps { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; }
.steps li { display: grid; grid-template-columns: 64px minmax(0, 1fr); gap: 24px; padding: 28px 0; border-top: 2px solid var(--ink-line); }
.steps li:last-child { border-bottom: 2px solid var(--ink-line); }
.steps li > div { display: flex; flex-direction: column; gap: 8px; }
.steps h3 { font-size: 24px; font-weight: 800; }
.steps p { font-size: 18px; line-height: 1.55; color: var(--mint); }
.split-card { position: relative; display: flex; flex-direction: column; gap: 18px; align-items: flex-start; padding: 40px; background: var(--accent); color: var(--black); border: 4px solid var(--black); border-radius: 28px; box-shadow: 12px 12px 0 var(--screen); }
.split-card img { position: absolute; top: -40px; right: -28px; width: 120px; height: 120px; border-radius: 22px; border: 4px solid var(--black); background: var(--screen); transform: rotate(8deg); }
.split-card .big { font-family: var(--display); font-size: 184px; line-height: 0.9; }
.split-card .split-main { font-size: 24px; font-weight: 800; line-height: 1.3; }
.split-card p { font-size: 18px; line-height: 1.55; font-weight: 600; }

/* Chat */
.chat { display: flex; flex-direction: column; gap: 48px; background: var(--screen); border-top: 4px solid var(--black); }
.chat h2 { font-size: 88px; line-height: 1.02; max-width: 1100px; -webkit-text-stroke-width: 4px; text-shadow: 6px 6px 0 var(--black); }
.chat-grid { display: grid; grid-template-columns: minmax(0, 1fr) 440px; gap: 48px; align-items: start; }
.chat-box { display: flex; flex-direction: column; background: var(--ink); border: 4px solid var(--black); border-radius: 24px; box-shadow: 10px 10px 0 var(--black); overflow: hidden; }
.chat-title { padding: 16px 24px; border-bottom: 2px solid var(--ink-line); color: var(--white); font-weight: 800; font-size: 17px; }
.chat-log { display: flex; flex-direction: column; gap: 12px; padding: 22px 24px 26px; font-size: 21px; line-height: 1.35; color: var(--white); }
.chat-log img { width: 34px; height: 34px; vertical-align: middle; border-radius: 6px; }
.chat-log .u { font-weight: 800; }
.u.y { color: #FFE03A; } .u.p { color: #FF8FA6; } .u.b { color: #8FD3FF; } .u.g { color: #B7F0C5; }
.defs { display: flex; flex-direction: column; gap: 24px; }
.defs h3 { font-size: 44px; line-height: 1.05; }
.defs .pos { font-size: 17px; font-style: italic; }
.defs p:last-child { font-size: 19px; line-height: 1.5; margin-top: 6px; }

/* Buy */
.buy { display: flex; flex-direction: column; gap: 48px; background: var(--accent); border-top: 4px solid var(--black); }
.buy h2 { font-size: 88px; line-height: 1; color: var(--black); }
.buy-steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; }
.buy-steps .card { gap: 12px; }
.buy-steps .num { width: 56px; height: 56px; border-radius: 14px; font-size: 28px; }
.buy-steps h3 { font-size: 23px; font-weight: 800; }
.buy-steps p { font-size: 17px; line-height: 1.55; }
.buy-row { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.buy-row .ca-box { flex: 1 1 0; max-width: 720px; }
.buy-row .btn-black { box-shadow: 5px 5px 0 var(--screen); }

/* Footer */
.site-footer { display: flex; flex-direction: column; gap: 48px; padding: 96px var(--gutter) 72px; background: var(--black); color: var(--white); border-top: 4px solid var(--black); }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 64px; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 14px 32px; max-width: 620px; font-size: 18px; font-weight: 800; }
.footer-nav a, .footer-nav a:hover { color: var(--white); }
.disclaimer { max-width: 580px; font-size: 15px; line-height: 1.6; color: #C9C9C9; }
.footer-mark { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; }
.footer-mark p { font-family: var(--display); font-size: clamp(74px, 15vw, 220px); line-height: 0.85; color: var(--white); text-shadow: 10px 10px 0 var(--screen); }
.footer-mark img { width: 200px; height: 200px; border-radius: 32px; border: 4px solid var(--white); background: var(--screen); transform: rotate(6deg); }

/* Clickable hero face */
.face-btn { display: block; width: 100%; height: 100%; padding: 0; border: 0; background: none; cursor: pointer; }
.face-btn img { display: block; width: 100%; height: 100%; transition: transform .12s; }
.face-btn:hover img { transform: scale(1.03) rotate(-1deg); }
.hero-img h1 { pointer-events: none; }
.shake { animation: shake .45s cubic-bezier(.36,.07,.19,.97); }
@keyframes shake {
  10%, 90% { transform: translate(-2px, 1px) rotate(-.5deg); }
  20%, 80% { transform: translate(4px, -2px) rotate(.8deg); }
  30%, 50%, 70% { transform: translate(-7px, 3px) rotate(-1.2deg); }
  40%, 60% { transform: translate(7px, -3px) rotate(1.2deg); }
}

/* Pog milk caps: the '90s game PogChamp is named after */
.hero-art { position: relative; }
.pogcap { position: absolute; width: var(--size, 130px); aspect-ratio: 1; border-radius: 50%; background: var(--rim, var(--accent)); border: 4px solid var(--black); box-shadow: 6px 6px 0 var(--black); display: grid; place-items: center; animation: bob 3.2s ease-in-out infinite; pointer-events: none; }
.pogcap svg { position: absolute; inset: 0; width: 100%; height: 100%; animation: spin 16s linear infinite; }
.pogcap text { font-family: var(--display); font-size: 17px; fill: var(--black); }
.pogcap img { position: relative; width: 58%; height: 58%; border-radius: 50%; border: 3px solid var(--black); background: var(--screen); object-fit: cover; }
.cap-a { --size: 132px; left: -34px; top: 84px; transform: rotate(-12deg); }
.cap-b { --size: 104px; --rim: var(--pink); right: -18px; top: 150px; animation-delay: -1.4s; }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes bob { 0%, 100% { translate: 0 0; } 50% { translate: 0 -12px; } }

/* Emote particles */
.particle { position: fixed; z-index: 60; width: 48px; height: 48px; border-radius: 8px; pointer-events: none; will-change: transform, opacity; }
.particle-word { width: auto; height: auto; font-family: var(--display); font-size: 34px; line-height: 1; white-space: nowrap; color: var(--white); -webkit-text-stroke: 2px var(--black); paint-order: stroke fill; text-shadow: 3px 3px 0 var(--black); }

/* Chat's remixes */
.variants { display: flex; flex-direction: column; gap: 24px; }
.variants h3 { font-size: 44px; line-height: 1; color: var(--accent); }
.variant-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 20px; }
.variant-list li { display: flex; flex-direction: column; align-items: center; gap: 10px; font-weight: 800; font-size: 17px; color: var(--white); }
.v-tile { width: 100%; aspect-ratio: 1; display: grid; place-items: center; overflow: hidden; background: var(--ink); border: 3px solid var(--screen); border-radius: 18px; }
.v-tile img { width: 56%; height: 56%; border-radius: 10px; }
.v-wide { transform: scaleX(1.75); }
.v-tall { transform: scale(.7, 1.6); }
.v-fried { filter: saturate(4) contrast(2.2) brightness(1.1) hue-rotate(-12deg); }
.v-spin { animation: spin 1.1s linear infinite; }
.v-jam { animation: jam .4s ease-in-out infinite alternate; }
.v-mirror { transform: scaleX(-1); }
@keyframes jam { from { transform: translateY(6px) rotate(-10deg); } to { transform: translateY(-6px) rotate(10deg); } }

/* Hype reel */
.reel { display: flex; flex-direction: column; gap: 40px; background: var(--screen); border-top: 4px solid var(--black); }
.reel .section-head h2 { color: var(--white); -webkit-text-stroke: 3px var(--black); paint-order: stroke fill; text-shadow: 6px 6px 0 var(--black); }
.reel .section-head p { color: var(--ink); }
.reel-frame { border: 4px solid var(--black); border-radius: 24px; box-shadow: 10px 10px 0 var(--black); overflow: hidden; background: var(--black); }
.reel-frame video { display: block; width: 100%; height: auto; }

/* Live chat */
.chat-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 14px 24px; border-bottom: 2px solid var(--ink-line); }
.chat-head .chat-title { padding: 0; border: 0; }
.chat-title span { margin-left: 8px; padding: 3px 8px; border-radius: 6px; background: var(--ink-line); color: var(--mint); font-size: 13px; font-weight: 600; }
.hype { display: flex; align-items: center; gap: 10px; color: var(--white); font-size: 14px; font-weight: 800; text-transform: uppercase; white-space: nowrap; }
.hype b { color: var(--accent); }
.hype-bar { position: relative; width: 140px; height: 14px; border-radius: 7px; background: var(--ink-line); border: 2px solid var(--black); overflow: hidden; }
.hype-bar i { position: absolute; left: 0; top: 0; bottom: 0; width: 0; background: repeating-linear-gradient(-45deg, var(--accent) 0 8px, #FFC400 8px 16px); transition: width .25s; }
.chat-log { height: 560px; overflow: hidden; justify-content: flex-end; }
.chat-log p { flex-shrink: 0; }
.chat-log p.mine { margin: 0 -24px; padding: 4px 24px; background: rgba(255, 224, 58, .14); border-left: 4px solid var(--accent); }
.chat-send { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 16px 24px; border-top: 2px solid var(--ink-line); color: var(--mint); font-size: 16px; font-weight: 600; }
.pog-btn { min-height: 52px; font-size: 17px; cursor: pointer; font-family: inherit; }

/* Stats band */
.stats { display: grid; grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr) minmax(0, 1fr); gap: 0; padding: 0; background: var(--accent); border-top: 4px solid var(--black); border-bottom: 4px solid var(--black); }
.stat { display: flex; flex-direction: column; gap: 8px; padding: 56px 48px; border-right: 4px solid var(--black); }
.stat:first-child { padding-left: var(--gutter); }
.stat:last-child { border-right: 0; padding-right: var(--gutter); }
.stat-num { font-family: var(--display); font-size: 88px; line-height: 1; color: var(--black); font-variant-numeric: tabular-nums; }
.stat-label { font-size: 19px; font-weight: 800; line-height: 1.35; color: var(--black); }
.timeline li.now { background: var(--screen); }
.timeline li.now .year { color: var(--white); -webkit-text-stroke: 1.5px var(--black); paint-order: stroke fill; }
.timeline li.now p { color: var(--ink); font-weight: 600; }

/* Tablet */
@media (max-width: 1200px) {
  :root { --gutter: 48px; }
  .main-nav { gap: 24px; }
  .hero-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .hero-kicker { font-size: 40px; }
  .meme-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lore { grid-template-columns: 1fr; gap: 48px; }
  .fees-grid, .chat-grid { grid-template-columns: 1fr; gap: 56px; }
  .split-card { max-width: 560px; }
  .buy-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .variant-list { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .stats { grid-template-columns: 1fr 1fr; }
  .stat:first-child { grid-column: 1 / -1; border-right: 0; border-bottom: 4px solid var(--black); padding-right: var(--gutter); }
  .stat:nth-child(2) { padding-left: var(--gutter); }
  .stat-num { font-size: 72px; }
  .section-head h2, .lore-intro h2 { font-size: 80px; }
  .fees-head h2, .chat h2, .buy h2 { font-size: 72px; }
}

/* Mobile (follows the 390px artboard) */
@media (max-width: 820px) {
  :root { --gutter: 24px; }
  .show-mobile { display: inline; }
  .hide-mobile { display: none; }
  .main-nav { display: none; }

  .site-header { padding: 18px 20px; }
  .brand { gap: 10px; }
  .brand img { width: 44px; height: 44px; border-radius: 10px; }
  .brand span { font-size: 26px; -webkit-text-stroke-width: 1.5px; text-shadow: 2px 2px 0 var(--black); }
  .btn-sm { min-height: 44px; padding: 0 18px; font-size: 16px; border-radius: 12px; box-shadow: 3px 3px 0 var(--black); }

  .hero-grid { display: flex; flex-direction: column; gap: 0; padding: 0; }
  .hero-art { order: 1; gap: 0; }
  .hero-kicker { padding: 8px 20px 4px; font-size: 32px; line-height: 1.08; -webkit-text-stroke-width: 2px; text-shadow: 3px 3px 0 var(--black); }
  .hero-img h1 { font-size: 78px; bottom: 6px; -webkit-text-stroke-width: 3.5px; text-shadow: 4px 4px 0 var(--black); }
  .hero-copy { order: 3; gap: 20px; padding: 40px 24px 56px; align-items: stretch; }
  .hero-copy .pill { align-self: flex-start; }
  .pill { padding: 8px 14px; border-radius: 10px; font-size: 15px; }
  .hero-title { font-size: 44px; line-height: 1.05; }
  .lede { font-size: 18px; }
  .cta-row { flex-direction: column; align-items: stretch; }
  .text-link { align-self: center; font-size: 17px; min-height: 48px; display: flex; align-items: center; }

  .ca-box { flex-direction: column; align-items: stretch; gap: 10px; padding: 16px; }
  .ca-value { font-size: 15px; line-height: 1.45; }
  .copy-btn { min-height: 48px; }

  .ticker-desktop { display: none; }
  .ticker-mobile { display: block; order: 2; }
  .ticker { padding: 12px 0; }
  .ticker-track { gap: 16px; font-size: 30px; padding-left: 20px; }
  .ticker-track img { width: 40px; height: 40px; border-radius: 8px; }

  section { padding: 64px 24px; }
  .hero { padding: 0; }
  .card { border-width: 3px; border-radius: 18px; box-shadow: 5px 5px 0 var(--black); padding: 22px; gap: 4px; }

  .memes { gap: 20px; padding: 56px 0 56px 24px; }
  .section-head { flex-direction: column; align-items: flex-start; gap: 20px; padding-right: 24px; }
  .section-head h2 { font-size: 48px; line-height: 1; }
  .section-head p { font-size: 17px; }
  .meme-grid { display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 4px 24px 14px 0; }
  .meme { flex: 0 0 300px; height: 300px; scroll-snap-align: start; border-width: 3px; border-radius: 18px; box-shadow: 6px 6px 0 var(--black); }
  .meme img { width: 360px; height: 244px; margin-left: -180px; }
  .meme img.zoom { width: 624px; height: 424px; margin-left: -312px; top: -54px; }
  .meme figcaption { padding: 12px 10px; font-size: 26px; -webkit-text-stroke-width: 2px; }
  .meme figcaption .sm { font-size: 25px; }
  .meme figcaption .lg { font-size: 42px; }

  .lore { gap: 24px; padding: 56px 24px 64px; border-top: 4px solid var(--black); }
  .lore-intro { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: end; gap: 16px 16px; }
  .lore-intro h2 { font-size: 64px; }
  .lore-intro p { grid-column: 1 / -1; grid-row: 2; font-size: 18px; }
  .lore-intro img { grid-column: 2; grid-row: 1; width: 96px; height: 96px; border-radius: 18px; border-width: 3px; box-shadow: 5px 5px 0 var(--black); margin: 0; }
  .timeline { border-width: 3px; border-radius: 20px; box-shadow: 6px 6px 0 var(--black); }
  .timeline li { display: flex; flex-direction: column; gap: 6px; padding: 20px; }
  .timeline .year { font-size: 30px; }
  .timeline h3 { font-size: 21px; }
  .timeline p { font-size: 17px; }

  .cap-a { --size: 84px; left: 8px; top: 64px; border-width: 3px; box-shadow: 4px 4px 0 var(--black); }
  .cap-b { --size: 66px; right: 10px; top: 110px; border-width: 3px; box-shadow: 4px 4px 0 var(--black); }
  .pogcap img { border-width: 2px; }
  .variants { padding-right: 24px; gap: 16px; }
  .variants h3 { font-size: 34px; }
  .variant-list { gap: 12px; }
  .variant-list li { font-size: 14px; gap: 6px; }
  .reel { gap: 24px; }
  .reel .section-head h2 { -webkit-text-stroke-width: 2px; text-shadow: 4px 4px 0 var(--black); }
  .reel-frame { border-width: 3px; border-radius: 18px; box-shadow: 6px 6px 0 var(--black); }
  .chat-head { flex-direction: column; align-items: flex-start; gap: 10px; padding: 14px 20px; }
  .chat-log { height: 440px; }
  .chat-log p.mine { margin: 0 -20px; padding: 4px 20px; }
  .chat-send { flex-direction: column; align-items: stretch; padding: 16px 20px; text-align: center; }

  .stats { grid-template-columns: 1fr; }
  .stat, .stat:nth-child(2) { padding: 28px 24px; border-right: 0; border-bottom: 4px solid var(--black); }
  .stat:last-child { border-bottom: 0; }
  .stat-num { font-size: 52px; }
  .stat-label { font-size: 16px; }

  .fees { gap: 28px; }
  .fees-head { gap: 14px; }
  .fees-head h2 { font-size: 48px; line-height: 1.04; }
  .fees-head p { font-size: 18px; }
  .fees-grid { gap: 40px; }
  .steps li { grid-template-columns: 52px minmax(0, 1fr); gap: 16px; padding: 22px 0; }
  .num { width: 52px; height: 52px; font-size: 26px; border-radius: 14px; }
  .steps h3 { font-size: 21px; }
  .steps p { font-size: 17px; }
  .split-card { padding: 28px; border-width: 3px; border-radius: 22px; box-shadow: 8px 8px 0 var(--screen); }
  .split-card img { top: -28px; right: -8px; width: 84px; height: 84px; border-radius: 16px; border-width: 3px; }
  .split-card .big { font-size: 120px; }
  .split-card .split-main { font-size: 21px; }
  .split-card p { font-size: 17px; }
  .split-card .btn { align-self: stretch; }

  .chat { gap: 28px; }
  .chat h2 { font-size: 46px; line-height: 1.04; -webkit-text-stroke-width: 3px; text-shadow: 4px 4px 0 var(--black); }
  .chat-grid { gap: 28px; }
  .chat-box { border-width: 3px; border-radius: 20px; box-shadow: 6px 6px 0 var(--black); }
  .chat-log { font-size: 18px; padding: 18px 20px 22px; gap: 10px; }
  .chat-log img { width: 28px; height: 28px; }
  .defs { gap: 20px; }
  .defs h3 { font-size: 38px; }
  .defs p:last-child { font-size: 17px; }

  .buy { gap: 28px; }
  .buy h2 { font-size: 52px; line-height: 1.02; }
  .buy-steps { display: flex; flex-direction: column; gap: 20px; }
  .buy-steps .num { width: 52px; height: 52px; font-size: 26px; }
  .buy-row { flex-direction: column; align-items: stretch; }
  .buy-row .ca-box { max-width: none; }
  .buy-row .btn-lg { min-height: 58px; }

  .site-footer { gap: 28px; padding: 56px 24px 48px; }
  .footer-top { flex-direction: column; gap: 28px; }
  .footer-nav { gap: 14px 24px; font-size: 17px; }
  .footer-mark { gap: 12px; }
  .footer-mark p { text-shadow: 5px 5px 0 var(--screen); }
  .footer-mark img { width: 80px; height: 80px; border-radius: 16px; border-width: 3px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ticker-track, .pogcap, .pogcap svg, .v-spin, .v-jam { animation: none; }
  .btn { transition: none; }
}
