/* ==========================================================================
   DOGJAK — Sketchbook Meme Coin Styles
   Theme: unfinished Wojak sketchbook · paper · graphite · slightly unhinged
   ========================================================================== */

/* --------------------------------------------------------------------------
   Custom properties
   -------------------------------------------------------------------------- */
:root {
  --paper: #f7f4ef;
  --paper-warm: #f0ebe3;
  --paper-cream: #faf8f4;
  --ink: #1a1a1a;
  --ink-soft: #2e2e2e;
  --graphite: #5a5a5a;
  --graphite-light: #8a8a8a;
  --shirt-blue: #7a9bb8;
  --shirt-blue-faded: #a8c0d4;
  --muted-brown: #8b6f5c;
  --muted-brown-light: #c4a990;
  --tape: rgba(232, 220, 180, 0.72);
  --sol-green: #14f195;
  --sol-purple: #9945ff;
  --shadow-paper: 3px 4px 0 rgba(26, 26, 26, 0.08), 8px 12px 24px rgba(26, 26, 26, 0.06);
  --shadow-soft: 0 8px 28px rgba(26, 26, 26, 0.08);
  --border-sketch: 2px solid var(--ink);
  --font-display: "Caveat", cursive;
  --font-body: "Outfit", system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;
  --nav-h: 82px;
  --radius-rough: 3px 8px 4px 7px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --max-w: 1120px;
}

/* --------------------------------------------------------------------------
   Reset & base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 12px);
}

body {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--ink);
  background-color: var(--paper);
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E"),
    radial-gradient(ellipse at 20% 0%, rgba(168, 192, 212, 0.12), transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(196, 169, 144, 0.1), transparent 45%);
  overflow-x: hidden;
  min-height: 100vh;
  cursor: none;
}

body.is-menu-open {
  overflow: hidden;
}

body.touch-device,
body.touch-device * {
  cursor: auto !important;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: none;
}

body.touch-device button {
  cursor: pointer;
}

ul,
ol {
  list-style: none;
}

code {
  font-family: var(--font-mono);
}

:focus-visible {
  outline: 2px dashed var(--ink);
  outline-offset: 3px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --------------------------------------------------------------------------
   Custom cursor
   -------------------------------------------------------------------------- */
.cursor-dot,
.cursor-paw {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 10000;
  opacity: 0;
  transition: opacity 0.2s ease;
  will-change: transform;
}

body.has-cursor .cursor-dot,
body.has-cursor .cursor-paw {
  opacity: 1;
}

.cursor-dot {
  width: 10px;
  height: 10px;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.cursor-paw {
  width: 18px;
  height: 18px;
  background: var(--ink);
  border-radius: 50% 50% 45% 45%;
  opacity: 0.35;
  transform: translate(-50%, -50%);
  transition: opacity 0.2s ease, transform 0.08s linear;
}

body.has-cursor .cursor-paw {
  opacity: 0.28;
}

/* --------------------------------------------------------------------------
   Scroll progress
   -------------------------------------------------------------------------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  z-index: 9998;
  pointer-events: none;
  overflow: visible;
}

.scroll-progress__line {
  height: 100%;
  width: 0%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 8' preserveAspectRatio='none'%3E%3Cpath d='M2 4 Q20 1 40 5 T80 3 T120 6 T160 2 T200 5 T240 3 T280 6 T320 2 T360 5 T398 4' stroke='%231a1a1a' stroke-width='2.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") left center / 100% 100% no-repeat;
  transform-origin: left center;
  transition: width 0.1s linear;
}

/* --------------------------------------------------------------------------
   Toast
   -------------------------------------------------------------------------- */
.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  z-index: 9999;
  padding: 0.7rem 1.4rem;
  background: var(--paper-cream);
  border: 2px solid var(--ink);
  border-radius: var(--radius-rough);
  box-shadow: var(--shadow-paper);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  opacity: 0;
  transition: transform 0.35s var(--ease-out), opacity 0.35s var(--ease-out);
  pointer-events: none;
  max-width: min(90vw, 360px);
  text-align: center;
}

.toast.is-visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* --------------------------------------------------------------------------
   Loader
   -------------------------------------------------------------------------- */
.loader {
  position: fixed;
  inset: 0;
  z-index: 10001;
  display: grid;
  place-items: center;
  background: var(--paper);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  transition: opacity 0.55s ease, visibility 0.55s ease;
}

.loader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader__inner {
  text-align: center;
}

.loader__paw {
  animation: pawTap 0.7s ease-in-out infinite;
  margin-bottom: 1.2rem;
}

.loader__scribble {
  width: min(200px, 60vw);
  margin: 0 auto 1rem;
  height: 12px;
}

.scribble-path {
  stroke-dasharray: 220;
  stroke-dashoffset: 220;
  animation: scribbleDraw 1.4s ease-in-out infinite;
}

.loader__text {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.02em;
}

@keyframes pawTap {
  0%, 100% { transform: translateY(0) rotate(-4deg); }
  50% { transform: translateY(8px) rotate(4deg); }
}

@keyframes scribbleDraw {
  0% { stroke-dashoffset: 220; }
  50% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -220; }
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: 2px solid var(--ink);
  border-radius: 3px 9px 5px 8px;
  background: var(--paper-cream);
  box-shadow: 3px 3px 0 var(--ink);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease;
  white-space: nowrap;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.btn:hover {
  transform: translate(-1px, -1px);
  box-shadow: 4px 4px 0 var(--ink);
}

.btn:active {
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0 var(--ink);
}

.btn--primary {
  background: var(--ink);
  color: var(--paper);
}

.btn--primary:hover {
  background: var(--ink-soft);
}

.btn--outline {
  background: transparent;
}

.btn--outline:hover {
  background: var(--paper-warm);
}

.btn--ghost {
  background: transparent;
  box-shadow: none;
  border-style: dashed;
}

.btn--ghost:hover {
  background: rgba(26, 26, 26, 0.04);
  box-shadow: none;
  transform: none;
}

.btn--ghost:active {
  transform: scale(0.97);
  box-shadow: none;
}

.btn--sm {
  padding: 0.4rem 0.85rem;
  font-size: 0.82rem;
}

.btn--lg {
  padding: 0.9rem 1.6rem;
  font-size: 1.05rem;
}

/* --------------------------------------------------------------------------
   Navigation
   -------------------------------------------------------------------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 900;
  background-color: rgba(247, 244, 239, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  /* Extra bottom space so the scribble line sits INSIDE the box
     (backdrop-filter clips anything that overflows) */
  padding-bottom: 10px;
  overflow: visible;
  isolation: isolate;
}

.nav::before {
  content: "";
  position: absolute;
  inset: 0 0 10px 0;
  z-index: -1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
  pointer-events: none;
}

/* Hand-drawn bottom edge — kept inside the nav (not negative offset) */
.nav::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 12px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 16' preserveAspectRatio='none'%3E%3Cpath d='M4 8 Q40 2 80 10 T160 5 T240 11 T320 4 T400 9 T480 3 T560 10 T640 5 T720 11 T796 7' stroke='%231a1a1a' stroke-width='2.25' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center bottom / 100% 12px no-repeat;
  opacity: 0.75;
  pointer-events: none;
  z-index: 3;
}

.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0.65rem 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--nav-h);
  position: relative;
  z-index: 2;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
  z-index: 2;
}

.nav__logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 50%;
  border: 2px solid var(--ink);
  background: var(--paper-cream);
}

.nav__brand-text {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 8px;
  z-index: 2;
  border: 2px solid var(--ink);
  border-radius: var(--radius-rough);
  background: var(--paper-cream);
}

.nav__toggle-bar {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--ink);
  border-radius: 1px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 0.15rem 1.1rem;
}

.nav__link {
  position: relative;
  font-size: 0.92rem;
  font-weight: 500;
  padding: 0.35rem 0.15rem;
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 8px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 10' preserveAspectRatio='none'%3E%3Cpath d='M2 5 Q10 1 20 6 T40 3 T58 5' stroke='%231a1a1a' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-out);
  overflow: visible;
}

.nav__link:hover::after,
.nav__link:focus-visible::after {
  transform: scaleX(1);
}

.nav__cta {
  margin-left: 0.35rem;
}

/* --------------------------------------------------------------------------
   Sections shared
   -------------------------------------------------------------------------- */
.section {
  padding: 5rem 1.25rem;
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  overflow: visible;
}

.section__header {
  text-align: center;
  margin-bottom: 3rem;
  overflow: visible;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.02em;
}

.section__subtitle {
  margin-top: 0.5rem;
  color: var(--graphite);
  font-size: 1.05rem;
}

.section__underline {
  display: block;
  width: min(280px, 70%);
  height: 24px;
  margin: 0.5rem auto 0;
  overflow: visible;
}

.section__underline .draw-path {
  overflow: visible;
}

.draw-path {
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  transition: stroke-dashoffset 1.1s var(--ease-out);
}

.reveal.is-visible .draw-path,
.section__header.is-visible .draw-path {
  stroke-dashoffset: 0;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  padding: 2rem 1.25rem 4rem;
  /* Keep overflow visible so the torn-paper divider and float notes aren't clipped */
  overflow: visible;
  display: flex;
  flex-direction: column;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.85;
  mix-blend-mode: multiply;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  flex: 1;
}

.hero__label {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--graphite);
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
  transform: rotate(-1.5deg);
  display: inline-block;
}

.hero__title {
  margin-bottom: 0.5rem;
}

.hero__title-main {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 7.5rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.02em;
  text-shadow: 3px 3px 0 rgba(122, 155, 184, 0.25);
}

.hero__ticker {
  display: inline-block;
  margin-top: 0.35rem;
  font-family: var(--font-mono);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 500;
  padding: 0.25rem 0.7rem;
  border: 2px dashed var(--ink);
  border-radius: var(--radius-rough);
  background: rgba(247, 244, 239, 0.7);
  transform: rotate(1deg);
}

.hero__tagline {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.1rem);
  font-weight: 700;
  margin: 1rem 0 1.1rem;
  position: relative;
  display: inline-block;
}

.hero__tagline::after {
  content: "";
  position: absolute;
  left: -2%;
  bottom: 2px;
  width: 104%;
  height: 10px;
  background: rgba(122, 155, 184, 0.28);
  z-index: -1;
  transform: rotate(-0.8deg) skewX(-4deg);
  animation: markerWipe 1.2s var(--ease-out) 0.6s both;
}

@keyframes markerWipe {
  from { transform: rotate(-0.8deg) skewX(-4deg) scaleX(0); transform-origin: left; }
  to { transform: rotate(-0.8deg) skewX(-4deg) scaleX(1); transform-origin: left; }
}

.hero__narrative {
  max-width: 34rem;
  color: var(--ink-soft);
  font-size: 1.05rem;
  margin-bottom: 1.75rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

/* Hero character */
.hero__right {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  min-height: 420px;
}

.hero__character-wrap {
  position: relative;
  width: min(100%, 480px);
  will-change: transform;
}

.hero__character {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  animation: breathe 4.5s ease-in-out infinite;
  filter: drop-shadow(0 12px 20px rgba(26, 26, 26, 0.12));
  /* Transparent PNG — keep natural proportions */
  object-fit: contain;
}

.hero__shadow {
  position: absolute;
  bottom: 2%;
  left: 50%;
  transform: translateX(-50%);
  width: 55%;
  height: 28px;
  background: radial-gradient(ellipse, rgba(26, 26, 26, 0.22) 0%, transparent 70%);
  z-index: 1;
  animation: shadowPulse 4.5s ease-in-out infinite;
}

.hero__motion-lines {
  position: absolute;
  top: 8%;
  left: -8%;
  width: 80px;
  height: 120px;
  z-index: 1;
  opacity: 0.6;
  animation: motionFlicker 3s ease-in-out infinite;
}

.hero__glasses-shimmer {
  position: absolute;
  top: 14%;
  left: 36%;
  width: 26%;
  height: 5%;
  z-index: 3;
  background: linear-gradient(105deg, transparent 30%, rgba(255, 255, 255, 0.55) 50%, transparent 70%);
  background-size: 200% 100%;
  animation: shimmer 5s ease-in-out infinite;
  pointer-events: none;
  border-radius: 40%;
  mix-blend-mode: soft-light;
}

/* Coffee steam — cup sits in character's left hand (viewer's right) */
.hero__steam {
  position: absolute;
  top: 42%;
  left: 62%;
  width: 40px;
  height: 50px;
  z-index: 3;
  pointer-events: none;
}

.steam {
  position: absolute;
  bottom: 0;
  width: 4px;
  height: 28px;
  border-radius: 50%;
  background: transparent;
  border: 1.5px solid rgba(26, 26, 26, 0.25);
  border-right-color: transparent;
  border-bottom-color: transparent;
  animation: steamRise 2.8s ease-in-out infinite;
  opacity: 0;
}

.steam--1 { left: 8px; animation-delay: 0s; }
.steam--2 { left: 16px; height: 34px; animation-delay: 0.7s; }
.steam--3 { left: 24px; height: 24px; animation-delay: 1.4s; }

@keyframes breathe {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes shadowPulse {
  0%, 100% { transform: translateX(-50%) scaleX(1); opacity: 0.9; }
  50% { transform: translateX(-50%) scaleX(0.92); opacity: 0.7; }
}

@keyframes steamRise {
  0% { transform: translateY(0) scaleX(1); opacity: 0; }
  20% { opacity: 0.5; }
  100% { transform: translateY(-40px) scaleX(1.4); opacity: 0; }
}

@keyframes shimmer {
  0%, 70%, 100% { background-position: 200% 0; opacity: 0; }
  80%, 90% { background-position: -50% 0; opacity: 1; }
}

@keyframes motionFlicker {
  0%, 100% { opacity: 0.35; transform: translateX(0); }
  50% { opacity: 0.65; transform: translateX(-3px); }
}

/* Floating notes */
.hero__notes {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}

.float-note {
  position: absolute;
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  font-weight: 600;
  padding: 0.35rem 0.7rem;
  background: var(--paper-cream);
  border: 1.5px solid var(--ink);
  box-shadow: 2px 2px 0 rgba(26, 26, 26, 0.12);
  white-space: nowrap;
  animation: noteFloat 5s ease-in-out infinite;
}

.float-note--1 { top: 8%; right: 0; transform: rotate(4deg); animation-delay: 0s; background: #fff9e8; }
.float-note--2 { top: 28%; left: -4%; transform: rotate(-6deg); animation-delay: 0.8s; }
.float-note--3 { bottom: 30%; right: -2%; transform: rotate(3deg); animation-delay: 1.5s; background: #eef4f8; }
.float-note--4 { top: 55%; left: 2%; transform: rotate(-3deg); animation-delay: 2s; }
.float-note--5 { bottom: 12%; left: 10%; transform: rotate(5deg); animation-delay: 0.4s; background: #f5efe8; }

@keyframes noteFloat {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -10px; }
}

.hero__divider {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 48px;
  z-index: 2;
  line-height: 0;
  overflow: visible;
  pointer-events: none;
}

.hero__divider svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}

/* --------------------------------------------------------------------------
   Contract strip
   -------------------------------------------------------------------------- */
.ca-strip {
  background: var(--ink);
  color: var(--paper);
  padding: 0.9rem 1.25rem;
  position: relative;
  overflow: hidden;
}

.ca-strip__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem 1rem;
  position: relative;
}

.ca-strip__chain {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--shirt-blue-faded);
}

.ca-strip__sol-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sol-green), var(--sol-purple));
}

.ca-strip__divider {
  opacity: 0.4;
}

.ca-strip__address {
  font-size: clamp(0.95rem, 2.5vw, 1.15rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  word-break: break-all;
}

.ca-strip__copy {
  background: transparent;
  color: var(--paper);
  border-color: var(--paper);
  box-shadow: 2px 2px 0 rgba(247, 244, 239, 0.35);
}

.ca-strip__copy:hover {
  background: rgba(247, 244, 239, 0.1);
  box-shadow: 3px 3px 0 rgba(247, 244, 239, 0.35);
}

.ca-strip__paw {
  position: absolute;
  left: -40px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.5;
  animation: pawWalk 12s linear infinite;
  animation-delay: 3s;
}

@keyframes pawWalk {
  0% { left: -40px; opacity: 0; }
  5% { opacity: 0.5; }
  90% { opacity: 0.5; }
  100% { left: calc(100% + 40px); opacity: 0; }
}

/* --------------------------------------------------------------------------
   Lore / comic panels
   -------------------------------------------------------------------------- */
.lore__panels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  overflow: visible;
  padding: 0.5rem 0.25rem 1rem;
}

.comic-panel {
  background: var(--paper-cream);
  border: 2.5px solid var(--ink);
  border-radius: 2px 10px 4px 8px;
  padding: 1.5rem 1.25rem;
  box-shadow: var(--shadow-paper);
  transform: rotate(var(--tilt, 0deg));
  transition: transform 0.35s var(--ease-out);
  position: relative;
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: visible;
}

.comic-panel:hover {
  transform: rotate(0deg) scale(1.02);
  z-index: 2;
}

.comic-panel__text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.35;
}

.comic-panel__text--big {
  font-size: 2rem;
}

.comic-panel--speech {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0.5rem;
}

.speech-bubble {
  position: relative;
  background: var(--paper-cream);
  border: 2.5px solid var(--ink);
  border-radius: 40% 45% 42% 48% / 45% 40% 50% 45%;
  padding: 1.5rem 1.4rem;
  box-shadow: var(--shadow-paper);
  overflow: visible;
  margin-bottom: 12px;
}

.speech-bubble::after {
  content: "";
  position: absolute;
  bottom: -14px;
  left: 28%;
  width: 18px;
  height: 18px;
  background: var(--paper-cream);
  border-right: 2.5px solid var(--ink);
  border-bottom: 2.5px solid var(--ink);
  transform: rotate(45deg);
}

.speech-bubble p {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.35;
}

.comic-panel--wait {
  background: var(--paper-warm);
}

.comic-panel--finale {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--paper-cream), #eef4f8);
}

.pencil-circle {
  position: absolute;
  inset: 8%;
  border: 2px solid var(--ink);
  border-radius: 50%;
  opacity: 0.15;
  transform: rotate(-8deg);
  pointer-events: none;
  overflow: visible;
}

.crossed {
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  opacity: 0.55;
}

.panel-doodle {
  position: absolute;
  bottom: 10px;
  right: 14px;
  opacity: 0.5;
}

/* --------------------------------------------------------------------------
   Why / tape cards
   -------------------------------------------------------------------------- */
.why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  overflow: visible;
  padding: 12px 4px 16px;
}

.tape-card {
  position: relative;
  background: var(--paper-cream);
  border: 2px solid var(--ink);
  border-radius: var(--radius-rough);
  padding: 2rem 1.25rem 1.5rem;
  box-shadow: var(--shadow-paper);
  transform: rotate(var(--rot, 0deg));
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s ease;
  text-align: center;
  overflow: visible;
}

.tape-card:hover {
  transform: rotate(0deg) translateY(-4px);
  box-shadow: 4px 8px 0 rgba(26, 26, 26, 0.1), var(--shadow-soft);
}

.tape {
  position: absolute;
  width: 52px;
  height: 18px;
  background: var(--tape);
  border: 1px solid rgba(139, 111, 92, 0.25);
  z-index: 2;
  box-shadow: 0 1px 2px rgba(26, 26, 26, 0.08);
}

.tape--tl { top: -8px; left: 12px; transform: rotate(-18deg); }
.tape--tr { top: -8px; right: 12px; transform: rotate(15deg); }
.tape--bl { bottom: -8px; left: 16px; transform: rotate(12deg); }
.tape--br { bottom: -8px; right: 16px; transform: rotate(-10deg); }
.tape--lg { width: 70px; height: 22px; }

.tape-card__doodle {
  margin: 0 auto 0.75rem;
  opacity: 0.7;
}

.tape-card__title {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: 0.04em;
}

.tape-card__text {
  color: var(--graphite);
  font-size: 0.98rem;
}

/* --------------------------------------------------------------------------
   Manifesto / banner
   -------------------------------------------------------------------------- */
.manifesto {
  max-width: min(960px, calc(100% - 2.5rem));
}

.manifesto__frame {
  position: relative;
  background: var(--paper-cream);
  border: 2.5px solid var(--ink);
  padding: 1rem;
  box-shadow: var(--shadow-paper);
  transform: rotate(-0.6deg);
  overflow: visible;
  margin: 12px 4px;
}

.manifesto__pin {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 18px;
  background: radial-gradient(circle at 35% 35%, #c4a990, #8b6f5c);
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  z-index: 3;
  box-shadow: 1px 2px 3px rgba(26, 26, 26, 0.2);
}

.manifesto__figure {
  overflow: hidden;
  border: 1.5px solid rgba(26, 26, 26, 0.2);
  background: var(--paper-warm);
}

.manifesto__banner {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  will-change: transform;
}

.manifesto__quote {
  margin-top: 2rem;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.1rem);
  font-weight: 600;
  line-height: 1.4;
  transform: rotate(-0.5deg);
}

.manifesto__quote p + p {
  margin-top: 0.25rem;
  color: var(--muted-brown);
}

/* --------------------------------------------------------------------------
   Token board
   -------------------------------------------------------------------------- */
.token__board {
  background: var(--paper-cream);
  border: 2.5px solid var(--ink);
  border-radius: 4px 12px 6px 10px;
  padding: 2rem;
  box-shadow: var(--shadow-paper);
  position: relative;
  max-width: 640px;
  margin: 0 auto;
  transform: rotate(0.4deg);
  overflow: visible;
}

.token__board::before {
  content: "";
  position: absolute;
  top: 12px;
  right: 16px;
  width: 48px;
  height: 48px;
  border: 2px dashed rgba(26, 26, 26, 0.15);
  border-radius: 50%;
  pointer-events: none;
}

.token__identity {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.75rem;
  padding-bottom: 1.25rem;
  border-bottom: 2px dashed rgba(26, 26, 26, 0.2);
}

.token__logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--paper);
}

.token__name {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.token__ticker-lg {
  font-family: var(--font-mono);
  font-size: 1rem;
  color: var(--graphite);
  margin-top: 0.25rem;
}

.token__info {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 1.75rem;
}

.token__row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 0.75rem;
  align-items: baseline;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid rgba(26, 26, 26, 0.08);
}

.token__row dt {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--graphite-light);
}

.token__row dd {
  font-weight: 500;
  word-break: break-all;
}

.token__ca {
  font-size: 1.05rem;
  letter-spacing: 0.03em;
}

.status-badge {
  display: inline-block;
  padding: 0.2rem 0.65rem;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1.5px dashed var(--ink);
  border-radius: var(--radius-rough);
  background: rgba(122, 155, 184, 0.15);
}

.status-badge.is-live {
  background: rgba(20, 241, 149, 0.15);
  border-style: solid;
}

.token__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

/* --------------------------------------------------------------------------
   How to buy
   -------------------------------------------------------------------------- */
.howtobuy__flow {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 0.5rem;
  overflow: visible;
  padding: 8px 0;
}

.buy-step {
  flex: 1 1 180px;
  max-width: 220px;
  background: var(--paper-cream);
  border: 2px solid var(--ink);
  border-radius: var(--radius-rough);
  padding: 1.5rem 1.1rem;
  box-shadow: var(--shadow-paper);
  transform: rotate(var(--rot, 0deg));
  text-align: center;
  transition: transform 0.3s ease;
}

.buy-step:hover {
  transform: rotate(0deg);
}

.buy-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  border: 2px solid var(--ink);
  border-radius: 50%;
  margin-bottom: 0.75rem;
  background: var(--paper-warm);
}

.buy-step__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  line-height: 1.2;
}

.buy-step__text {
  font-size: 0.92rem;
  color: var(--graphite);
}

.buy-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex: 0 0 auto;
  align-self: center;
  overflow: visible;
  padding: 4px 0;
}

.buy-arrow svg {
  overflow: visible;
}

.dotted-path {
  animation: dashMove 2s linear infinite;
}

@keyframes dashMove {
  to { stroke-dashoffset: -20; }
}

.buy-arrow__paw {
  position: absolute;
  animation: pawAlong 3s ease-in-out infinite;
  opacity: 0.6;
}

@keyframes pawAlong {
  0% { transform: translateX(-24px); opacity: 0; }
  20% { opacity: 0.6; }
  80% { opacity: 0.6; }
  100% { transform: translateX(24px); opacity: 0; }
}

.howtobuy__note {
  text-align: center;
  margin-top: 2.5rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--graphite);
  transform: rotate(-1deg);
}

/* --------------------------------------------------------------------------
   Loyalty meter
   -------------------------------------------------------------------------- */
.loyalty {
  max-width: 560px;
}

.loyalty__card {
  position: relative;
  background: var(--paper-cream);
  border: 2.5px solid var(--ink);
  border-radius: var(--radius-rough);
  padding: 2.5rem 1.75rem;
  box-shadow: var(--shadow-paper);
  text-align: center;
  transform: rotate(-0.8deg);
  overflow: visible;
}

.loyalty__card.is-maxed {
  animation: cardShake 0.5s ease;
}

@keyframes cardShake {
  0%, 100% { transform: rotate(-0.8deg); }
  20% { transform: rotate(-2deg) translateX(-4px); }
  40% { transform: rotate(1deg) translateX(4px); }
  60% { transform: rotate(-1.5deg) translateX(-3px); }
  80% { transform: rotate(0.5deg) translateX(2px); }
}

.loyalty__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.loyalty__label {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  min-height: 2.2em;
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
  transition: opacity 0.2s ease;
}

.loyalty__slider-wrap {
  padding: 0.5rem 0.5rem 0;
  overflow: visible;
}

.loyalty__slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 16px;
  background: transparent;
  border: none;
  cursor: none;
  position: relative;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 16' preserveAspectRatio='none'%3E%3Cpath d='M4 8 Q20 3 40 9 T80 6 T120 11 T160 5 T200 9 T240 6 T280 11 T320 5 T360 9 T396 8' stroke='%231a1a1a' stroke-width='2.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  overflow: visible;
}

body.touch-device .loyalty__slider {
  cursor: pointer;
}

.loyalty__slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 28px;
  height: 28px;
  background: var(--ink);
  border: 2px solid var(--paper);
  border-radius: 50% 50% 45% 50%;
  box-shadow: 2px 2px 0 rgba(26, 26, 26, 0.2);
  cursor: grab;
  margin-top: -6px;
}

.loyalty__slider::-moz-range-thumb {
  width: 28px;
  height: 28px;
  background: var(--ink);
  border: 2px solid var(--paper);
  border-radius: 50% 50% 45% 50%;
  box-shadow: 2px 2px 0 rgba(26, 26, 26, 0.2);
  cursor: grab;
}

.loyalty__slider::-webkit-slider-runnable-track {
  height: 16px;
  background: transparent;
}

.loyalty__slider::-moz-range-track {
  height: 16px;
  background: transparent;
  border: none;
}

.loyalty__ticks {
  display: flex;
  justify-content: space-between;
  margin-top: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--graphite-light);
}

.loyalty__maxed {
  margin-top: 1.25rem;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--muted-brown);
  animation: maxedPop 0.4s var(--ease-out);
}

@keyframes maxedPop {
  from { transform: scale(0.6); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.loyalty__burst {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.loyalty__burst .burst-paw {
  position: absolute;
  font-size: 1.2rem;
  animation: burstOut 0.9s var(--ease-out) forwards;
  opacity: 0;
}

@keyframes burstOut {
  0% { transform: translate(0, 0) scale(0.3); opacity: 1; }
  100% { transform: translate(var(--bx), var(--by)) scale(1.2); opacity: 0; }
}

/* --------------------------------------------------------------------------
   Quote wall
   -------------------------------------------------------------------------- */
.quotes__wall {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  align-items: start;
  overflow: visible;
  padding: 12px 4px 8px;
}

.scrap {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.35;
  padding: 1.25rem 1.1rem;
  background: var(--paper-cream);
  border: 1.5px solid var(--ink);
  box-shadow: 2px 3px 0 rgba(26, 26, 26, 0.08);
  transform: rotate(var(--rot, 0deg));
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: visible;
}

.scrap::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  width: 40px;
  height: 12px;
  background: var(--tape);
  transform: translateX(-50%) rotate(-2deg);
  border: 1px solid rgba(139, 111, 92, 0.2);
}

.scrap:hover {
  transform: rotate(0deg) scale(1.03);
  box-shadow: 3px 5px 0 rgba(26, 26, 26, 0.1);
  z-index: 2;
}

.scrap--1 { background: #fff9e8; }
.scrap--2 { background: #eef4f8; }
.scrap--3 { background: #f5efe8; }
.scrap--4 { background: var(--paper-cream); }
.scrap--5 { background: #f0f4ee; }
.scrap--6 { background: #faf6f0; }
.scrap--7 { background: #f3f0eb; grid-column: 1 / -1; max-width: 420px; margin: 0 auto; text-align: center; }

/* --------------------------------------------------------------------------
   Community
   -------------------------------------------------------------------------- */
.community {
  padding-bottom: 4rem;
}

.community__inner {
  text-align: center;
  background: var(--paper-cream);
  border: 2.5px solid var(--ink);
  border-radius: 6px 14px 8px 12px;
  padding: 3rem 1.5rem;
  box-shadow: var(--shadow-paper);
  position: relative;
  overflow: visible;
}

.community__inner::before,
.community__inner::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 60px;
  border: 2px solid rgba(26, 26, 26, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.community__inner::before { top: 16px; left: 20px; }
.community__inner::after { bottom: 20px; right: 24px; width: 40px; height: 40px; }

.community__logo {
  width: 120px;
  height: 120px;
  margin: 0 auto 1.25rem;
  object-fit: contain;
  border: 2.5px solid var(--ink);
  border-radius: 50%;
  background: var(--paper);
  animation: breathe 5s ease-in-out infinite;
}

.community__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 3.4rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 0.75rem;
}

.community__text {
  max-width: 32rem;
  margin: 0 auto 1.75rem;
  color: var(--graphite);
  font-size: 1.1rem;
}

.community__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.footer {
  background: var(--ink);
  color: var(--paper);
  padding: 3rem 1.25rem 2.5rem;
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 8' preserveAspectRatio='none'%3E%3Cpath d='M0 4 Q30 1 60 5 T120 3 T180 6 T240 2 T300 5 T360 3 T400 4' stroke='%23f7f4ef' stroke-width='2' fill='none' opacity='0.4'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
}

.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: center;
}

.footer__brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.footer__logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 50%;
  border: 2px solid rgba(247, 244, 239, 0.4);
  background: var(--paper);
}

.footer__ticker {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
}

.footer__links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.25rem;
}

.footer__links a,
.footer__links button {
  font-weight: 500;
  color: var(--shirt-blue-faded);
  text-decoration: underline;
  text-decoration-style: wavy;
  text-underline-offset: 4px;
  transition: color 0.2s ease;
}

.footer__links a:hover,
.footer__links button:hover {
  color: var(--paper);
}

.footer__ca {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.footer__ca code {
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  word-break: break-all;
}

.footer__ca .btn {
  color: var(--paper);
  border-color: rgba(247, 244, 239, 0.5);
}

.footer__disclaimer {
  max-width: 560px;
  margin: 0 auto 1.5rem;
  font-size: 0.8rem;
  line-height: 1.55;
  color: rgba(247, 244, 239, 0.55);
}

.footer__signoff {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  opacity: 0.85;
  transform: rotate(-1deg);
  display: inline-block;
}

/* --------------------------------------------------------------------------
   Micro doodles
   -------------------------------------------------------------------------- */
.doodles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.doodle-mark {
  position: absolute;
  opacity: 0.08;
  color: var(--ink);
  font-size: 1.2rem;
  user-select: none;
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 960px) {
  .why__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero__content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }

  .hero__left {
    order: 1;
  }

  .hero__right {
    order: 0;
    min-height: 320px;
  }

  .hero__character-wrap {
    width: min(100%, 360px);
  }

  .hero__narrative {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__label {
    transform: rotate(0deg);
  }

  .float-note--2,
  .float-note--4 {
    left: 0;
  }

  .float-note--3 {
    right: 0;
  }

  .buy-arrow {
    width: 100%;
    transform: rotate(90deg);
    height: 48px;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-h: 74px;
  }

  body {
    cursor: auto;
  }

  .cursor-dot,
  .cursor-paw {
    display: none !important;
  }

  .nav__toggle {
    display: flex;
  }

  .nav__menu {
    position: fixed;
    inset: 0;
    top: 0;
    flex-direction: column;
    justify-content: center;
    gap: 1.25rem;
    background: var(--paper);
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
    padding: 5rem 2rem 2rem;
    transform: translateX(100%);
    transition: transform 0.35s var(--ease-out);
    z-index: 1;
  }

  .nav__menu.is-open {
    transform: translateX(0);
  }

  .nav__link {
    font-size: 1.35rem;
    font-family: var(--font-display);
    font-weight: 700;
  }

  .nav__cta {
    margin-left: 0;
    margin-top: 0.5rem;
  }

  .section {
    padding: 3.5rem 1.1rem;
  }

  .hero {
    padding-top: 1rem;
    min-height: auto;
  }

  .hero__bg-img {
    opacity: 0.4;
  }

  .float-note {
    font-size: 0.85rem;
    padding: 0.25rem 0.5rem;
  }

  .float-note--5 {
    display: none;
  }

  .hero__steam,
  .hero__motion-lines {
    display: none;
  }

  .why__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .token__row {
    grid-template-columns: 80px 1fr;
  }

  .howtobuy__flow {
    flex-direction: column;
    align-items: center;
  }

  .buy-step {
    max-width: 100%;
    width: 100%;
  }

  .scrap--7 {
    grid-column: auto;
  }
}

@media (max-width: 480px) {
  .why__grid {
    grid-template-columns: 1fr;
  }

  .tape-card {
    transform: rotate(0deg) !important;
  }

  .hero__actions .btn {
    flex: 1 1 calc(50% - 0.5rem);
  }

  .hero__character-wrap {
    width: min(100%, 300px);
  }

  .comic-panel--finale {
    grid-column: auto;
  }

  .token__board {
    padding: 1.5rem 1.1rem;
  }

  .token__actions {
    flex-direction: column;
  }

  .token__actions .btn {
    width: 100%;
  }

  .community__actions {
    flex-direction: column;
  }

  .community__actions .btn {
    width: 100%;
  }

  .float-note--2,
  .float-note--3 {
    display: none;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero__character,
  .community__logo {
    animation: none;
  }

  .cursor-dot,
  .cursor-paw {
    display: none !important;
  }

  body {
    cursor: auto;
  }
}
