/* ══════════════════════════════════════════════════════════════════
   QUACKY — comic / sticker design system
   yolk yellow · thick ink outlines · green candle glow
   ══════════════════════════════════════════════════════════════════ */

:root {
  --yolk:    #FFCE1F;
  --yolk-lt: #FFE163;
  --yolk-dk: #E5A800;
  --cream:   #FFF6DA;
  --beak:    #F08A16;

  --ink:     #12100C;
  --ink-2:   #241F14;
  --ink-3:   #3B3324;

  --green:   #24D42D;
  --green-n: #48FF5E;
  --green-d: #0C7A15;

  --sky:     #BFE9FF;

  --line: 4px;
  --hard:  6px 6px 0 var(--ink);
  --hard-sm: 4px 4px 0 var(--ink);
  --hard-lg: 10px 10px 0 var(--ink);

  --r: 22px;
  --r-sm: 14px;

  --font-d: 'Luckiest Guy', 'Impact', 'Arial Black', sans-serif;
  --font-b: 'Nunito', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;

  --ease: cubic-bezier(.22,1,.36,1);
  --bounce: cubic-bezier(.34,1.56,.64,1);

  --nav-h: 68px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-b);
  font-weight: 700;
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.is-locked { overflow: hidden; height: 100%; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }

::selection { background: var(--green-n); color: var(--ink); }

/* ─────────────────────────────────────────────
   INTRO
   ───────────────────────────────────────────── */
.intro {
  position: fixed; inset: 0; z-index: 200;
  background: #0b0b0d;
  display: grid; place-items: center;
  transition: opacity .7s var(--ease), transform .9s var(--ease);
}
.intro.is-out { opacity: 0; transform: scale(1.06); pointer-events: none; }

.intro__video {
  width: 100%; height: 100%;
  object-fit: cover;
  background: #0b0b0d;
}

.intro__vig {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(120% 90% at 50% 45%, transparent 40%, rgba(0,0,0,.55) 100%),
    linear-gradient(to top, rgba(0,0,0,.7), transparent 32%);
}

.intro__ui {
  position: absolute; left: 0; right: 0; bottom: 30px;
  display: flex; justify-content: center; align-items: center; gap: 14px;
  padding: 0 18px; flex-wrap: wrap;
}

.sound-btn, .skip-btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 11px 20px;
  border: 3px solid var(--ink);
  border-radius: 999px;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-d);
  letter-spacing: .06em;
  font-size: 15px;
  cursor: pointer;
  box-shadow: var(--hard-sm);
  transition: transform .16s var(--bounce), box-shadow .16s var(--ease), background .2s;
}
.sound-btn:hover, .skip-btn:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--ink); }
.sound-btn:active, .skip-btn:active { transform: translate(3px,3px); box-shadow: 1px 1px 0 var(--ink); }
.sound-btn.is-on { background: var(--yolk); }
.sound-btn:not(.is-on) {
  background: var(--green-n);
  animation: nudge 1.1s ease-in-out infinite;
}
@keyframes nudge {
  0%,100% { transform: translate(0,0) }
  50%     { transform: translate(-3px,-3px) }
}
.skip-btn { background: rgba(255,246,218,.9); }

.intro__progress {
  position: absolute; left: 0; right: 0; bottom: 0; height: 6px;
  background: rgba(255,255,255,.14);
}
.intro__progress i {
  display: block; height: 100%; width: 0;
  background: linear-gradient(90deg, var(--yolk), var(--green-n));
  box-shadow: 0 0 14px var(--green-n);
  transition: width .18s linear;
}

/* ─────────────────────────────────────────────
   AMBIENT FX
   ───────────────────────────────────────────── */
.fx-canvas {
  position: fixed; inset: 0; z-index: 0;
  pointer-events: none; opacity: .85;
}
.fx-dots {
  position: fixed; inset: -20%; z-index: 0; pointer-events: none;
  background-image: radial-gradient(var(--ink) 1.4px, transparent 1.5px);
  background-size: 26px 26px;
  opacity: .055;
  animation: drift 34s linear infinite;
}
@keyframes drift { to { transform: translate3d(26px, 26px, 0); } }

.fx-cursor {
  position: fixed; top: 0; left: 0; z-index: 80;
  width: 460px; height: 460px; margin: -230px 0 0 -230px;
  border-radius: 50%; pointer-events: none; opacity: 0;
  background: radial-gradient(circle, rgba(72,255,94,.20), transparent 62%);
  transition: opacity .5s;
  mix-blend-mode: multiply;
}
@media (hover: none) { .fx-cursor { display: none; } }
@media (prefers-reduced-motion: reduce) { .fx-dots { animation: none; } }

/* ─────────────────────────────────────────────
   NAV
   ───────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 90;
  height: var(--nav-h);
  display: flex; align-items: center; gap: 18px;
  padding: 0 clamp(12px, 3vw, 26px);
  background: var(--yolk);
  border-bottom: var(--line) solid var(--ink);
  opacity: 0; transform: translateY(-100%);
  transition: transform .6s var(--bounce), opacity .5s var(--ease), box-shadow .3s;
}
.nav.is-in { opacity: 1; transform: none; }
.nav.is-stuck { box-shadow: 0 8px 0 rgba(18,16,12,.13); }

.nav__brand { display: flex; align-items: center; gap: 10px; flex: none; }
.nav__avatar {
  width: 40px; height: 40px; border-radius: 50%;
  border: 3px solid var(--ink); overflow: hidden; flex: none;
  background: var(--yolk-lt);
  transition: transform .3s var(--bounce);
}
.nav__brand:hover .nav__avatar { transform: rotate(-10deg) scale(1.08); }
.nav__avatar img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%; }
.nav__name {
  font-family: var(--font-d); font-size: 24px; letter-spacing: .04em;
  -webkit-text-stroke: 0;
  text-shadow: 2px 2px 0 rgba(255,255,255,.5);
}

.nav__links { display: flex; gap: 4px; margin-left: 8px; }
.nav__links a {
  padding: 8px 12px; border-radius: 999px;
  font-size: 14px; font-weight: 900; letter-spacing: .02em;
  transition: background .18s, transform .18s var(--bounce);
}
.nav__links a:hover { background: rgba(18,16,12,.1); transform: translateY(-2px); }

.nav__right { margin-left: auto; display: flex; align-items: center; gap: 8px; }

.ca-pill {
  display: inline-flex; align-items: center; gap: 8px;
  max-width: 260px;
  padding: 6px 12px 6px 6px;
  border: 3px solid var(--ink); border-radius: 999px;
  background: var(--cream); cursor: pointer;
  box-shadow: var(--hard-sm);
  transition: transform .16s var(--bounce), box-shadow .16s;
}
.ca-pill:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--ink); }
.ca-pill:active { transform: translate(2px,2px); box-shadow: 2px 2px 0 var(--ink); }
.ca-pill__tag {
  background: var(--ink); color: var(--yolk);
  font-family: var(--font-d); font-size: 12px; letter-spacing: .08em;
  padding: 3px 9px; border-radius: 999px;
}
.ca-pill__val {
  font-family: ui-monospace, 'SFMono-Regular', Menlo, monospace;
  font-size: 12.5px; font-weight: 700;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.ca-pill__copy { opacity: .5; font-size: 13px; }
.ca-pill.is-empty { background: var(--green-n); }

.ico-btn {
  width: 40px; height: 40px; flex: none;
  display: grid; place-items: center;
  border: 3px solid var(--ink); border-radius: 50%;
  background: var(--cream);
  box-shadow: var(--hard-sm);
  transition: transform .16s var(--bounce), box-shadow .16s, background .2s;
}
.ico-btn svg { width: 17px; height: 17px; fill: var(--ink); }
.ico-btn:hover { transform: translate(-2px,-2px) rotate(-6deg); box-shadow: 6px 6px 0 var(--ink); background: var(--yolk-lt); }
.ico-btn:active { transform: translate(2px,2px); box-shadow: 2px 2px 0 var(--ink); }

/* ─────────────────────────────────────────────
   BUTTONS
   ───────────────────────────────────────────── */
.buy-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 11px 22px;
  border: 3px solid var(--ink); border-radius: 999px;
  background: var(--green);
  color: var(--ink);
  font-family: var(--font-d); font-size: 16px; letter-spacing: .06em;
  box-shadow: var(--hard-sm);
  cursor: pointer;
  transition: transform .16s var(--bounce), box-shadow .16s, background .2s;
}
.buy-btn:hover { transform: translate(-3px,-3px); background: var(--green-n); box-shadow: 8px 8px 0 var(--ink); }
.buy-btn:active { transform: translate(2px,2px); box-shadow: 2px 2px 0 var(--ink); }
.buy-btn--big { padding: 17px 36px; font-size: 22px; box-shadow: var(--hard); }
.buy-btn--wide { width: 100%; padding: 15px; font-size: 18px; }

.ghost-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 15px 28px;
  border: 3px solid var(--ink); border-radius: 999px;
  background: transparent;
  font-family: var(--font-d); font-size: 18px; letter-spacing: .05em;
  transition: transform .16s var(--bounce), background .2s, box-shadow .16s;
}
.ghost-btn:hover { background: var(--ink); color: var(--yolk); transform: translate(-2px,-2px); box-shadow: var(--hard-sm); }
.ghost-btn--dark { border-color: var(--yolk); color: var(--yolk); }
.ghost-btn--dark:hover { background: var(--yolk); color: var(--ink); box-shadow: 4px 4px 0 var(--yolk); }

/* burger + mobile menu */
.burger {
  display: none; width: 42px; height: 42px;
  border: 3px solid var(--ink); border-radius: 12px;
  background: var(--cream); cursor: pointer;
  padding: 0; place-items: center; gap: 4px;
  box-shadow: var(--hard-sm);
}
.burger i { display: block; width: 18px; height: 3px; background: var(--ink); border-radius: 2px; transition: .25s var(--ease); }
.burger[aria-expanded="true"] i:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] i:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] i:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed; top: var(--nav-h); left: 0; right: 0; z-index: 88;
  background: var(--yolk);
  border-bottom: var(--line) solid var(--ink);
  padding: 14px clamp(14px,4vw,22px) 20px;
  display: grid; gap: 4px;
  transform: translateY(-115%);
  transition: transform .4s var(--ease);
}
.mobile-menu.is-open { transform: none; }
.mobile-menu a {
  padding: 12px 10px; border-radius: 12px;
  font-family: var(--font-d); font-size: 19px; letter-spacing: .04em;
}
.mobile-menu a:active { background: rgba(18,16,12,.12); }
.mobile-menu__row { display: flex; gap: 10px; margin: 6px 0 10px; }
.mobile-menu__row a {
  flex: 1; text-align: center;
  border: 3px solid var(--ink); background: var(--cream);
  box-shadow: var(--hard-sm); font-size: 15px;
}

/* ─────────────────────────────────────────────
   HERO
   ───────────────────────────────────────────── */
.hero {
  position: relative; z-index: 2;
  min-height: 100svh;
  padding: calc(var(--nav-h) + 40px) clamp(16px,5vw,60px) 90px;
  display: grid; align-items: center;
  background:
    radial-gradient(100% 70% at 78% 42%, rgba(72,255,94,.20), transparent 60%),
    linear-gradient(170deg, var(--yolk-lt) 0%, var(--yolk) 44%, #FFDC55 100%);
  border-bottom: var(--line) solid var(--ink);
  overflow: hidden;
}
.hero__glow {
  position: absolute; inset: auto -10% -40% -10%; height: 70%;
  background: radial-gradient(60% 100% at 50% 100%, rgba(255,255,255,.7), transparent 70%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  width: min(1200px, 100%); margin: 0 auto;
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: clamp(24px, 5vw, 70px); align-items: center;
}

.kicker {
  display: inline-flex; align-items: center; gap: 9px;
  margin: 0 0 18px;
  padding: 7px 16px 7px 12px;
  border: 3px solid var(--ink); border-radius: 999px;
  background: var(--cream);
  font-size: 13px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase;
  box-shadow: var(--hard-sm);
}
.kicker .dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--green); border: 2px solid var(--ink);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{transform:scale(1)} 50%{transform:scale(1.35)} }

.wordmark {
  margin: 0 0 14px;
  font-family: var(--font-d);
  font-size: clamp(62px, 12vw, 150px);
  line-height: .88; letter-spacing: .01em;
  display: flex; flex-wrap: wrap;
}
.wordmark span {
  color: var(--cream);
  -webkit-text-stroke: 5px var(--ink);
  paint-order: stroke fill;
  text-shadow: 8px 8px 0 var(--ink);
  opacity: 0;
}
/* the letters drop in only once the intro is out of the way */
body.is-live .wordmark span {
  animation: pop .7s var(--bounce) both;
  animation-delay: calc(var(--i, 0) * 70ms);
}
@media (prefers-reduced-motion: reduce) {
  .wordmark span { opacity: 1; }
  body.is-live .wordmark span { animation: none; }
}
.wordmark__q { color: var(--green-n) !important; }
@keyframes pop {
  from { opacity: 0; transform: translateY(24px) rotate(-8deg) scale(.7); }
  to   { opacity: 1; transform: none; }
}
.wordmark span:hover { animation: wiggle .5s ease; }
@keyframes wiggle {
  25% { transform: rotate(-7deg) scale(1.1) }
  75% { transform: rotate(7deg) scale(1.1) }
}

.lede {
  margin: 0 0 28px; max-width: 30ch;
  font-size: clamp(17px, 2vw, 21px); line-height: 1.5;
}
.lede b { background: var(--cream); box-shadow: 0 0 0 6px var(--cream); border-radius: 2px; }

.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 26px; }

.ca-box {
  display: grid; gap: 3px; text-align: left; width: min(560px, 100%);
  padding: 12px 18px;
  border: 3px solid var(--ink); border-radius: var(--r-sm);
  background: var(--cream); cursor: pointer;
  box-shadow: var(--hard-sm);
  transition: transform .16s var(--bounce), box-shadow .16s;
}
.ca-box:hover { transform: translate(-3px,-3px); box-shadow: 8px 8px 0 var(--ink); }
.ca-box:active { transform: translate(2px,2px); box-shadow: 2px 2px 0 var(--ink); }
.ca-box__label { font-size: 11.5px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; opacity: .65; }
.ca-box__label em { font-style: normal; opacity: .8; }
.ca-box__val {
  font-family: ui-monospace, 'SFMono-Regular', Menlo, monospace;
  font-size: clamp(11px, 1.55vw, 15px); font-weight: 700;
  word-break: break-all; line-height: 1.35;
}
.ca-box.is-empty .ca-box__val { font-family: var(--font-d); letter-spacing: .05em; color: var(--green-d); }
.ca-box--dark { background: var(--ink-2); border-color: var(--yolk); box-shadow: 4px 4px 0 var(--yolk); color: var(--cream); }
.ca-box--dark:hover { box-shadow: 8px 8px 0 var(--yolk); }
.ca-box--dark.is-empty .ca-box__val { color: var(--green-n); }

/* duck art */
.hero__art { position: relative; display: grid; place-items: center; min-height: 340px; }

.duck { position: relative; width: min(430px, 82vw); aspect-ratio: 1; display: grid; place-items: center; }
.duck__img {
  width: 88%; height: 88%; object-fit: cover;
  border-radius: 50%;
  border: 6px solid var(--ink);
  box-shadow: 14px 14px 0 var(--ink), 0 0 70px rgba(72,255,94,.35);
  animation: bob 4.2s ease-in-out infinite;
}
@keyframes bob {
  0%,100% { transform: translateY(0) rotate(-1.5deg) }
  50%     { transform: translateY(-18px) rotate(1.5deg) }
}
.duck__ring {
  position: absolute; inset: 0; border-radius: 50%;
  border: 4px dashed var(--ink); opacity: .5;
  animation: spin 24s linear infinite;
}
.duck__ring--2 {
  inset: -22px; border-style: dotted; border-color: var(--green-d); opacity: .45;
  animation: spin 34s linear infinite reverse;
}
@keyframes spin { to { transform: rotate(360deg) } }

.candle {
  position: absolute; width: 22px; border-radius: 6px;
  background: var(--green-n);
  border: 3px solid var(--ink);
  box-shadow: 0 0 22px var(--green-n);
}
.candle--a { height: 78px;  top: 6%;  left: 2%;  animation: float 5s ease-in-out infinite; }
.candle--b { height: 116px; bottom: 8%; right: 3%; animation: float 6.4s ease-in-out infinite .6s; }
.candle--c { height: 54px;  bottom: 26%; left: 8%; animation: float 4.4s ease-in-out infinite 1.1s; }
@keyframes float {
  0%,100% { transform: translateY(0) rotate(-4deg) }
  50%     { transform: translateY(-26px) rotate(6deg) }
}

.sticker {
  position: absolute;
  padding: 8px 15px;
  border: 3px solid var(--ink); border-radius: 999px;
  background: var(--cream);
  font-family: var(--font-d); font-size: 14px; letter-spacing: .05em;
  box-shadow: var(--hard-sm);
  white-space: nowrap;
}
.sticker--1 { top: 4%;   right: 4%;  transform: rotate(9deg);   background: var(--green-n); }
.sticker--2 { bottom: 12%; left: -2%; transform: rotate(-8deg); }
.sticker--3 { top: 46%;  right: -4%; transform: rotate(-5deg);  background: var(--beak); }

.scroll-hint {
  position: absolute; left: 50%; bottom: 22px; translate: -50% 0;
  width: 26px; height: 42px;
  border: 3px solid var(--ink); border-radius: 999px;
  display: grid; justify-items: center; padding-top: 6px;
}
.scroll-hint span {
  width: 4px; height: 9px; border-radius: 3px; background: var(--ink);
  animation: wheel 1.5s ease-in-out infinite;
}
@keyframes wheel { 0%{opacity:0;transform:translateY(0)} 40%{opacity:1} 100%{opacity:0;transform:translateY(14px)} }

/* ─────────────────────────────────────────────
   TICKER
   ───────────────────────────────────────────── */
.ticker {
  position: relative; z-index: 3;
  background: var(--ink); color: var(--yolk);
  border-bottom: var(--line) solid var(--ink);
  overflow: hidden; padding: 13px 0;
}
.ticker__track { display: flex; width: max-content; animation: slide 34s linear infinite; }
.ticker__unit {
  display: flex; align-items: center; gap: 22px; padding-right: 22px;
  font-family: var(--font-d); font-size: 21px; letter-spacing: .07em;
  white-space: nowrap;
}
.ticker__unit i { font-style: normal; font-size: 16px; opacity: .9; }
@keyframes slide { to { transform: translateX(-16.6667%) } }
@media (prefers-reduced-motion: reduce) { .ticker__track { animation: none } }

/* ─────────────────────────────────────────────
   SECTIONS
   ───────────────────────────────────────────── */
.section {
  position: relative; z-index: 2;
  padding: clamp(64px, 9vw, 118px) clamp(16px, 5vw, 60px);
}
.section > * { width: min(1180px, 100%); margin-inline: auto; }

.section--dark {
  background: var(--ink);
  color: var(--cream);
  border-block: var(--line) solid var(--ink);
}
.section--dark::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(255,206,31,.5) 1.2px, transparent 1.3px);
  background-size: 22px 22px; opacity: .12;
}
.section--cream { background: var(--sky); border-block: var(--line) solid var(--ink); }

.sec-head { text-align: center; margin-bottom: clamp(36px, 5vw, 60px); }
.sec-title {
  margin: 0 0 12px;
  font-family: var(--font-d);
  font-size: clamp(34px, 6.2vw, 68px);
  line-height: 1; letter-spacing: .02em;
  color: var(--cream);
  -webkit-text-stroke: 4px var(--ink);
  paint-order: stroke fill;
  text-shadow: 6px 6px 0 var(--ink);
}
.sec-title span { color: var(--green-n); }
.sec-title--light { color: var(--ink-2); -webkit-text-stroke-color: var(--yolk); text-shadow: 6px 6px 0 var(--yolk); }
.sec-title--light span { color: var(--green-n); }
.sec-sub { margin: 0 auto; max-width: 56ch; font-size: 17px; opacity: .82; }
.sec-sub--light { opacity: .72; }

/* reveal */
.reveal {
  opacity: 0; transform: translateY(28px) scale(.97);
  transition: opacity .6s var(--ease) var(--d, 0s), transform .7s var(--bounce) var(--d, 0s);
}
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ─────────────────────────────────────────────
   CARDS
   ───────────────────────────────────────────── */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.card {
  background: var(--cream);
  border: var(--line) solid var(--ink); border-radius: var(--r);
  padding: 16px 16px 22px;
  box-shadow: var(--hard);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  will-change: transform;
}
.card:hover { box-shadow: var(--hard-lg); }
.card__img {
  border: 3px solid var(--ink); border-radius: var(--r-sm);
  overflow: hidden; margin-bottom: 16px; background: var(--yolk-lt);
  aspect-ratio: 1;
}
.card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.card:hover .card__img img { transform: scale(1.06); }
.card h3 {
  margin: 0 0 8px; font-family: var(--font-d); font-size: 24px;
  letter-spacing: .03em;
}
.card p { margin: 0; font-size: 15.5px; line-height: 1.55; opacity: .82; font-weight: 700; }

/* ─────────────────────────────────────────────
   WIDE BAND
   ───────────────────────────────────────────── */
.band {
  position: relative; z-index: 2;
  border-block: var(--line) solid var(--ink);
  overflow: hidden;
  display: grid; place-items: center;
  min-height: clamp(280px, 42vw, 520px);
  background: var(--ink);
}
.band__img { position: absolute; inset: 0; }
.band__img img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 42%; }
.band__veil {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,9,6,.88), rgba(10,9,6,.25) 55%, rgba(10,9,6,.6));
}
.band__quote {
  position: relative; margin: 0; padding: 0 22px; text-align: center;
  font-family: var(--font-d);
  font-size: clamp(22px, 3.6vw, 44px); line-height: 1.22; letter-spacing: .02em;
  color: var(--cream);
  text-shadow: 4px 4px 0 var(--ink);
}
.band__quote span { color: var(--green-n); }

/* ─────────────────────────────────────────────
   GALLERY
   ───────────────────────────────────────────── */
.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 18px;
}
.g-card {
  position: relative; padding: 0; cursor: pointer;
  border: var(--line) solid var(--ink); border-radius: var(--r-sm);
  overflow: hidden; background: var(--yolk-lt);
  box-shadow: var(--hard-sm);
  transition: transform .25s var(--bounce), box-shadow .25s var(--ease);
}
.g-card:nth-child(odd)  { rotate: -.7deg; }
.g-card:nth-child(even) { rotate: .7deg; }
.g-card:hover { transform: translate(-4px,-4px) scale(1.02); rotate: 0deg; box-shadow: var(--hard-lg); z-index: 3; }
.g-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.g-card:hover img { transform: scale(1.07); }
.g-card--wide { grid-column: span 2; }
.g-card--tall { grid-row: span 2; }
.g-card__cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 26px 12px 10px;
  font-family: var(--font-d); font-size: 15px; letter-spacing: .04em;
  color: var(--cream); text-align: left;
  background: linear-gradient(to top, rgba(10,9,6,.85), transparent);
  transform: translateY(100%); opacity: 0;
  transition: .3s var(--ease);
}
.g-card:hover .g-card__cap { transform: none; opacity: 1; }

/* ─────────────────────────────────────────────
   TOKENOMICS
   ───────────────────────────────────────────── */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat {
  position: relative;
  background: var(--yolk); color: var(--ink);
  border: var(--line) solid var(--cream); border-radius: var(--r);
  padding: 26px 18px; text-align: center;
  box-shadow: 8px 8px 0 var(--green-d);
}
.stat:nth-child(2) { background: var(--green-n); box-shadow: 8px 8px 0 var(--yolk-dk); }
.stat:nth-child(3) { background: var(--cream);   box-shadow: 8px 8px 0 var(--green-d); }
.stat:nth-child(4) { background: var(--beak);    box-shadow: 8px 8px 0 var(--yolk-dk); }
.stat b {
  display: block; font-family: var(--font-d);
  font-size: clamp(28px, 3.6vw, 46px); line-height: 1; letter-spacing: .01em;
  margin-bottom: 8px;
}
.stat span { font-size: 13px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; opacity: .7; }

.fineprint {
  margin: 34px auto 0; max-width: 62ch; text-align: center;
  font-size: 15px; opacity: .6; font-weight: 700;
}

/* ─────────────────────────────────────────────
   QUACKMAP
   ───────────────────────────────────────────── */
.path { list-style: none; margin: 0 auto; padding: 0; display: grid; gap: 20px; max-width: 900px; }
.step {
  display: grid; grid-template-columns: 74px 1fr 120px; align-items: center; gap: 20px;
  background: var(--cream);
  border: var(--line) solid var(--ink); border-radius: var(--r);
  padding: 18px 22px;
  box-shadow: var(--hard);
  transition: transform .25s var(--ease), box-shadow .25s;
}
.step:hover { transform: translateX(6px); box-shadow: var(--hard-lg); }
.step:nth-child(even) { background: var(--yolk-lt); }
.step__no {
  display: grid; place-items: center;
  width: 62px; height: 62px; border-radius: 50%;
  border: 3px solid var(--ink); background: var(--green-n);
  font-family: var(--font-d); font-size: 22px;
  box-shadow: var(--hard-sm);
}
.step:nth-child(even) .step__no { background: var(--cream); }
.step__body h3 { margin: 0 0 5px; font-family: var(--font-d); font-size: 26px; letter-spacing: .04em; }
.step__body p { margin: 0; font-size: 15.5px; opacity: .8; line-height: 1.5; }
.step__img {
  width: 110px; height: 110px; object-fit: cover;
  border: 3px solid var(--ink); border-radius: var(--r-sm);
  rotate: 3deg; transition: rotate .3s var(--bounce), transform .3s;
}
.step:hover .step__img { rotate: -3deg; transform: scale(1.06); }

/* ─────────────────────────────────────────────
   HOW TO BUY
   ───────────────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.how {
  position: relative;
  background: var(--cream);
  border: var(--line) solid var(--ink); border-radius: var(--r);
  padding: 30px 20px 24px;
  box-shadow: var(--hard);
  transition: transform .25s var(--bounce), box-shadow .25s;
}
.how:hover { transform: translateY(-6px) rotate(-1deg); box-shadow: var(--hard-lg); }
.how__n {
  position: absolute; top: -22px; left: 18px;
  width: 44px; height: 44px; display: grid; place-items: center;
  border: 3px solid var(--ink); border-radius: 50%;
  background: var(--yolk);
  font-family: var(--font-d); font-size: 20px;
  box-shadow: var(--hard-sm);
}
.how h3 { margin: 6px 0 8px; font-family: var(--font-d); font-size: 21px; letter-spacing: .03em; }
.how p { margin: 0; font-size: 15px; opacity: .8; line-height: 1.5; }

/* ─────────────────────────────────────────────
   CTA
   ───────────────────────────────────────────── */
.cta {
  position: relative; z-index: 2;
  padding: clamp(70px, 10vw, 130px) clamp(16px,5vw,60px);
  background:
    radial-gradient(70% 90% at 50% 0%, rgba(72,255,94,.18), transparent 62%),
    var(--ink);
  border-top: var(--line) solid var(--ink);
  text-align: center; color: var(--cream);
  overflow: hidden;
}
.cta__inner { width: min(760px, 100%); margin: 0 auto; }
.cta__duck {
  width: 132px; height: 132px; object-fit: cover;
  border-radius: 50%; border: 5px solid var(--yolk);
  margin: 0 auto 24px;
  box-shadow: 0 0 60px rgba(72,255,94,.45);
  animation: bob 4.6s ease-in-out infinite;
}
.cta h2 {
  margin: 0 0 12px; font-family: var(--font-d);
  font-size: clamp(34px, 6.4vw, 66px); line-height: 1.02; letter-spacing: .02em;
  color: var(--yolk);
  text-shadow: 6px 6px 0 rgba(72,255,94,.55);
}
.cta p { margin: 0 0 30px; opacity: .75; font-size: 17px; }
.cta__row { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-bottom: 26px; }
.cta .ca-box { margin: 0 auto; }

/* ─────────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────────── */
.foot {
  position: relative; z-index: 2;
  background: var(--yolk);
  border-top: var(--line) solid var(--ink);
  padding: 44px clamp(16px,5vw,60px) 34px;
  text-align: center;
}
.foot__brand { display: inline-flex; align-items: center; gap: 11px; margin-bottom: 18px; }
.foot__brand img { width: 44px; height: 44px; border-radius: 50%; border: 3px solid var(--ink); object-fit: cover; }
.foot__brand span { font-family: var(--font-d); font-size: 26px; letter-spacing: .04em; }
.foot__links { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 20px; }
.foot__links a {
  padding: 8px 16px; border: 3px solid var(--ink); border-radius: 999px;
  background: var(--cream); font-size: 14px; font-weight: 900;
  box-shadow: var(--hard-sm);
  transition: transform .16s var(--bounce), box-shadow .16s;
}
.foot__links a:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--ink); }
.foot__note { margin: 0 auto 12px; max-width: 62ch; font-size: 13px; opacity: .68; line-height: 1.55; }
.foot__copy { margin: 0; font-size: 12.5px; opacity: .55; letter-spacing: .06em; text-transform: uppercase; }

/* ─────────────────────────────────────────────
   LIGHTBOX + TOAST
   ───────────────────────────────────────────── */
.lightbox {
  position: fixed; inset: 0; z-index: 150;
  display: grid; place-items: center;
  padding: 26px;
  background: rgba(8,7,4,.9);
  opacity: 0; visibility: hidden;
  transition: opacity .3s var(--ease), visibility .3s;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: min(920px, 92vw); max-height: 86vh;
  border: 5px solid var(--yolk); border-radius: var(--r);
  box-shadow: 0 0 80px rgba(0,0,0,.7);
  transform: scale(.92); transition: transform .35s var(--bounce);
}
.lightbox.is-open img { transform: none; }
.lightbox__close {
  position: absolute; top: 18px; right: 18px;
  width: 46px; height: 46px; border-radius: 50%;
  border: 3px solid var(--ink); background: var(--yolk);
  font-size: 19px; cursor: pointer; line-height: 1;
  box-shadow: var(--hard-sm);
  transition: transform .18s var(--bounce);
}
.lightbox__close:hover { transform: rotate(90deg) scale(1.08); }

.toast {
  position: fixed; left: 50%; bottom: 26px; translate: -50% 0; z-index: 160;
  padding: 13px 24px;
  border: 3px solid var(--ink); border-radius: 999px;
  background: var(--green-n); color: var(--ink);
  font-family: var(--font-d); font-size: 15px; letter-spacing: .04em;
  box-shadow: var(--hard);
  opacity: 0; transform: translateY(20px) scale(.9); pointer-events: none;
  transition: .35s var(--bounce);
}
.toast.is-on { opacity: 1; transform: translate(0,0) scale(1); translate: -50% 0; }

/* ─────────────────────────────────────────────
   RESPONSIVE
   ───────────────────────────────────────────── */
@media (max-width: 1080px) {
  .nav__links { display: none; }
  .burger { display: grid; }
  .grid { grid-template-columns: repeat(3, 1fr); }
  .stats, .steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__copy { display: grid; justify-items: center; }
  .lede { max-width: 34ch; }
  .hero__cta { justify-content: center; }
  .hero__art { order: -1; }
  .duck { width: min(310px, 70vw); }
  .cards { grid-template-columns: 1fr; }
  .card { max-width: 460px; margin-inline: auto; }
  .step { grid-template-columns: 58px 1fr; }
  .step__img { display: none; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .ca-pill { display: none; }
  .grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .g-card--tall { grid-row: span 1; }
  .stats, .steps { grid-template-columns: 1fr; }
  .sticker--3 { display: none; }
  .nav__name { font-size: 20px; }
  .buy-btn--big { padding: 15px 26px; font-size: 19px; }
  .wordmark span { -webkit-text-stroke-width: 4px; text-shadow: 5px 5px 0 var(--ink); }
  .intro__ui { bottom: 18px; }
}

@media (max-width: 460px) {
  .nav__buy { display: none; }
  .grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .g-card--wide { grid-column: span 1; }
  .sticker--2 { display: none; }
}
