:root {
  /* Sampled directly from the meme */
  --c-purple: #8a4fb8;
  --c-purple-deep: #5d2d8a;
  --c-yellow: #f5c84a;
  --c-yellow-deep: #e8a82a;
  --c-coral: #ff6b5e;
  --c-pink: #ff3d7a;
  --c-sky-deep: #1a0b3d;
  --c-sky-mid: #6b1d5e;
  --c-sky-warm: #ff8551;
  --c-sky-glow: #ffd06b;

  --c-paper: #fff5d9;
  --c-paper-warm: #ffe9b3;
  --c-cream: #fff7e6;
  --c-ink: #0a0511;

  --c-tape: rgba(245, 200, 74, 0.6);

  /* Brutalist shadow primitives */
  --sh-1: 4px 4px 0 var(--c-ink);
  --sh-2: 6px 6px 0 var(--c-ink);
  --sh-3: 10px 10px 0 var(--c-ink);
  --sh-4: 14px 14px 0 var(--c-ink);
  --sh-color: 8px 8px 0 var(--c-coral);

  --stroke: 3px solid var(--c-ink);
  --stroke-thick: 5px solid var(--c-ink);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Space Mono', 'Courier New', monospace;
  background: var(--c-sky-deep);
  color: var(--c-ink);
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
  font-weight: 700;
}

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

/* ---------- Sky background ---------- */
.sky {
  position: fixed;
  inset: 0;
  z-index: -3;
  background: linear-gradient(
    180deg,
    var(--c-sky-deep) 0%,
    var(--c-sky-mid) 28%,
    var(--c-coral) 55%,
    var(--c-sky-warm) 78%,
    var(--c-sky-glow) 100%
  );
}
.rays {
  position: fixed;
  inset: 0;
  z-index: -2;
  background: repeating-conic-gradient(
    from 0deg at 50% 100%,
    rgba(255, 210, 74, 0.14) 0deg 5deg,
    transparent 5deg 13deg
  );
  mix-blend-mode: screen;
  animation: spin 140s linear infinite;
  transform-origin: 50% 100%;
}
@keyframes spin { to { transform: rotate(360deg); } }

.sun {
  position: fixed;
  bottom: -160px;
  left: 50%;
  transform: translateX(-50%);
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, #fff7c4 0%, #ffd24a 40%, #ff8551 80%, transparent 100%);
  z-index: -2;
  filter: blur(2px);
  animation: pulse 4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: translateX(-50%) scale(1); }
  50% { transform: translateX(-50%) scale(1.06); }
}

.mountains {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: 130px;
  z-index: -1;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 130' preserveAspectRatio='none'><path d='M0 130 L0 80 L100 30 L240 80 L380 20 L520 70 L660 25 L800 75 L940 30 L1080 80 L1200 40 L1200 130 Z' fill='%230a0511'/></svg>") center bottom / cover no-repeat;
  pointer-events: none;
}

/* Paper grain overlay across full page */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.5 0'/></filter><rect width='200' height='200' filter='url(%23n)' opacity='0.35'/></svg>");
  mix-blend-mode: multiply;
  opacity: 0.18;
}

#particles {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.7;
}

/* ---------- Marker / handwritten type ---------- */
.marker { font-family: 'Permanent Marker', 'Comic Sans MS', cursive; font-weight: 400; }
.scrawl { font-family: 'Caveat', cursive; font-weight: 700; }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 16px;
  z-index: 50;
  margin: 16px 24px 0;
  padding: 14px 22px;
  background: var(--c-paper);
  border: var(--stroke-thick);
  border-radius: 0;
  box-shadow: var(--sh-3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transform: rotate(-0.4deg);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Permanent Marker', cursive;
  font-size: 28px;
  letter-spacing: 1px;
  color: var(--c-ink);
}
.logo-mark {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 38px; height: 38px;
  background: var(--c-yellow);
  border: var(--stroke);
  border-radius: 50%;
  font-size: 22px;
  animation: spin 12s linear infinite;
}

.nav-links {
  display: flex;
  gap: 18px;
}
.nav-links a {
  font-family: 'Permanent Marker', cursive;
  font-size: 16px;
  padding: 4px 10px;
  border: 2px dashed transparent;
  transition: all 0.15s;
}
.nav-links a:hover {
  background: var(--c-yellow);
  border-color: var(--c-ink);
  transform: rotate(-2deg);
}
.nav-charity {
  background: var(--c-coral);
  border: 2px solid var(--c-ink) !important;
  color: var(--c-ink);
  box-shadow: 3px 3px 0 var(--c-ink);
  transform: rotate(1deg);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-x {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  background: var(--c-ink);
  color: var(--c-cream);
  border: var(--stroke);
  box-shadow: var(--sh-2);
  transform: rotate(-3deg);
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}
.nav-x:hover {
  transform: rotate(-3deg) translate(-2px, -2px);
  box-shadow: 8px 8px 0 var(--c-ink);
  background: var(--c-purple);
  color: var(--c-cream);
}
.nav-x:active {
  transform: rotate(-3deg) translate(4px, 4px);
  box-shadow: 0 0 0 var(--c-ink);
}

.nav-cta {
  background: var(--c-coral);
  border: var(--stroke);
  color: var(--c-ink);
  font-family: 'Permanent Marker', cursive;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 12px 22px;
  cursor: pointer;
  box-shadow: var(--sh-2);
  transform: rotate(2deg);
  transition: transform 0.15s, box-shadow 0.15s;
}
.nav-cta:hover {
  transform: rotate(2deg) translate(-2px, -2px);
  box-shadow: 8px 8px 0 var(--c-ink);
}
.nav-cta:active {
  transform: rotate(2deg) translate(4px, 4px);
  box-shadow: 0 0 0 var(--c-ink);
}

/* ---------- Hero ---------- */
.hero {
  padding: 60px 40px 100px;
  position: relative;
  z-index: 2;
}
.hero-grid {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

/* Sticker badge */
.sticker {
  display: inline-block;
  background: var(--c-yellow);
  border: var(--stroke);
  font-family: 'Permanent Marker', cursive;
  font-size: 14px;
  letter-spacing: 1px;
  padding: 8px 16px;
  margin-bottom: 24px;
  box-shadow: var(--sh-1);
  transform: rotate(-2deg);
}
.sticker.coral { background: var(--c-coral); }
.sticker.purple { background: var(--c-purple); color: var(--c-cream); }

.hero-copy h1 {
  font-family: 'Permanent Marker', cursive;
  font-size: clamp(56px, 8.5vw, 130px);
  line-height: 0.92;
  letter-spacing: -2px;
  color: var(--c-cream);
  text-shadow:
    4px 4px 0 var(--c-ink),
    -1px -1px 0 var(--c-ink),
    1px -1px 0 var(--c-ink),
    -1px 1px 0 var(--c-ink);
  margin-bottom: 28px;
}
.hero-copy h1 .word-yellow {
  display: inline-block;
  color: var(--c-yellow);
  transform: rotate(-3deg);
  position: relative;
}
.hero-copy h1 .word-yellow::after {
  content: '';
  position: absolute;
  left: -6px; right: -6px; bottom: -6px;
  height: 14px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 14' preserveAspectRatio='none'><path d='M2 8 Q 50 2 100 7 T 198 6' stroke='%230a0511' stroke-width='3' fill='none' stroke-linecap='round'/></svg>") center / 100% 100% no-repeat;
}
.hero-copy h1 .word-coral {
  display: inline-block;
  color: var(--c-coral);
  transform: rotate(2deg);
}

.lede {
  font-family: 'Caveat', cursive;
  font-size: 24px;
  line-height: 1.3;
  max-width: 540px;
  color: var(--c-cream);
  background: var(--c-ink);
  padding: 18px 22px;
  border: var(--stroke);
  box-shadow: var(--sh-2);
  margin-bottom: 32px;
  transform: rotate(-1deg);
}
.lede strong { color: var(--c-yellow); }
.lede a {
  color: var(--c-yellow);
  border-bottom: 2px dashed currentColor;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.btn {
  font-family: 'Permanent Marker', cursive;
  font-size: 18px;
  letter-spacing: 1px;
  padding: 16px 28px;
  border: var(--stroke-thick);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.12s, box-shadow 0.12s;
  background: var(--c-paper);
  color: var(--c-ink);
  box-shadow: var(--sh-3);
}
.btn:hover {
  transform: translate(-3px, -3px);
  box-shadow: 13px 13px 0 var(--c-ink);
}
.btn:active {
  transform: translate(6px, 6px);
  box-shadow: 0 0 0 var(--c-ink);
}
.btn-primary { background: var(--c-yellow); }
.btn-coral { background: var(--c-coral); }
.btn-ghost { background: var(--c-cream); }
.btn-sm { padding: 10px 18px; font-size: 15px; box-shadow: var(--sh-1); }
.btn-icon { font-size: 20px; }

.hero-stats {
  display: flex;
  gap: 18px;
  list-style: none;
  flex-wrap: wrap;
}
.hero-stats li {
  background: var(--c-paper);
  border: var(--stroke);
  box-shadow: var(--sh-1);
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  min-width: 110px;
}
.hero-stats li:nth-child(1) { transform: rotate(-2deg); }
.hero-stats li:nth-child(2) { transform: rotate(1.5deg); background: var(--c-yellow); }
.hero-stats li:nth-child(3) { transform: rotate(-1deg); background: var(--c-coral); }
.hero-stats b {
  font-family: 'Permanent Marker', cursive;
  font-size: 30px;
  color: var(--c-ink);
  line-height: 1;
}
.hero-stats span {
  font-family: 'Caveat', cursive;
  font-size: 15px;
  margin-top: 4px;
}

/* ---------- Hero art ---------- */
.hero-art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 580px;
}
.halo {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 210, 74, 0.55) 0%, rgba(255, 133, 81, 0.2) 40%, transparent 70%);
  filter: blur(20px);
  animation: pulse 5s ease-in-out infinite;
}
.art-frame {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 540px;
  background: var(--c-paper);
  border: var(--stroke-thick);
  box-shadow: 14px 14px 0 var(--c-ink);
  padding: 14px;
  transform: rotate(-2deg);
  transition: transform 0.3s;
}
.art-frame::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%) rotate(-4deg);
  width: 120px;
  height: 30px;
  background: var(--c-tape);
  border: 1.5px solid rgba(0,0,0,0.2);
  z-index: 5;
}
.art-frame::after {
  content: 'INHALE';
  position: absolute;
  top: -16px; right: -14px;
  background: var(--c-coral);
  border: var(--stroke);
  font-family: 'Permanent Marker', cursive;
  font-size: 14px;
  padding: 6px 12px;
  box-shadow: var(--sh-1);
  transform: rotate(8deg);
  z-index: 6;
}
.hero-art:hover .art-frame { transform: rotate(0deg); }
#hopium-img {
  display: block;
  width: 100%;
  height: auto;
  user-select: none;
  -webkit-user-drag: none;
  cursor: pointer;
}

.vapor {
  position: absolute;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 247, 230, 0.85) 0%, rgba(255, 247, 230, 0) 70%);
  pointer-events: none;
  opacity: 0;
  z-index: 3;
  top: 60%; left: 30%;
}
.v1 { animation: vapor 4s ease-in-out infinite; }
.v2 { animation: vapor 4s ease-in-out infinite 1.3s; left: 22%; }
.v3 { animation: vapor 4s ease-in-out infinite 2.6s; left: 35%; }
@keyframes vapor {
  0% { transform: translate(0, 0) scale(0.5); opacity: 0; }
  20% { opacity: 0.85; }
  100% { transform: translate(-160px, -200px) scale(1.8); opacity: 0; }
}

.inhale-btn {
  position: absolute;
  bottom: -10px;
  right: -10px;
  background: var(--c-yellow);
  color: var(--c-ink);
  border: var(--stroke);
  padding: 16px 24px;
  font-family: 'Permanent Marker', cursive;
  font-size: 18px;
  letter-spacing: 2px;
  cursor: pointer;
  box-shadow: var(--sh-3);
  z-index: 7;
  transform: rotate(-4deg);
  transition: transform 0.12s, box-shadow 0.12s;
}
.inhale-btn:hover {
  transform: rotate(-4deg) translate(-3px, -3px);
  box-shadow: 13px 13px 0 var(--c-ink);
}
.inhale-btn:active {
  transform: rotate(-4deg) translate(6px, 6px);
  box-shadow: 0 0 0 var(--c-ink);
}

/* Floating doodle stickers around hero */
.doodle {
  position: absolute;
  font-family: 'Caveat', cursive;
  font-size: 26px;
  color: var(--c-cream);
  pointer-events: none;
}
.doodle-arrow {
  position: absolute;
  width: 140px;
  height: 80px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 140 80'><path d='M10 70 Q 40 10 100 30' stroke='%23fff7e6' stroke-width='3' fill='none' stroke-linecap='round'/><path d='M90 20 L 105 28 L 95 42' stroke='%23fff7e6' stroke-width='3' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>") no-repeat center / contain;
  pointer-events: none;
}

.hero-art .doodle-1 {
  top: -10px; left: -30px;
  transform: rotate(-12deg);
}
.hero-art .doodle-2 {
  bottom: 40px; left: -50px;
  transform: rotate(8deg);
  font-size: 22px;
}

/* ---------- Section header common ---------- */
.section-title {
  font-family: 'Permanent Marker', cursive;
  font-size: clamp(44px, 6vw, 80px);
  line-height: 0.95;
  color: var(--c-cream);
  text-shadow:
    3px 3px 0 var(--c-ink),
    -1px -1px 0 var(--c-ink),
    1px -1px 0 var(--c-ink);
  text-align: center;
  margin-bottom: 16px;
}
.section-title .hl {
  background: var(--c-yellow);
  color: var(--c-ink);
  padding: 0 14px;
  border: var(--stroke);
  display: inline-block;
  transform: rotate(-2deg);
  text-shadow: none;
  box-shadow: var(--sh-1);
}
.section-title .hl-coral { background: var(--c-coral); }
.section-lede {
  font-family: 'Caveat', cursive;
  font-size: 26px;
  text-align: center;
  color: var(--c-cream);
  margin-bottom: 50px;
}

/* ---------- Origin / Lore ---------- */
.origin {
  padding: 80px 40px;
  position: relative;
  z-index: 2;
  text-align: center;
}
.origin-wrap {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 30px;
  align-items: start;
  text-align: left;
}

/* dictionary definition card */
.origin-def {
  position: relative;
  background: var(--c-cream);
  border: var(--stroke-thick);
  padding: 34px 30px 30px;
  box-shadow: 14px 14px 0 var(--c-ink);
  transform: rotate(-1.2deg);
}
.def-tab {
  position: absolute;
  top: -18px;
  left: 24px;
  background: var(--c-coral);
  border: var(--stroke);
  font-family: 'Permanent Marker', cursive;
  font-size: 16px;
  padding: 5px 14px;
  box-shadow: var(--sh-1);
  transform: rotate(-3deg);
}
.def-word {
  font-family: 'Permanent Marker', cursive;
  font-size: 34px;
  color: var(--c-ink);
  margin-bottom: 4px;
  line-height: 1;
}
.def-pron {
  font-family: 'Space Mono', monospace;
  font-size: 16px;
  opacity: 0.6;
}
.def-pos {
  font-family: 'Caveat', cursive;
  font-size: 20px;
  font-style: italic;
  opacity: 0.7;
}
.def-body {
  font-family: 'Caveat', cursive;
  font-size: 23px;
  line-height: 1.32;
  color: var(--c-ink);
  margin: 16px 0 22px;
  border-left: 4px solid var(--c-ink);
  padding-left: 14px;
}
.def-formula {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.f-part {
  font-family: 'Permanent Marker', cursive;
  font-size: 18px;
  padding: 6px 12px;
  background: var(--c-paper);
  border: var(--stroke);
  box-shadow: var(--sh-1);
  color: var(--c-ink);
}
.f-part.alt { background: var(--c-purple); color: var(--c-cream); }
.f-part.res { background: var(--c-yellow); transform: rotate(-2deg); }
.f-op {
  font-family: 'Permanent Marker', cursive;
  font-size: 22px;
  color: var(--c-cream);
}

/* origin timeline */
.origin-timeline {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ot-step {
  display: flex;
  align-items: stretch;
  gap: 14px;
}
.ot-year {
  flex: 0 0 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-ink);
  color: var(--c-yellow);
  border: var(--stroke);
  font-family: 'Permanent Marker', cursive;
  font-size: 20px;
  text-align: center;
  box-shadow: var(--sh-1);
}
.ot-card {
  flex: 1;
  background: var(--c-paper);
  border: var(--stroke);
  padding: 16px 20px;
  box-shadow: var(--sh-2);
}
.ot-step:nth-child(odd) .ot-card { transform: rotate(0.6deg); }
.ot-step:nth-child(even) .ot-card { transform: rotate(-0.6deg); }
.ot-card.alt { background: var(--c-yellow); }
.ot-card.now { background: var(--c-coral); }
.ot-card h4 {
  font-family: 'Permanent Marker', cursive;
  font-size: 22px;
  color: var(--c-ink);
  margin-bottom: 4px;
}
.ot-card p {
  font-family: 'Caveat', cursive;
  font-size: 20px;
  line-height: 1.28;
  color: var(--c-ink);
}
.ot-card b { background: rgba(10,5,17,0.08); padding: 0 3px; }

.origin-cta {
  margin-top: 36px;
}

/* ---------- Tank ---------- */
.tank-section {
  padding: 100px 40px;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.tank-wrap {
  max-width: 700px;
  width: 100%;
  text-align: center;
}

.tank {
  display: inline-flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 32px;
  position: relative;
}

.tank-glass {
  position: relative;
  width: 220px;
  height: 380px;
  border-radius: 110px;
  background: var(--c-paper);
  border: var(--stroke-thick);
  overflow: hidden;
  box-shadow: var(--sh-4);
}
.tank-fill {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 0%;
  background: linear-gradient(180deg, var(--c-yellow) 0%, var(--c-coral) 60%, var(--c-pink) 100%);
  transition: height 0.6s cubic-bezier(.22,1,.36,1);
}
.tank-fill::before {
  content: '';
  position: absolute;
  top: -6px; left: 0; right: 0;
  height: 12px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
}
.tank-bubbles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.tank-bubbles span {
  position: absolute;
  bottom: -20px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255,255,255,0.7);
  border: 2px solid var(--c-ink);
  animation: bubble 5s linear infinite;
}
.tank-bubbles span:nth-child(1) { left: 20%; animation-delay: 0s; }
.tank-bubbles span:nth-child(2) { left: 35%; animation-delay: 1s; width: 10px; height: 10px; }
.tank-bubbles span:nth-child(3) { left: 50%; animation-delay: 2s; }
.tank-bubbles span:nth-child(4) { left: 65%; animation-delay: 0.5s; width: 8px; height: 8px; }
.tank-bubbles span:nth-child(5) { left: 75%; animation-delay: 3s; }
.tank-bubbles span:nth-child(6) { left: 45%; animation-delay: 4s; width: 12px; height: 12px; }
@keyframes bubble {
  0% { transform: translateY(0); opacity: 0; }
  10% { opacity: 1; }
  100% { transform: translateY(-400px); opacity: 0; }
}
.tank-label {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) rotate(-90deg);
  font-family: 'Permanent Marker', cursive;
  font-size: 36px;
  letter-spacing: 8px;
  color: var(--c-ink);
  z-index: 2;
  pointer-events: none;
}
.tank-percent {
  position: absolute;
  bottom: 12px; left: 50%;
  transform: translateX(-50%);
  font-family: 'Permanent Marker', cursive;
  font-size: 18px;
  color: var(--c-ink);
  z-index: 2;
  background: var(--c-paper);
  padding: 4px 14px;
  border: var(--stroke);
  box-shadow: var(--sh-1);
}

.tank-valve {
  position: relative;
  margin-top: 20px;
  margin-left: -10px;
}
.valve-knob {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--c-yellow);
  border: var(--stroke);
}
.valve-pipe {
  width: 8px;
  height: 70px;
  background: var(--c-paper);
  border: var(--stroke);
  margin-left: 11px;
  margin-top: -2px;
}

.tank-helper {
  margin-top: 18px;
  font-family: 'Caveat', cursive;
  font-size: 22px;
  color: var(--c-cream);
}
.tank-helper b {
  color: var(--c-yellow);
  font-family: 'Permanent Marker', cursive;
  font-size: 24px;
}

/* ---------- Charity ---------- */
.charity {
  padding: 80px 40px;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.charity-card {
  max-width: 1100px;
  width: 100%;
  background: var(--c-paper);
  border: var(--stroke-thick);
  padding: 56px;
  position: relative;
  box-shadow: 16px 16px 0 var(--c-ink);
  transform: rotate(-0.6deg);
}
/* Tape on the corners */
.charity-card::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 80px;
  width: 130px;
  height: 36px;
  background: var(--c-tape);
  border: 1.5px solid rgba(0,0,0,0.2);
  transform: rotate(-3deg);
  z-index: 2;
}
.charity-card::after {
  content: '';
  position: absolute;
  top: -16px;
  right: 60px;
  width: 100px;
  height: 36px;
  background: rgba(255, 107, 94, 0.55);
  border: 1.5px solid rgba(0,0,0,0.2);
  transform: rotate(5deg);
  z-index: 2;
}

.charity-stamp {
  position: absolute;
  top: -32px;
  right: -24px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--c-coral);
  border: 5px solid var(--c-ink);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Permanent Marker', cursive;
  color: var(--c-ink);
  text-align: center;
  line-height: 1;
  transform: rotate(14deg);
  box-shadow: var(--sh-3);
  z-index: 3;
}
.charity-stamp .num {
  font-size: 42px;
}
.charity-stamp .lbl {
  font-size: 13px;
  letter-spacing: 1px;
  margin-top: 4px;
}

.charity-card h2 {
  font-family: 'Permanent Marker', cursive;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
  margin-bottom: 22px;
  color: var(--c-ink);
  max-width: 80%;
}
.charity-card h2 .hl {
  background: var(--c-yellow);
  padding: 0 12px;
  border: var(--stroke);
  display: inline-block;
  transform: rotate(-1.5deg);
  box-shadow: var(--sh-1);
}
.charity-card > p {
  font-family: 'Caveat', cursive;
  font-size: 26px;
  line-height: 1.35;
  max-width: 760px;
  margin-bottom: 40px;
  color: var(--c-ink);
}
.charity-card a {
  color: var(--c-purple-deep);
  border-bottom: 2px dashed currentColor;
  font-weight: 700;
}

.charity-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 40px;
}
.pillar {
  background: var(--c-cream);
  border: var(--stroke);
  padding: 26px;
  box-shadow: var(--sh-2);
  transition: transform 0.18s;
}
.pillar:nth-child(1) { transform: rotate(-1.5deg); }
.pillar:nth-child(2) { transform: rotate(1deg); background: var(--c-yellow); }
.pillar:nth-child(3) { transform: rotate(-0.5deg); }
.pillar:hover { transform: rotate(0) translate(-3px, -3px); box-shadow: 11px 11px 0 var(--c-ink); }

.pillar-icon {
  font-size: 44px;
  margin-bottom: 8px;
  display: inline-block;
  background: var(--c-paper);
  border: var(--stroke);
  width: 70px; height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--sh-1);
  margin-bottom: 14px;
}
.pillar h3 {
  font-family: 'Permanent Marker', cursive;
  font-size: 22px;
  margin-bottom: 6px;
  color: var(--c-ink);
}
.pillar p {
  font-family: 'Caveat', cursive;
  font-size: 20px;
  color: var(--c-ink);
  line-height: 1.3;
}

.charity-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---------- Hero ® stamp ---------- */
.hero-stamp {
  position: absolute;
  top: -10px;
  left: -30px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: var(--c-coral);
  border: 5px solid var(--c-ink);
  box-shadow: var(--sh-3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  transform: rotate(-14deg);
  z-index: 6;
  font-family: 'Permanent Marker', cursive;
  color: var(--c-ink);
}
.hs-r {
  font-size: 56px;
  line-height: 0.9;
}
.hs-text {
  font-size: 18px;
  letter-spacing: 1px;
  line-height: 1;
  text-align: left;
}

.logo-r, .word-r {
  font-family: 'Permanent Marker', cursive;
  font-size: 0.5em;
  vertical-align: super;
  color: var(--c-coral);
  -webkit-text-stroke: 1.5px var(--c-ink);
}
h1 .word-r {
  -webkit-text-stroke: 2px var(--c-ink);
  color: var(--c-coral);
  font-size: 0.45em;
  margin-left: -8px;
}

/* ---------- Trademark ---------- */
.trademark {
  padding: 80px 40px;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.trademark-card {
  max-width: 1000px;
  width: 100%;
  background: var(--c-cream);
  border: var(--stroke-thick);
  padding: 56px;
  position: relative;
  box-shadow: 16px 16px 0 var(--c-ink);
  transform: rotate(0.7deg);
  text-align: center;
}
.trademark-card::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%) rotate(-2deg);
  width: 160px;
  height: 36px;
  background: var(--c-tape);
  border: 1.5px solid rgba(0,0,0,0.2);
  z-index: 2;
}

.trademark-stars {
  font-family: 'Permanent Marker', cursive;
  font-size: 18px;
  letter-spacing: 4px;
  color: var(--c-purple-deep);
  margin-bottom: 14px;
}

.trademark-flag {
  display: block;
  font-size: 56px;
  margin-bottom: 12px;
  filter: drop-shadow(2px 3px 0 var(--c-ink));
}

.trademark .sticker {
  margin-bottom: 22px;
}

.trademark-card h2 {
  font-family: 'Permanent Marker', cursive;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1;
  margin-bottom: 26px;
  color: var(--c-ink);
}
.trademark-card h2 .hl {
  background: var(--c-yellow);
  padding: 0 14px;
  border: var(--stroke);
  display: inline-block;
  transform: rotate(-1.5deg);
  box-shadow: var(--sh-1);
  margin: 0 4px;
}
.trademark-card h2 .hl-coral {
  background: var(--c-coral);
}

.trademark-card > p {
  font-family: 'Caveat', cursive;
  font-size: 26px;
  line-height: 1.35;
  max-width: 720px;
  margin: 0 auto 36px;
  color: var(--c-ink);
}
.trademark-card > p strong {
  background: var(--c-yellow);
  padding: 2px 6px;
  border: 2px solid var(--c-ink);
  font-family: 'Permanent Marker', cursive;
  font-size: 20px;
  font-weight: 400;
  display: inline-block;
  transform: rotate(-1deg);
}

.tm-h3 {
  font-family: 'Permanent Marker', cursive;
  font-size: 28px;
  color: var(--c-ink);
  text-align: center;
  margin: 40px auto 22px;
  background: var(--c-yellow);
  display: inline-block;
  padding: 6px 18px;
  border: var(--stroke);
  box-shadow: var(--sh-1);
  transform: rotate(-1.2deg);
}

/* ---- Certificate display ---- */
.cert {
  position: relative;
  max-width: 760px;
  margin: 0 auto 8px;
  padding: 6px;
  background: var(--c-paper-warm, #ffe9b3);
  border: var(--stroke-thick);
  box-shadow: 14px 14px 0 var(--c-ink);
  transform: rotate(-1deg);
}
.cert-border {
  position: absolute;
  inset: 14px;
  border: 3px double var(--c-ink);
  pointer-events: none;
  z-index: 1;
}
.cert-inner {
  position: relative;
  padding: 38px 36px 32px;
  z-index: 2;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(10,5,17,0.18) 1px, transparent 1px);
  background-size: 18px 18px;
}
.cert-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 14px;
  border-bottom: 2px dashed rgba(10,5,17,0.4);
  margin-bottom: 18px;
}
.cert-eu { font-size: 40px; }
.cert-org {
  font-family: 'Permanent Marker', cursive;
  font-size: 18px;
  color: var(--c-ink);
  line-height: 1.1;
}
.cert-sub {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  opacity: 0.7;
  margin-top: 4px;
}
.cert-title {
  font-family: 'Space Mono', monospace;
  font-size: 13px;
  letter-spacing: 4px;
  text-align: center;
  opacity: 0.65;
  margin-bottom: 4px;
}
.cert-mark {
  font-family: 'Permanent Marker', cursive;
  font-size: clamp(54px, 8vw, 88px);
  text-align: center;
  color: var(--c-ink);
  letter-spacing: 2px;
  line-height: 1;
  margin-bottom: 22px;
}
.cert-mark sup {
  font-size: 0.4em;
  color: var(--c-coral);
  -webkit-text-stroke: 2px var(--c-ink);
  margin-left: 4px;
  vertical-align: super;
}
.cert-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 28px;
  padding: 18px 0;
  border-top: 2px solid var(--c-ink);
  border-bottom: 2px solid var(--c-ink);
  margin-bottom: 22px;
}
.cert-grid > div {
  display: flex;
  flex-direction: column;
}
.cert-grid span {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.65;
  margin-bottom: 2px;
}
.cert-grid b {
  font-family: 'Permanent Marker', cursive;
  font-size: 22px;
  color: var(--c-ink);
}
.cert-grid b.ok { color: #1f9d3a; }
.cert-seal {
  position: relative;
  width: 130px;
  height: 130px;
  margin: 8px auto 0;
  border: 4px double var(--c-ink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-8deg);
}
.cert-seal::before {
  content: '';
  position: absolute;
  inset: 6px;
  border: 2px solid var(--c-ink);
  border-radius: 50%;
}
.seal-ring {
  position: absolute;
  inset: 0;
  font-family: 'Permanent Marker', cursive;
  font-size: 10px;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* fallback look — text along top edge */
  padding-top: 8px;
  align-items: flex-start;
  opacity: 0.85;
}
.seal-inner {
  font-family: 'Permanent Marker', cursive;
  font-size: 18px;
  color: var(--c-ink);
}

/* ---- Why cards ---- */
.tm-why {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: 760px;
  margin: 0 auto 16px;
}
.why-card {
  background: var(--c-paper);
  border: var(--stroke);
  padding: 22px 22px 20px;
  box-shadow: var(--sh-2);
}
.why-card:nth-child(1) { transform: rotate(-1deg); }
.why-card:nth-child(2) { transform: rotate(1.5deg); background: var(--c-coral); }
.why-card:nth-child(3) { transform: rotate(-1.5deg); background: var(--c-yellow); }
.why-card:nth-child(4) { transform: rotate(0.8deg); background: var(--c-cream); }
.why-icon {
  font-size: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--c-cream);
  border: var(--stroke);
  box-shadow: var(--sh-1);
  margin-bottom: 12px;
}
.why-card h4 {
  font-family: 'Permanent Marker', cursive;
  font-size: 22px;
  color: var(--c-ink);
  margin-bottom: 6px;
}
.why-card p {
  font-family: 'Caveat', cursive;
  font-size: 20px;
  color: var(--c-ink);
  line-height: 1.3;
}

/* ---- Timeline ---- */
.timeline {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  max-width: 900px;
  margin: 0 auto 36px;
}
.tl-step {
  flex: 1 1 180px;
  background: var(--c-paper);
  border: var(--stroke-thick);
  padding: 20px 18px;
  box-shadow: var(--sh-2);
  min-width: 180px;
  text-align: left;
}
.tl-step:nth-child(odd) { transform: rotate(-0.8deg); }
.tl-step:nth-child(even) { transform: rotate(0.8deg); background: var(--c-yellow); }
.tl-step.now {
  background: var(--c-coral);
  transform: rotate(-1.4deg) scale(1.02);
}
.tl-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--c-ink);
  color: var(--c-cream);
  border: 2px solid var(--c-ink);
  font-family: 'Permanent Marker', cursive;
  font-size: 18px;
  margin-bottom: 10px;
}
.tl-step.now .tl-dot { background: var(--c-ink); color: var(--c-yellow); }
.tl-step h4 {
  font-family: 'Permanent Marker', cursive;
  font-size: 22px;
  color: var(--c-ink);
  margin-bottom: 4px;
}
.tl-step p {
  font-family: 'Caveat', cursive;
  font-size: 18px;
  color: var(--c-ink);
  line-height: 1.25;
}
.tl-line {
  flex: 0 0 30px;
  align-self: center;
  height: 4px;
  background: var(--c-cream);
  position: relative;
  margin: 0 -2px;
}
.tl-line::after {
  content: '';
  position: absolute;
  right: -4px; top: 50%;
  width: 12px; height: 12px;
  border-top: 4px solid var(--c-cream);
  border-right: 4px solid var(--c-cream);
  transform: translateY(-50%) rotate(45deg);
}

.tm-docs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  max-width: 760px;
  margin: 0 auto 16px;
}
.tm-doc {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  background: var(--c-paper);
  border: var(--stroke-thick);
  padding: 28px 24px 22px;
  box-shadow: var(--sh-3);
  transform: rotate(-1.5deg);
  transition: transform 0.15s, box-shadow 0.15s;
  cursor: pointer;
  color: var(--c-ink);
  text-decoration: none;
  overflow: hidden;
}
.tm-doc.tm-doc-alt {
  background: var(--c-yellow);
  transform: rotate(1.5deg);
}
.tm-doc::before {
  content: '';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%) rotate(-3deg);
  width: 90px;
  height: 22px;
  background: var(--c-tape);
  border: 1.5px solid rgba(0,0,0,0.2);
}
.tm-doc:hover {
  transform: rotate(0deg) translate(-3px, -3px);
  box-shadow: 13px 13px 0 var(--c-ink);
}
.tm-doc-stamp {
  align-self: flex-end;
  background: var(--c-coral);
  border: var(--stroke);
  font-family: 'Permanent Marker', cursive;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 4px 12px;
  box-shadow: var(--sh-1);
  transform: rotate(6deg);
  margin-top: -6px;
  margin-bottom: 12px;
}
.tm-doc-title {
  font-family: 'Permanent Marker', cursive;
  font-size: 28px;
  line-height: 1;
  margin-bottom: 8px;
  color: var(--c-ink);
}
.tm-doc-meta {
  font-family: 'Caveat', cursive;
  font-size: 20px;
  line-height: 1.2;
  opacity: 0.8;
  margin-bottom: 16px;
}
.tm-doc-cta {
  font-family: 'Permanent Marker', cursive;
  font-size: 16px;
  padding: 8px 14px;
  background: var(--c-ink);
  color: var(--c-cream);
  border: 2px solid var(--c-ink);
  box-shadow: 4px 4px 0 var(--c-coral);
}
.tm-doc.tm-doc-alt .tm-doc-cta {
  box-shadow: 4px 4px 0 var(--c-purple);
}

.trademark-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.trademark-fine {
  font-family: 'Caveat', cursive;
  font-size: 20px;
  color: var(--c-ink);
  opacity: 0.7;
}

/* ---------- How / Flow ---------- */
.how {
  padding: 80px 40px;
  position: relative;
  z-index: 2;
}
.flow {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}
.flow-step {
  flex: 1;
  min-width: 260px;
  background: var(--c-paper);
  border: var(--stroke-thick);
  padding: 30px 26px;
  text-align: left;
  box-shadow: var(--sh-3);
  position: relative;
}
.flow-step:nth-child(1) { transform: rotate(-1.5deg); }
.flow-step:nth-child(3) { transform: rotate(1.5deg); background: var(--c-yellow); }
.flow-step:nth-child(5) { transform: rotate(-1deg); background: var(--c-coral); }
.flow-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--c-purple);
  color: var(--c-cream);
  border: var(--stroke);
  font-family: 'Permanent Marker', cursive;
  font-size: 24px;
  margin-bottom: 14px;
  box-shadow: var(--sh-1);
}
.flow-step h3 {
  font-family: 'Permanent Marker', cursive;
  font-size: 26px;
  margin-bottom: 8px;
  color: var(--c-ink);
}
.flow-step p {
  font-family: 'Caveat', cursive;
  font-size: 22px;
  color: var(--c-ink);
  line-height: 1.3;
}
.flow-arrow {
  width: 80px;
  height: 50px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 80 50'><path d='M5 25 Q 30 5 65 25' stroke='%23fff7e6' stroke-width='4' fill='none' stroke-linecap='round'/><path d='M55 15 L 70 25 L 55 35' stroke='%23fff7e6' stroke-width='4' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>") no-repeat center / contain;
}

/* ---------- Tokenomics ---------- */
.tokenomics {
  padding: 80px 40px;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.tokeno-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-auto-rows: minmax(150px, auto);
  gap: 18px;
}
.tokeno-card {
  background: var(--c-paper);
  border: var(--stroke-thick);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  box-shadow: var(--sh-3);
  transition: transform 0.15s;
}
.tokeno-card:nth-child(1) { transform: rotate(-1deg); }
.tokeno-card:nth-child(2) { transform: rotate(1.5deg); background: var(--c-coral); }
.tokeno-card:nth-child(3) { transform: rotate(-2deg); background: var(--c-cream); }
.tokeno-card:nth-child(4) { transform: rotate(1deg); background: var(--c-purple); color: var(--c-cream); }
.tokeno-card:nth-child(5) { transform: rotate(-1.5deg); background: var(--c-yellow); }
.tokeno-card:nth-child(6) { transform: rotate(0.5deg); }
.tokeno-card:hover { transform: rotate(0) translate(-3px, -3px); box-shadow: 13px 13px 0 var(--c-ink); }

.tokeno-card.big {
  grid-row: span 2;
  background: var(--c-yellow);
}
.tokeno-num {
  font-family: 'Permanent Marker', cursive;
  font-size: 56px;
  color: var(--c-ink);
  line-height: 1;
  margin-bottom: 8px;
}
.tokeno-card.big .tokeno-num { font-size: 120px; }
.tokeno-card:nth-child(4) .tokeno-num { color: var(--c-yellow); }
.tokeno-label {
  font-family: 'Permanent Marker', cursive;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ---------- Buy ---------- */
.buy {
  padding: 80px 40px 120px;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.buy-card {
  max-width: 800px;
  width: 100%;
  background: var(--c-purple);
  color: var(--c-cream);
  border: var(--stroke-thick);
  padding: 50px;
  text-align: center;
  box-shadow: 16px 16px 0 var(--c-ink);
  transform: rotate(0.8deg);
  position: relative;
}
.buy-card::before {
  content: 'LIVE ●';
  position: absolute;
  top: -28px; right: -24px;
  background: var(--c-coral);
  border: var(--stroke);
  font-family: 'Permanent Marker', cursive;
  font-size: 22px;
  padding: 10px 18px;
  color: var(--c-ink);
  transform: rotate(12deg);
  box-shadow: var(--sh-2);
  animation: livePulse 1.6s ease-in-out infinite;
}
@keyframes livePulse {
  0%, 100% { transform: rotate(12deg) scale(1); }
  50% { transform: rotate(12deg) scale(1.08); }
}
.buy-card h2 {
  font-family: 'Permanent Marker', cursive;
  font-size: clamp(34px, 4.5vw, 56px);
  line-height: 1;
  margin-bottom: 18px;
  color: var(--c-cream);
  text-shadow: 3px 3px 0 var(--c-ink);
}
.buy-card h2 .hl {
  background: var(--c-yellow);
  padding: 0 12px;
  border: var(--stroke);
  color: var(--c-ink);
  display: inline-block;
  transform: rotate(-2deg);
  text-shadow: none;
  box-shadow: var(--sh-1);
}
.buy-card > p {
  font-family: 'Caveat', cursive;
  font-size: 24px;
  margin-bottom: 18px;
}

.ca {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--c-ink);
  border: var(--stroke);
  padding: 14px 16px;
  margin: 0 auto 28px;
  max-width: 640px;
  box-shadow: var(--sh-2);
}
.ca code {
  flex: 1;
  font-family: 'Space Mono', monospace;
  font-size: 14px;
  color: var(--c-yellow);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: left;
}

.buy-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Footer ---------- */
.foot {
  padding: 30px 40px;
  background: var(--c-ink);
  color: var(--c-cream);
  border-top: var(--stroke-thick);
  position: relative;
  z-index: 2;
}
.foot-row {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.foot-row .logo { color: var(--c-cream); }
.foot-row .logo-mark { background: var(--c-yellow); color: var(--c-ink); }
.foot-row p {
  font-family: 'Caveat', cursive;
  font-size: 22px;
}
.foot-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-family: 'Permanent Marker', cursive;
  font-size: 16px;
}
.foot-x {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--c-yellow);
  color: var(--c-ink);
  border: 2px solid var(--c-cream);
  padding: 6px 12px;
  box-shadow: 3px 3px 0 var(--c-cream);
  transition: transform 0.15s;
}
.foot-x:hover { transform: translate(-2px, -2px); color: var(--c-ink); }
.foot-fine {
  text-align: center;
  font-family: 'Caveat', cursive;
  font-size: 18px;
  opacity: 0.75;
  max-width: 800px;
  margin: 0 auto;
}

/* ---------- Toast ---------- */
.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(40px) rotate(-2deg);
  background: var(--c-yellow);
  color: var(--c-ink);
  font-family: 'Permanent Marker', cursive;
  font-size: 18px;
  padding: 14px 24px;
  border: var(--stroke);
  box-shadow: var(--sh-2);
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
  z-index: 100;
  pointer-events: none;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0) rotate(-2deg);
}

/* Inhale shake */
@keyframes inhale-shake {
  0%, 100% { transform: rotate(-2deg) scale(1); }
  20% { transform: rotate(-3deg) scale(1.04); }
  40% { transform: rotate(-1deg) scale(1.06); }
  60% { transform: rotate(-3deg) scale(1.04); }
  80% { transform: rotate(-1.5deg) scale(1.02); }
}
.inhaling .art-frame {
  animation: inhale-shake 0.6s ease-in-out;
}
.inhaling .halo {
  background: radial-gradient(circle, rgba(255, 210, 74, 0.95) 0%, rgba(255, 133, 81, 0.5) 40%, transparent 70%);
  transition: background 0.3s;
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-art { min-height: 460px; }
  .nav-links { display: none; }
  .nav { padding: 12px 16px; margin: 12px 14px 0; }
  .hero { padding: 30px 20px 60px; }
  .charity-card, .buy-card { padding: 36px 22px; }
  .charity-stamp { width: 110px; height: 110px; top: -24px; right: -10px; }
  .charity-stamp .num { font-size: 32px; }
  .charity-pillars { grid-template-columns: 1fr; }
  .tokeno-grid { grid-template-columns: 1fr 1fr; }
  .tokeno-card.big { grid-column: span 2; grid-row: auto; }
  .tokeno-card.big .tokeno-num { font-size: 80px; }
  .flow-arrow { transform: rotate(90deg); }
  .tank-section, .charity, .how, .tokenomics, .buy, .trademark, .origin { padding-left: 20px; padding-right: 20px; }
  .origin-wrap { grid-template-columns: 1fr; gap: 40px; }
  .ot-year { flex: 0 0 70px; font-size: 16px; }
  .trademark-card { padding: 40px 24px; }
  .tm-docs { grid-template-columns: 1fr; }
  .tm-why { grid-template-columns: 1fr; }
  .cert-grid { grid-template-columns: 1fr; }
  .cert-inner { padding: 26px 22px; }
  .cert-mark { font-size: 48px; }
  .timeline { flex-direction: column; gap: 14px; }
  .tl-line { width: 4px; height: 30px; flex: 0 0 30px; }
  .tl-line::after { right: 50%; top: auto; bottom: -4px; transform: translateX(50%) rotate(135deg); }
  .hero-stamp { width: 90px; height: 90px; left: -10px; top: -20px; }
  .hs-r { font-size: 38px; }
  .hs-text { font-size: 13px; }
  .hero-copy h1 { font-size: clamp(48px, 12vw, 80px); }
}
