/* =========================================================
   FRAP — house style
   acid · ink · hands
   brand hex sampled from the swatch: #CDFE02
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Space+Grotesk:wght@400;500;700&family=Space+Mono:wght@400;700&display=swap');

:root {
  --acid:      #CDFE02;   /* THE color. everything lives on it */
  --acid-deep: #9EC500;   /* pressed states, patterns          */
  --acid-dark: #0B0F03;   /* near-black with a green cast      */
  --ink:       #101010;
  --white:     #FFFFFF;
  --pink:      #F8B0D0;   /* the gun. danger, but cute         */
  --gold:      #F8D068;   /* his actual fur                    */

  --font-display: 'Archivo Black', system-ui, sans-serif;
  --font-body:    'Space Grotesk', system-ui, sans-serif;
  --font-mono:    'Space Mono', ui-monospace, monospace;

  --border: 4px solid var(--ink);
  --shadow:    7px 7px 0 var(--ink);
  --shadow-lg: 12px 12px 0 var(--ink);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--acid);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--ink); color: var(--acid); }

/* acid scrollbar */
::-webkit-scrollbar { width: 14px; }
::-webkit-scrollbar-track { background: var(--acid); border-left: 2px solid var(--ink); }
::-webkit-scrollbar-thumb { background: var(--ink); border: 3px solid var(--acid); }

a { color: inherit; text-decoration: none; }
section[id], header[id] { scroll-margin-top: 76px; }
img { display: block; max-width: 100%; }
button { font-family: inherit; color: inherit; background: none; border: none; cursor: pointer; }

:focus-visible { outline: 3px dashed var(--ink); outline-offset: 4px; }
.grip :focus-visible,
.howto :focus-visible { outline-color: var(--acid); }

/* ---------- sticker treatment for the transparent PNGs ---------- */
.sticker {
  filter:
    drop-shadow(3px 0 0 var(--white))
    drop-shadow(-3px 0 0 var(--white))
    drop-shadow(0 3px 0 var(--white))
    drop-shadow(0 -3px 0 var(--white))
    drop-shadow(9px 11px 0 rgba(16, 16, 16, 0.85));
}

/* ---------- shared bits ---------- */
.label {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: inline-block;
  background: var(--ink);
  color: var(--acid);
  padding: 6px 12px;
  transform: rotate(-1deg);
}
.label--onink { background: var(--acid); color: var(--ink); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.02em;
  padding: 14px 24px;
  border: var(--border);
  box-shadow: var(--shadow);
  transition: transform 0.14s ease, box-shadow 0.14s ease;
  text-transform: uppercase;
  user-select: none;
}
.btn:hover  { transform: translate(-3px, -3px); box-shadow: 10px 10px 0 var(--ink); }
.btn:active { transform: translate(3px, 3px);  box-shadow: 3px 3px 0 var(--ink); }

.btn--ink   { background: var(--ink);   color: var(--acid); }
.btn--white { background: var(--white); color: var(--ink); }
.btn--acid  { background: var(--acid);  color: var(--ink); }
.btn--pink  { background: var(--pink);  color: var(--ink); }
.btn--big   { font-size: 22px; padding: 18px 32px; }

/* reveal-on-scroll */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.6s cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
[data-reveal].is-in { opacity: 1; transform: translateY(0); }

/* =========================================================
   nav
   ========================================================= */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 28px;
  background: var(--acid);
  border-bottom: var(--border);
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1;
}
.nav__brand-chip {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  background: var(--ink);
  color: var(--acid);
  border-radius: 50%;
  font-size: 17px;
  transform: rotate(-8deg);
  transition: transform 0.2s ease;
}
.nav__brand:hover .nav__brand-chip { transform: rotate(8deg) scale(1.08); }

.nav__links {
  display: flex;
  gap: 26px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.nav__links a { position: relative; padding-bottom: 2px; }
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 3px;
  background: var(--ink);
  transition: width 0.22s ease;
}
.nav__links a:hover::after { width: 100%; }

.nav__buy { font-size: 14px; padding: 10px 16px; box-shadow: 4px 4px 0 var(--ink); }
.nav__buy:hover { box-shadow: 6px 6px 0 var(--ink); }
.nav__buy:active { box-shadow: 2px 2px 0 var(--ink); }

/* =========================================================
   hero
   ========================================================= */

.hero {
  position: relative;
  overflow: hidden;
  /* halftone dots fading in from the edges */
  background:
    radial-gradient(rgba(16, 16, 16, 0.14) 15%, transparent 16%) 0 0 / 18px 18px,
    var(--acid);
}

.hero__inner {
  position: relative;
  max-width: 1320px;
  margin: 0 auto;
  padding: 72px 32px 96px;
  min-height: 560px;
}

.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.24em;
  background: var(--ink);
  color: var(--acid);
  padding: 8px 16px;
  transform: rotate(-1.5deg);
  margin-bottom: 20px;
}
.hero__kicker-star { color: var(--pink); }

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(110px, 24vw, 330px);
  line-height: 0.82;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
  user-select: none;
}
.hero__title span {
  display: inline-block;
  transition: transform 0.18s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.hero__title span:hover { transform: translateY(-14px) rotate(-4deg); }
.hero__title span:nth-child(2):hover { transform: translateY(10px) rotate(3deg); }
.hero__title span:nth-child(4):hover { transform: translateY(-10px) rotate(6deg); }

.hero__sub {
  font-size: clamp(19px, 2.2vw, 26px);
  font-weight: 500;
  line-height: 1.3;
  max-width: 560px;
  margin: 28px 0 36px;
  position: relative;
  z-index: 1;
}

.hero__ctas {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  position: relative;
  z-index: 3;
}
.hero__meta {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

/* the dog + his rotating burst */
.hero__dog-zone {
  position: absolute;
  right: 0;
  top: 40px;
  width: clamp(300px, 34vw, 500px);
  z-index: 2;
}

.hero__burst {
  position: absolute;
  inset: -14%;
  border-radius: 50%;
  background: repeating-conic-gradient(
    var(--ink) 0deg 7deg,
    transparent 7deg 26deg
  );
  -webkit-mask: radial-gradient(circle, rgba(0,0,0,1) 30%, transparent 70%);
  mask: radial-gradient(circle, rgba(0,0,0,1) 30%, transparent 70%);
  opacity: 0.14;
  animation: burst-spin 26s linear infinite;
  pointer-events: none;
}
@keyframes burst-spin { to { transform: rotate(360deg); } }

.hero__dog {
  position: relative;
  display: block;
  width: 100%;
  animation: dog-bob 4.5s ease-in-out infinite;
}
@keyframes dog-bob {
  0%, 100% { transform: rotate(2deg) translateY(0); }
  50%      { transform: rotate(-1deg) translateY(-10px); }
}
.hero__dog img { width: 100%; }
.hero__dog.is-petted { animation: dog-pet 0.5s cubic-bezier(0.34, 1.56, 0.64, 1); }
@keyframes dog-pet {
  0%   { transform: scale(1) rotate(2deg); }
  35%  { transform: scale(0.9) rotate(-4deg); }
  70%  { transform: scale(1.08) rotate(4deg); }
  100% { transform: scale(1) rotate(2deg); }
}
.hero__dog.is-spinning { animation: dog-spin 0.8s cubic-bezier(0.34, 1.2, 0.64, 1); }
@keyframes dog-spin { to { transform: rotate(362deg); } }

.hero__count {
  position: absolute;
  left: 50%;
  bottom: -18px;
  transform: translateX(-50%) rotate(-2deg);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  background: var(--white);
  border: 3px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  padding: 6px 12px;
  white-space: nowrap;
  pointer-events: none;
}

/* floating "+1 GOOD BOY" particles (spawned by JS) */
.pop {
  position: fixed;
  z-index: 500;
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--ink);
  text-shadow: 2px 2px 0 var(--white);
  pointer-events: none;
  animation: pop-rise 1s ease-out forwards;
  white-space: nowrap;
}
.pop--pink  { color: var(--pink);  text-shadow: 2px 2px 0 var(--ink); }
.pop--white { color: var(--white); text-shadow: 2px 2px 0 var(--ink); }
@keyframes pop-rise {
  0%   { opacity: 0; transform: translateY(6px)  rotate(var(--rot, 0deg)) scale(0.7); }
  15%  { opacity: 1; transform: translateY(-6px) rotate(var(--rot, 0deg)) scale(1.05); }
  100% { opacity: 0; transform: translateY(-70px) rotate(var(--rot, 0deg)) scale(1); }
}

/* checkerboard rumble strip between hero and ticker */
.checker {
  height: 30px;
  border-top: var(--border);
  background:
    repeating-conic-gradient(var(--ink) 0% 25%, var(--acid) 0% 50%)
    0 0 / 30px 30px;
}

/* =========================================================
   ticker
   ========================================================= */

.ticker {
  background: var(--ink);
  color: var(--acid);
  border-bottom: var(--border);
  overflow: hidden;
  padding: 14px 0;
}
.ticker__track {
  display: flex;
  align-items: center;
  gap: 26px;
  width: max-content;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 0.02em;
  animation: ticker-slide 30s linear infinite;
}
.ticker__track:hover { animation-play-state: paused; }
.ticker__track i { font-style: normal; color: var(--pink); font-size: 18px; }
@keyframes ticker-slide { to { transform: translateX(-50%); } }

/* =========================================================
   stick-up
   ========================================================= */

.stickup {
  border-bottom: var(--border);
  overflow: hidden;
  background:
    radial-gradient(rgba(16, 16, 16, 0.1) 15%, transparent 16%) 0 0 / 22px 22px,
    var(--acid);
}

.stickup__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 90px 32px 100px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 0;
  align-items: center;
}

/* gun.png has ~45% empty canvas on the right — scale it up and let
   that space slide under the copy column */
.stickup__art { position: relative; z-index: 0; }
.stickup__dog {
  display: block;
  width: 172%;
  max-width: none;
  transition: transform 0.2s ease;
}
.stickup__dog:hover { transform: translateY(-6px) rotate(-1deg); }
.stickup__dog img { width: 100%; }

.stickup__dog.is-fired { animation: recoil 0.45s cubic-bezier(0.34, 1.56, 0.64, 1); }
@keyframes recoil {
  0%   { transform: translate(0, 0) rotate(0deg); }
  25%  { transform: translate(-16px, 6px) rotate(-3deg); }
  100% { transform: translate(0, 0) rotate(0deg); }
}

.stickup.is-bang { animation: section-shake 0.45s linear; }
@keyframes section-shake {
  0%, 100% { transform: translate(0, 0); }
  20% { transform: translate(-6px, 3px); }
  40% { transform: translate(6px, -3px); }
  60% { transform: translate(-4px, -2px); }
  80% { transform: translate(4px, 2px); }
}

/* comic BANG! flag popping out of the muzzle */
.stickup__flag {
  position: absolute;
  left: 31%;
  top: 19%;
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 40px);
  background: var(--pink);
  color: var(--ink);
  border: var(--border);
  box-shadow: 6px 6px 0 var(--ink);
  padding: 10px 20px;
  transform-origin: bottom left;
  transform: translateY(-88%) rotate(-10deg) scale(0);
  pointer-events: none;
  z-index: 2;
}
.stickup__flag.is-out {
  animation: flag-pop 1.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
@keyframes flag-pop {
  0%   { transform: translateY(-88%) rotate(-30deg) scale(0); }
  18%  { transform: translateY(-88%) rotate(-6deg)  scale(1.12); }
  28%  { transform: translateY(-88%) rotate(-12deg) scale(1); }
  80%  { transform: translateY(-88%) rotate(-10deg) scale(1); opacity: 1; }
  100% { transform: translateY(-96%) rotate(-10deg) scale(1); opacity: 0; }
}

.stickup__copy { position: relative; z-index: 1; }

.stickup__title {
  font-family: var(--font-display);
  font-size: clamp(46px, 6.4vw, 96px);
  line-height: 0.9;
  letter-spacing: -0.01em;
  margin: 20px 0 24px;
}

.stickup__body {
  font-size: 19px;
  font-weight: 500;
  max-width: 480px;
  margin-bottom: 14px;
}
.stickup__body--small { font-size: 15px; font-weight: 400; }

/* contract address — evidence-bag ticket, click to copy */
.ca-ticket {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
  padding: 12px 16px;
  background: var(--white);
  border: 3px dashed var(--ink);
  max-width: 100%;
  text-align: left;
  position: relative;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-style 0.15s ease;
}
.ca-ticket:hover {
  border-style: solid;
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--ink);
}
.ca-ticket:active { transform: translate(0, 0); box-shadow: 2px 2px 0 var(--ink); }

.ca-ticket__label {
  font-family: var(--font-display);
  font-size: 20px;
  background: var(--ink);
  color: var(--acid);
  padding: 4px 10px;
  transform: rotate(-4deg);
  flex-shrink: 0;
}
.ca-ticket__addr {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  word-break: break-all;
  min-width: 0;
}
.ca-ticket__hint {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(16, 16, 16, 0.55);
  white-space: nowrap;
  flex-shrink: 0;
}

.ca-ticket.is-copied::after {
  content: 'COPIED ✓';
  position: absolute;
  top: -20px;
  right: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  background: var(--ink);
  color: var(--acid);
  padding: 3px 8px;
  transform: rotate(-3deg);
  animation: copied-pop 1.4s ease forwards;
  pointer-events: none;
}
@keyframes copied-pop {
  0%   { opacity: 0; transform: rotate(-3deg) translateY(8px); }
  15%  { opacity: 1; transform: rotate(-3deg) translateY(0); }
  80%  { opacity: 1; }
  100% { opacity: 0; transform: rotate(-3deg) translateY(-8px); }
}

.stickup__ctas {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 26px;
}
.stickup__psst {
  font-family: var(--font-mono);
  font-size: 12px;
  font-style: italic;
  color: rgba(16, 16, 16, 0.6);
}

/* =========================================================
   hand check — ink band, hold the button
   ========================================================= */

.grip {
  background: var(--ink);
  color: var(--white);
  border-bottom: var(--border);
  padding: 80px 32px 90px;
}

.grip__inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}

.grip__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.6vw, 84px);
  line-height: 0.9;
  color: var(--acid);
  margin-top: 18px;
}

.grip__sub {
  margin-top: 18px;
  font-size: 17px;
  font-weight: 500;
  max-width: 440px;
  color: rgba(255, 255, 255, 0.85);
}

.grip__best {
  margin-top: 24px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--pink);
}

.grip__btn {
  display: block;
  width: 100%;
  padding: 36px 20px;
  background: var(--acid);
  color: var(--ink);
  border: var(--border);
  box-shadow: 10px 10px 0 rgba(205, 254, 2, 0.22);
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 40px);
  letter-spacing: 0.04em;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
  touch-action: none;
  user-select: none;
  -webkit-user-select: none;
}
.grip__btn:hover { transform: translate(-3px, -3px); box-shadow: 13px 13px 0 rgba(205, 254, 2, 0.22); }
.grip__btn.is-holding {
  transform: translate(4px, 4px);
  box-shadow: 3px 3px 0 rgba(205, 254, 2, 0.22);
  animation: grip-shake 0.15s linear infinite;
}
/* shake rides the `translate` property so it stacks on the pressed transform */
@keyframes grip-shake {
  0%, 100% { translate: 0 0; }
  25% { translate: calc(var(--shk, 2px) * -1) var(--shk, 2px); }
  75% { translate: var(--shk, 2px) calc(var(--shk, 2px) * -1); }
}

.grip__meter {
  position: relative;
  height: 30px;
  border: 3px solid var(--acid);
  margin-top: 44px;
}
.grip__fill {
  height: 100%;
  width: 0%;
  background: var(--acid);
}
.grip__tick {
  position: absolute;
  top: -6px;
  bottom: -6px;
  left: var(--at);
  width: 3px;
  background: rgba(205, 254, 2, 0.4);
}
.grip__tick--end { left: calc(var(--at) - 3px); }
.grip__tick i {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  transform: translateX(-50%);
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.65);
  white-space: nowrap;
}
.grip__tick--end i { color: var(--acid); }

.grip__readout {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  margin-top: 44px;
  font-family: var(--font-mono);
}
.grip__readout span {
  font-size: 15px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
}
.grip__readout b {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.6vw, 36px);
  letter-spacing: 0.02em;
  color: var(--acid);
}

/* =========================================================
   moods — four doors, all of them dog
   ========================================================= */

.moods {
  padding: 96px 32px 110px;
  border-bottom: var(--border);
  background:
    radial-gradient(rgba(16, 16, 16, 0.1) 15%, transparent 16%) 0 0 / 22px 22px,
    var(--acid);
}

.moods__head {
  max-width: 1240px;
  margin: 0 auto 56px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.moods__title {
  font-family: var(--font-display);
  font-size: clamp(52px, 8vw, 120px);
  line-height: 0.85;
  letter-spacing: -0.02em;
}

.moods__lede .label { margin-bottom: 18px; }

.moods__intro {
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  text-align: right;
  border-right: 4px solid var(--ink);
  padding-right: 16px;
}

.moods__grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.mood {
  position: relative;
  display: flex;
  flex-direction: column;
  text-align: left;
  background: var(--white);
  border: var(--border);
  box-shadow: var(--shadow);
  padding: 14px 14px 18px;
  transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.4, 1), box-shadow 0.25s ease;
}
.mood:nth-child(1) { transform: rotate(-1.2deg); }
.mood:nth-child(2) { transform: rotate(0.8deg); }
.mood:nth-child(3) { transform: rotate(-0.6deg); }
.mood:nth-child(4) { transform: rotate(1.4deg); }
.mood:hover {
  transform: rotate(0deg) translateY(-8px);
  box-shadow: var(--shadow-lg);
  z-index: 3;
}

.mood__tag {
  position: absolute;
  top: -12px;
  left: -10px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  background: var(--ink);
  color: var(--acid);
  padding: 4px 9px;
  transform: rotate(-6deg);
  z-index: 2;
}

.mood__live {
  position: absolute;
  top: -12px;
  right: -10px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  background: var(--pink);
  color: var(--ink);
  border: 3px solid var(--ink);
  padding: 3px 9px;
  transform: rotate(4deg);
  z-index: 2;
}
.mood__live::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ink);
  animation: live-blink 1.1s steps(1) infinite;
}
@keyframes live-blink { 50% { opacity: 0.15; } }

.mood__img {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  margin-bottom: 14px;
  border: 3px solid var(--ink);
  background:
    radial-gradient(rgba(16, 16, 16, 0.12) 18%, transparent 19%) 0 0 / 14px 14px,
    var(--acid);
}
.mood__img img {
  width: 92%;
  height: 92%;
  object-fit: contain;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.mood:hover .mood__img img { transform: scale(1.07) rotate(-2deg); }

/* the forbidden door */
.mood__img--censored {
  background:
    repeating-linear-gradient(-45deg, var(--ink) 0 16px, transparent 16px 32px),
    var(--pink);
}
.mood__censor {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1;
  text-align: center;
  background: var(--white);
  border: var(--border);
  box-shadow: 5px 5px 0 var(--ink);
  padding: 14px 18px;
  transform: rotate(-5deg);
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.mood--forbidden:hover .mood__censor { transform: rotate(3deg) scale(1.06); }

.mood__name {
  font-family: var(--font-display);
  font-size: 21px;
  line-height: 1;
}
.mood__sub {
  margin-top: 6px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(16, 16, 16, 0.62);
}

.moods__more {
  max-width: 1240px;
  margin: 48px auto 0;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 13px;
  font-style: italic;
  color: rgba(16, 16, 16, 0.62);
}

/* =========================================================
   how to get hands — ink section, a real sequence
   ========================================================= */

.howto {
  background: var(--ink);
  color: var(--white);
  border-bottom: var(--border);
  padding: 90px 32px 100px;
}

.howto__head {
  max-width: 1240px;
  margin: 0 auto 48px;
}
.howto__title {
  font-family: var(--font-display);
  font-size: clamp(44px, 6.4vw, 96px);
  line-height: 0.9;
  color: var(--acid);
  margin-top: 18px;
}

.howto__steps {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  list-style: none;
  counter-reset: none;
}

.step {
  background: var(--acid);
  color: var(--ink);
  border: 3px solid var(--acid);
  box-shadow: 8px 8px 0 rgba(205, 254, 2, 0.25);
  padding: 22px 20px 26px;
  position: relative;
  transition: transform 0.2s ease;
}
.step:hover { transform: translateY(-6px); }
.step:nth-child(even) { transform: rotate(0.7deg); }
.step:nth-child(odd)  { transform: rotate(-0.7deg); }
.step:nth-child(even):hover,
.step:nth-child(odd):hover { transform: rotate(0deg) translateY(-6px); }

.step__num {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 44px;
  line-height: 1;
  background: var(--ink);
  color: var(--acid);
  padding: 8px 16px;
  margin-bottom: 16px;
  transform: rotate(-3deg);
}
.step__name {
  font-family: var(--font-display);
  font-size: 20px;
  margin-bottom: 10px;
}
.step__body { font-size: 15px; font-weight: 500; }

/* =========================================================
   footer
   ========================================================= */

.footer {
  position: relative;
  overflow: hidden;
  padding: 80px 32px 40px;
  background: var(--acid);
}

.footer__watermark {
  position: absolute;
  left: 50%;
  bottom: -0.16em;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: clamp(180px, 30vw, 460px);
  line-height: 0.8;
  color: transparent;
  -webkit-text-stroke: 3px rgba(16, 16, 16, 0.22);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.footer__inner {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.footer__brand {
  font-family: var(--font-display);
  font-size: 52px;
  line-height: 0.9;
  margin-bottom: 10px;
}
.footer__line { font-weight: 500; }

.footer__fine {
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1.7;
  color: rgba(16, 16, 16, 0.7);
  max-width: 460px;
  justify-self: end;
  text-align: right;
}
.footer__fine p + p { margin-top: 8px; }

.footer__bottom {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 64px auto 0;
  padding-top: 22px;
  border-top: 3px solid var(--ink);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* thumbs-up dog leans in from the bottom-right corner */
.footer__peek {
  position: absolute;
  right: 3%;
  bottom: 0;
  width: clamp(150px, 16vw, 240px);
  transform: translateY(102%) rotate(14deg);
  transition: transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
  z-index: 0;
}
.footer__peek.is-in { transform: translateY(34%) rotate(8deg); }

/* =========================================================
   toast
   ========================================================= */

.toast {
  position: fixed;
  left: 50%;
  bottom: 26px;
  transform: translate(-50%, 24px);
  z-index: 10000;
  background: var(--ink);
  color: var(--acid);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 12px 20px;
  border: 3px solid var(--acid);
  box-shadow: 5px 5px 0 rgba(16, 16, 16, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  max-width: min(520px, calc(100vw - 40px));
  text-align: center;
}
.toast.is-show { opacity: 1; transform: translate(-50%, 0); }

/* =========================================================
   EGG BASE — fullscreen overlays
   ========================================================= */

.egg {
  position: fixed;
  inset: 0;
  z-index: 9000;
  overflow: hidden;
  animation: egg-in 0.4s ease-out both;
}
@keyframes egg-in { from { opacity: 0; } to { opacity: 1; } }
.egg.is-out { animation: egg-out 0.45s ease-in forwards; }
@keyframes egg-out { to { opacity: 0; } }

.egg__hint {
  position: absolute;
  bottom: 4.5%;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0;
  animation: hint-in 0.6s 1.6s ease-out forwards;
  pointer-events: none;
  z-index: 20;
}
@keyframes hint-in { to { opacity: 0.75; } }

.egg__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 30;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  border: 3px solid var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1;
  display: grid;
  place-items: center;
  transition: transform 0.12s ease;
}
.egg__close:hover { transform: rotate(8deg) scale(1.06); }
.egg__close:active { transform: scale(0.94); }

/* =========================================================
   EGG 1 — CANDLE BLESSING (pray)
   ========================================================= */

.blessing { background: var(--acid-dark); cursor: pointer; }

.blessing__aura {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(90vw, 760px);
  height: min(90vw, 760px);
  transform: translate(-50%, -50%);
  background: radial-gradient(circle,
    rgba(205, 254, 2, 0.85) 0%,
    rgba(205, 254, 2, 0.35) 34%,
    rgba(205, 254, 2, 0.1) 55%,
    transparent 72%);
  border-radius: 50%;
  filter: blur(22px);
  animation: aura-pulse 0.6s ease-in-out infinite alternate;
}
@keyframes aura-pulse {
  from { opacity: 0.75; transform: translate(-50%, -50%) scale(0.96); }
  to   { opacity: 1;    transform: translate(-50%, -50%) scale(1.08); }
}

.blessing__dog {
  position: absolute;
  top: 52%;
  left: 50%;
  width: min(60vw, 440px);
  transform: translate(-50%, -50%);
  animation: blessing-rise 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  z-index: 3;
  pointer-events: none;
}
@keyframes blessing-rise {
  0%   { opacity: 0; transform: translate(-50%, 30%) scale(0.4); }
  100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

.blessing__candle {
  position: absolute;
  bottom: -160px;
  left: var(--x);
  width: var(--w);
  height: var(--h);
  background: linear-gradient(to bottom, #EAFF70, var(--acid) 40%, var(--acid-deep));
  border: 2px solid var(--ink);
  box-shadow: 0 0 10px rgba(205, 254, 2, 0.55);
  animation: candle-rise var(--dur) linear var(--delay) infinite;
  z-index: 1;
}
.blessing__candle::before,
.blessing__candle::after {
  content: '';
  position: absolute;
  left: 50%;
  width: 2px;
  background: var(--acid);
  transform: translateX(-50%);
}
.blessing__candle::before { top: calc(var(--wick) * -1); height: var(--wick); }
.blessing__candle::after  { bottom: -8px; height: 8px; }
@keyframes candle-rise {
  0%   { bottom: -160px; opacity: 0; }
  8%   { opacity: 1; }
  92%  { opacity: 1; }
  100% { bottom: 110vh; opacity: 0; }
}

.blessing__text {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 5;
  animation: blessing-text-in 0.7s 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  pointer-events: none;
}
@keyframes blessing-text-in {
  from { opacity: 0; transform: translateX(-50%) scale(0.4) rotate(-8deg); }
  to   { opacity: 1; transform: translateX(-50%) scale(1) rotate(0deg); }
}
.blessing__main {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(64px, 13vw, 170px);
  color: var(--acid);
  -webkit-text-stroke: 2px var(--ink);
  text-shadow:
    0 0 22px rgba(205, 254, 2, 0.9),
    6px 6px 0 var(--ink);
  transform: rotate(-2deg);
}
.blessing__sub {
  display: block;
  margin-top: 10px;
  font-family: var(--font-mono);
  font-size: clamp(13px, 1.6vw, 18px);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(205, 254, 2, 0.85);
}
.blessing .egg__hint { color: rgba(205, 254, 2, 0.7); }

/* =========================================================
   EGG 2 — LECTURE MODE (nerd)
   ========================================================= */

.lecture {
  background: var(--white);
  cursor: pointer;
  display: grid;
  grid-template-columns: minmax(280px, 44%) 1fr;
  align-items: center;
}

.lecture__board {
  position: relative;
  height: 100%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(rgba(16, 16, 16, 0.1) 15%, transparent 16%) 0 0 / 18px 18px,
    var(--acid);
  border-right: var(--border);
}
.lecture__dog {
  width: min(38vw, 460px);
  animation: lecture-dog-in 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
@keyframes lecture-dog-in {
  from { opacity: 0; transform: translateY(50px) rotate(-6deg); }
  to   { opacity: 1; transform: translateY(0) rotate(0deg); }
}
.lecture__dog.is-point { animation: lecture-point 0.45s cubic-bezier(0.34, 1.56, 0.64, 1); }
@keyframes lecture-point {
  0%   { transform: rotate(0deg) scale(1); }
  40%  { transform: rotate(-5deg) scale(1.05); }
  100% { transform: rotate(0deg) scale(1); }
}

.lecture__panel {
  padding: 8vh 6vw;
  max-width: 780px;
}
.lecture__label {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.24em;
  background: var(--ink);
  color: var(--acid);
  display: inline-block;
  padding: 6px 12px;
  margin-bottom: 26px;
  transform: rotate(-1deg);
}
.lecture__text {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(20px, 2.8vw, 36px);
  line-height: 1.3;
  min-height: 7.8em;
  color: var(--ink);
}
.lecture__text::after {
  content: '▌';
  color: var(--acid-deep);
  animation: cursor-blink 0.8s steps(1) infinite;
}
@keyframes cursor-blink { 0%, 50% { opacity: 1; } 51%, 100% { opacity: 0; } }

.lecture__dots {
  display: flex;
  gap: 8px;
  margin-top: 34px;
}
.lecture__dot {
  width: 14px;
  height: 14px;
  border: 3px solid var(--ink);
  background: var(--white);
  transform: rotate(45deg);
  transition: background 0.2s ease;
}
.lecture__dot.is-done { background: var(--acid); }
.lecture .egg__hint { color: rgba(16, 16, 16, 0.6); }

/* =========================================================
   EGG 3 — FRAP FC KEEPY-UPPY (worldcup)
   ========================================================= */

.game {
  background: var(--ink);
  touch-action: none;
  user-select: none;
  -webkit-user-select: none;
  cursor: crosshair;
}

/* halftone floodlights */
.game::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% -10%, rgba(205, 254, 2, 0.16) 0%, transparent 42%),
    radial-gradient(circle at 82% -10%, rgba(205, 254, 2, 0.16) 0%, transparent 42%);
  pointer-events: none;
}

.game__pitch {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 12vh;
  border-top: 5px solid var(--acid);
  background:
    repeating-linear-gradient(90deg,
      rgba(205, 254, 2, 0.14) 0 60px,
      rgba(205, 254, 2, 0.05) 60px 120px);
  pointer-events: none;
}

.game__hud {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: var(--acid);
  pointer-events: none;
  z-index: 5;
}
.game__title {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--pink);
}
.game__score {
  font-family: var(--font-display);
  font-size: clamp(64px, 12vw, 150px);
  line-height: 0.9;
  text-shadow: 5px 5px 0 rgba(205, 254, 2, 0.2);
}
.game__best {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  opacity: 0.7;
}

.game__dog {
  position: absolute;
  left: 2%;
  bottom: 2vh;
  width: clamp(140px, 20vw, 280px);
  pointer-events: none;
  z-index: 4;
  animation: gamedog-bob 1.6s ease-in-out infinite;
}
@keyframes gamedog-bob {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50%      { transform: translateY(-10px) rotate(1deg); }
}
.game__dog.is-hyped { animation: gamedog-hop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); }
@keyframes gamedog-hop {
  0%   { transform: translateY(0) rotate(-2deg); }
  45%  { transform: translateY(-34px) rotate(4deg); }
  100% { transform: translateY(0) rotate(-2deg); }
}

.game__ball {
  position: absolute;
  top: 0;
  left: 0;
  width: 112px;
  height: 112px;
  margin: -56px 0 0 -56px; /* center on (x, y) */
  z-index: 6;
  will-change: transform;
  filter: drop-shadow(0 6px 0 rgba(0, 0, 0, 0.4));
}
.game__ball svg { width: 100%; height: 100%; display: block; }

.game__msg {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 10;
}
.game__card {
  background: var(--white);
  color: var(--ink);
  border: var(--border);
  box-shadow: 10px 10px 0 var(--acid);
  padding: 34px 42px;
  text-align: center;
  transform: rotate(-1.5deg);
  animation: card-in 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
@keyframes card-in {
  from { opacity: 0; transform: rotate(-1.5deg) scale(0.6); }
  to   { opacity: 1; transform: rotate(-1.5deg) scale(1); }
}
.game__card-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 64px);
  line-height: 0.9;
}
.game__card-sub {
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.game__card-btn { margin-top: 22px; font-size: 16px; padding: 12px 22px; }
.game .egg__hint { color: rgba(205, 254, 2, 0.7); }

/* =========================================================
   EGG 4 — THE PROPHECY (ansem)
   ========================================================= */

.prophecy {
  background:
    radial-gradient(ellipse at center, rgba(40, 40, 40, 0.9) 0%, rgba(8, 8, 8, 0.98) 70%),
    var(--ink);
  cursor: pointer;
  display: grid;
  place-items: center;
}

.prophecy__flash {
  position: absolute;
  inset: 0;
  background: var(--white);
  opacity: 0;
  pointer-events: none;
  z-index: 8;
}
.prophecy__flash.is-firing { animation: paparazzi 1.6s ease-out forwards; }
@keyframes paparazzi {
  0%   { opacity: 0; }
  4%   { opacity: 0.95; }
  9%   { opacity: 0; }
  22%  { opacity: 0; }
  26%  { opacity: 0.85; }
  31%  { opacity: 0; }
  55%  { opacity: 0; }
  58%  { opacity: 0.9; }
  64%  { opacity: 0; }
  100% { opacity: 0; }
}

.prophecy__frame {
  position: relative;
  z-index: 3;
  background: var(--white);
  border: var(--border);
  box-shadow: 14px 14px 0 rgba(205, 254, 2, 0.85);
  padding: 18px 18px 74px;
  transform: rotate(-2.5deg);
  animation: frame-drop 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  max-width: min(82vw, 440px);
}
@keyframes frame-drop {
  from { opacity: 0; transform: rotate(-8deg) translateY(-60px) scale(0.8); }
  to   { opacity: 1; transform: rotate(-2.5deg) translateY(0) scale(1); }
}
.prophecy__frame img { width: 100%; }
.prophecy__stamp {
  position: absolute;
  top: 4px;
  right: -22px;
  font-family: var(--font-display);
  font-size: 17px;
  background: var(--pink);
  border: 3px solid var(--ink);
  color: var(--ink);
  padding: 6px 12px;
  transform: rotate(9deg);
  box-shadow: 4px 4px 0 var(--ink);
}
.prophecy__caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 20px;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  min-height: 1.5em;
}

.prophecy__sub {
  position: absolute;
  top: 7%;
  left: 50%;
  transform: translateX(-50%) rotate(-1deg);
  font-family: var(--font-display);
  font-size: clamp(24px, 4.4vw, 48px);
  color: var(--acid);
  text-shadow: 4px 4px 0 rgba(16, 16, 16, 0.9);
  z-index: 4;
  animation: blessing-text-in 0.6s 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  pointer-events: none;
  white-space: nowrap;
}
.prophecy .egg__hint { color: rgba(255, 255, 255, 0.65); }

/* =========================================================
   DOG RAIN (secret: type "frap")
   ========================================================= */

.dograin {
  position: fixed;
  inset: 0;
  z-index: 9500;
  pointer-events: none;
  overflow: hidden;
}
.dograin img {
  position: absolute;
  top: -220px;
  left: var(--x);
  width: var(--size);
  animation: dog-fall var(--dur) cubic-bezier(0.45, 0, 0.9, 0.6) var(--delay) forwards;
}
@keyframes dog-fall {
  0%   { transform: translateY(0) rotate(0deg); opacity: 1; }
  100% { transform: translateY(130vh) rotate(var(--rot)); opacity: 1; }
}

/* =========================================================
   responsive
   ========================================================= */

@media (max-width: 1120px) {
  .hero__dog-zone { width: clamp(260px, 32vw, 400px); top: 90px; }
  .hero__title { font-size: clamp(96px, 20vw, 240px); }
}

@media (max-width: 900px) {
  .nav { padding: 10px 18px; }
  .nav__links { display: none; }

  .hero__inner { padding: 52px 20px 120px; min-height: 0; }
  .hero__dog-zone {
    position: relative;
    top: auto;
    right: auto;
    width: min(74vw, 380px);
    margin: 40px auto 10px;
  }
  .hero__count { bottom: -14px; }

  .stickup__inner {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 64px 20px 80px;
  }
  /* crop gun.png's baked-in right whitespace on mobile */
  .stickup__art { overflow: hidden; }
  .stickup__dog { width: 158%; }

  .grip { padding: 60px 20px 72px; }
  .grip__inner { grid-template-columns: 1fr; gap: 44px; }

  .moods { padding: 70px 20px 84px; }
  .moods__grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .moods__intro { text-align: left; border-right: none; border-left: 4px solid var(--ink); padding: 0 0 0 16px; }

  .howto { padding: 64px 20px 76px; }
  .howto__steps { grid-template-columns: repeat(2, 1fr); }

  .footer { padding: 64px 20px 32px; }
  .footer__inner { grid-template-columns: 1fr; gap: 26px; }
  .footer__fine { justify-self: start; text-align: left; }

  .lecture { grid-template-columns: 1fr; grid-template-rows: 38vh 1fr; }
  .lecture__board { border-right: none; border-bottom: var(--border); }
  .lecture__dog { width: min(56vw, 300px); }
  .lecture__panel { padding: 5vh 7vw; }
  .lecture__text { min-height: 12em; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }

  .hero__title { font-size: clamp(84px, 26vw, 150px); }
  .hero__ctas .btn--big { font-size: 17px; padding: 14px 20px; }

  .ticker__track { font-size: 18px; }

  .stickup__title { font-size: clamp(40px, 12vw, 64px); }
  .ca-ticket__hint { display: none; }

  .moods__grid { gap: 16px; }
  .mood { padding: 10px 10px 14px; }
  .mood__name { font-size: 16px; }
  .mood__sub { font-size: 10px; }
  .mood__censor { font-size: 18px; padding: 10px 12px; }

  .howto__steps { grid-template-columns: 1fr; }

  .game__ball { width: 92px; height: 92px; margin: -46px 0 0 -46px; }
  .game__dog { width: clamp(110px, 30vw, 170px); }

  .prophecy__frame { padding: 12px 12px 62px; }
  .prophecy__caption { font-size: 12px; left: 12px; right: 12px; }
}

/* =========================================================
   reduced motion — keep the jokes, calm the chaos
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { transition: none; opacity: 1; transform: none; }
  .hero__burst,
  .hero__dog,
  .ticker__track,
  .footer__peek,
  .game__dog,
  .blessing__aura { animation: none !important; transition: none !important; }
  .grip__btn.is-holding { animation: none !important; }
  .mood__live::before { animation: none !important; }
  .footer__peek { transform: translateY(34%) rotate(8deg); }
  .hero__title span { transition: none; }
  .blessing__candle { animation-duration: 8s !important; }
  .egg { animation-duration: 0.2s; }
  .pop { animation-duration: 0.6s; }
  html { scroll-behavior: auto; }
}