/* ============================================================
   CASHDOGE — The Original Name of Robinhood
   Paper-file / press-clipping collage theme
   ============================================================ */

:root {
  --paper: #efece3;
  --paper-2: #f6f4ec;
  --paper-dark: #e4e0d2;
  --ink: #17150f;
  --ink-soft: #3c3a30;
  --ink-faint: #777464;
  --hi: #e6f230;          /* highlighter chartreuse from banner */
  --hi-soft: rgba(230, 242, 48, .55);
  --tape: rgba(223, 233, 60, .78);
  --red-stamp: #b3402a;
  --shadow: 0 18px 50px -18px rgba(23, 21, 15, .35);
  --serif: "Playfair Display", Georgia, serif;
  --mono: "Courier Prime", "Courier New", monospace;
  --hand: "Caveat", cursive;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* paper fiber background */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(1100px 600px at 12% -5%, rgba(230, 242, 48, .16), transparent 60%),
    radial-gradient(900px 700px at 105% 30%, rgba(23, 21, 15, .07), transparent 55%),
    radial-gradient(1000px 800px at 50% 115%, rgba(230, 242, 48, .12), transparent 60%),
    repeating-linear-gradient(0deg, transparent 0 26px, rgba(23, 21, 15, .022) 26px 27px),
    repeating-linear-gradient(90deg, transparent 0 26px, rgba(23, 21, 15, .022) 26px 27px),
    var(--paper);
}

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

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

/* ---------- grain overlay ---------- */
.grain {
  position: fixed;
  inset: -50%;
  z-index: 60;
  pointer-events: none;
  opacity: .5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
  animation: grainShift 1.1s steps(4) infinite;
}
@keyframes grainShift {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-1.5%, 1%); }
  50% { transform: translate(1%, -1.5%); }
  75% { transform: translate(-1%, -1%); }
  100% { transform: translate(1.5%, 1%); }
}

/* ---------- dust canvas ---------- */
#dust {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* ---------- cursor ink blot ---------- */
.cursor-ink {
  position: fixed;
  width: 34px;
  height: 34px;
  border: 1.5px solid rgba(23, 21, 15, .5);
  border-radius: 50%;
  z-index: 70;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: width .25s, height .25s, background .25s, border-color .25s;
  mix-blend-mode: multiply;
}
.cursor-ink.is-hover {
  width: 56px;
  height: 56px;
  background: var(--hi-soft);
  border-color: transparent;
}
@media (hover: none) { .cursor-ink { display: none; } }

/* ---------- shared bits ---------- */
.icon {
  display: inline-block;
  width: 1.15em;
  height: 1.15em;
  background-color: currentColor;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  vertical-align: -.2em;
}
.icon-uniswap { -webkit-mask-image: url("../assets/icons/uniswap.svg"); mask-image: url("../assets/icons/uniswap.svg"); }
.icon-dexscreener { -webkit-mask-image: url("../assets/icons/dexscreener.svg"); mask-image: url("../assets/icons/dexscreener.svg"); }
.icon-x { -webkit-mask-image: url("../assets/icons/x.svg"); mask-image: url("../assets/icons/x.svg"); }

.hl {
  background: linear-gradient(105deg, transparent 2%, var(--hi-soft) 8%, var(--hi-soft) 92%, transparent 98%);
  padding: 0 .18em;
  font-weight: 700;
}
.hl-ink {
  position: relative;
  white-space: nowrap;
}
.hl-ink::after {
  content: "";
  position: absolute;
  left: -2%;
  bottom: .04em;
  width: 104%;
  height: .34em;
  background: var(--hi);
  z-index: -1;
  transform: skewX(-8deg) rotate(-1deg);
}
.caveat { font-family: var(--hand); font-size: 1.45em; color: var(--ink-soft); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55em;
  font-family: var(--mono);
  font-weight: 700;
  letter-spacing: .04em;
  border: 2px solid var(--ink);
  padding: .7em 1.35em;
  position: relative;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  box-shadow: 4px 4px 0 rgba(23, 21, 15, .9);
  cursor: pointer;
  background: var(--paper-2);
  color: var(--ink);
  text-transform: uppercase;
}
.btn:hover { transform: translate(-2px, -2px); box-shadow: 7px 7px 0 rgba(23, 21, 15, .9); }
.btn:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 rgba(23, 21, 15, .9); }
.btn-ink { background: var(--ink); color: var(--hi); }
.btn-ink:hover { background: #24211a; }
.btn-paper:hover { background: var(--hi); }
.btn-sm { font-size: .8rem; padding: .55em 1em; }
.btn-lg { font-size: .95rem; padding: .85em 1.6em; }
.btn-square { padding: .85em 1em; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(239, 236, 227, .85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: box-shadow .3s;
}
.nav.is-scrolled { box-shadow: 0 6px 30px -12px rgba(23, 21, 15, .35); }
.nav-edge {
  height: 7px;
  background:
    linear-gradient(135deg, var(--ink) 25%, transparent 25%) 0 0 / 14px 7px repeat-x,
    linear-gradient(45deg, transparent 75%, var(--ink) 75%) 0 0 / 14px 7px repeat-x;
  opacity: .85;
}
.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: .8rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-brand { display: flex; align-items: center; gap: .7rem; }
.nav-logo-wrap {
  width: 46px;
  height: 46px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
  box-shadow: 3px 3px 0 rgba(23, 21, 15, .85);
  transition: transform .3s;
}
.nav-brand:hover .nav-logo-wrap { transform: rotate(-8deg) scale(1.06); }
.nav-logo-wrap img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.2); }
.nav-name {
  font-family: var(--serif);
  font-weight: 900;
  font-size: 1.35rem;
  letter-spacing: .02em;
}
.nav-name span { background: var(--hi); padding: 0 .1em; }
.nav-links { display: flex; gap: 1.6rem; margin-left: auto; }
.nav-links a {
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .09em;
  position: relative;
  padding: .3em 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: var(--hi);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s;
}
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { flex-shrink: 0; }
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-burger span { width: 26px; height: 3px; background: var(--ink); transition: transform .3s, opacity .3s; }
.nav-burger.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; }
.nav-burger.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  padding: 8.5rem 1.4rem 4rem;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-ring {
  position: absolute;
  border: 2px dashed rgba(23, 21, 15, .14);
  border-radius: 50%;
}
.hero-ring-1 {
  width: 620px; height: 620px;
  top: -180px; right: -160px;
  animation: spinSlow 60s linear infinite;
}
.hero-ring-2 {
  width: 380px; height: 380px;
  bottom: -120px; left: -100px;
  border-color: rgba(230, 242, 48, .8);
  animation: spinSlow 45s linear infinite reverse;
}
@keyframes spinSlow { to { transform: rotate(360deg); } }

.hero-scrap {
  position: absolute;
  background: var(--paper-2);
  border: 1px solid rgba(23, 21, 15, .12);
  box-shadow: 0 10px 24px -12px rgba(23, 21, 15, .3);
  opacity: .55;
}
.hero-scrap-1 { width: 130px; height: 88px; top: 16%; left: 4%; transform: rotate(-9deg); animation: floaty 7s ease-in-out infinite; }
.hero-scrap-2 { width: 90px; height: 120px; bottom: 18%; right: 6%; transform: rotate(12deg); animation: floaty 9s ease-in-out infinite 1s; }
.hero-scrap-3 { width: 70px; height: 70px; top: 58%; left: 12%; transform: rotate(4deg); animation: floaty 8s ease-in-out infinite 2s; }
@keyframes floaty {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -18px; }
}
.hero-word {
  position: absolute;
  font-family: var(--mono);
  font-weight: 700;
  letter-spacing: .35em;
  color: rgba(179, 64, 42, .35);
  border: 2px solid rgba(179, 64, 42, .3);
  padding: .35em .8em;
  text-transform: uppercase;
  font-size: .8rem;
}
.hero-word-1 { top: 22%; right: 10%; transform: rotate(8deg); }
.hero-word-2 { bottom: 24%; left: 5%; transform: rotate(-6deg); }

.hero-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-kicker { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.6rem; flex-wrap: wrap; }
.tape-chip {
  background: var(--tape);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .18em;
  padding: .45em 1.1em;
  transform: rotate(-2deg);
  box-shadow: 0 4px 10px -4px rgba(23, 21, 15, .4);
  clip-path: polygon(3% 0, 97% 4%, 100% 88%, 2% 100%, 0 14%);
}
.kicker-mono { font-size: .8rem; letter-spacing: .2em; color: var(--ink-faint); }

.hero-title {
  font-family: var(--serif);
  font-weight: 900;
  font-size: clamp(2.6rem, 5.4vw, 4.6rem);
  line-height: 1.04;
  text-transform: uppercase;
}
.hero-title .line { display: block; }
.strike-wrap s {
  text-decoration-color: var(--red-stamp);
  text-decoration-thickness: .09em;
  color: var(--ink-faint);
}
.hero-title-main { margin-top: .08em; }
.circled { position: relative; display: inline-block; padding: 0 .12em; }
.circled .scribble {
  position: absolute;
  inset: -18% -6%;
  width: 112%;
  height: 136%;
  overflow: visible;
  pointer-events: none;
}
.circled .scribble path {
  stroke: var(--red-stamp);
  stroke-width: 4.5;
  stroke-linecap: round;
  stroke-dasharray: 1100;
  stroke-dashoffset: 1100;
  animation: drawScribble 1.4s ease-out 1.1s forwards;
}
@keyframes drawScribble { to { stroke-dashoffset: 0; } }

.hero-sub {
  margin-top: 1.6rem;
  max-width: 34rem;
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.hero-ticket {
  display: inline-flex;
  margin-top: 1.8rem;
  border: 2px solid var(--ink);
  background: var(--paper-2);
  box-shadow: var(--shadow);
}
.ticket-cell {
  padding: .7rem 1.3rem;
  display: flex;
  flex-direction: column;
  gap: .1rem;
  border-right: 2px dashed rgba(23, 21, 15, .35);
}
.ticket-cell:last-child { border-right: none; }
.ticket-k { font-size: .66rem; letter-spacing: .22em; color: var(--ink-faint); }
.ticket-v { font-family: var(--serif); font-weight: 800; font-size: 1.05rem; }

.ca-chip {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  margin-top: 1.1rem;
  padding: .55rem .9rem;
  border: 2px dashed var(--ink);
  background: var(--paper-2);
  font-family: var(--mono);
  cursor: pointer;
  transition: background .2s, transform .2s, box-shadow .2s;
}
.ca-chip:hover {
  background: var(--hi);
  transform: translate(-1px, -1px);
  box-shadow: 3px 3px 0 var(--ink);
}
.ca-k {
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .22em;
  background: var(--ink);
  color: var(--hi);
  padding: .2em .55em;
}
.ca-v { font-size: .88rem; font-weight: 700; letter-spacing: .02em; }
.ca-copy {
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .18em;
  color: var(--ink-faint);
  border-left: 1px solid rgba(23, 21, 15, .25);
  padding-left: .7rem;
}
.ca-chip.is-copied .ca-copy { color: var(--red-stamp); }
.inline-ca {
  font-family: var(--mono);
  font-size: .92em;
  background: var(--hi-soft);
  padding: .05em .35em;
  border: 1px solid rgba(23, 21, 15, .2);
}

.hero-actions { display: flex; gap: .9rem; margin-top: 2rem; flex-wrap: wrap; }
.hero-note { margin-top: 1.7rem; }

/* hero visual */
.hero-visual { display: flex; justify-content: center; }
.wolf-frame {
  position: relative;
  transform-style: preserve-3d;
  will-change: transform;
}
.wolf-card {
  background: #fff;
  border: 1px solid rgba(23, 21, 15, .15);
  padding: 1.1rem 1.1rem 1.4rem;
  box-shadow: var(--shadow);
  transform: rotate(2.2deg);
  transition: transform .5s ease;
  max-width: 420px;
}
.wolf-frame:hover .wolf-card { transform: rotate(.4deg) scale(1.015); }
.wolf-img {
  width: 100%;
  filter: contrast(1.03) saturate(1.02);
  animation: wolfBreathe 6s ease-in-out infinite;
}
@keyframes wolfBreathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.018); }
}
.wolf-caption {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: .9rem;
  padding-top: .8rem;
  border-top: 1px dashed rgba(23, 21, 15, .3);
}
.caption-mono { font-size: .7rem; letter-spacing: .25em; color: var(--red-stamp); font-weight: 700; }
.caption-serif { font-family: var(--serif); font-style: italic; font-size: .95rem; color: var(--ink-soft); }

.frame-tape {
  position: absolute;
  width: 120px;
  height: 34px;
  background: var(--tape);
  z-index: 2;
  box-shadow: 0 4px 8px -3px rgba(23, 21, 15, .35);
  clip-path: polygon(2% 10%, 98% 0, 100% 90%, 0 100%);
}
.frame-tape-tl { top: -14px; left: -34px; transform: rotate(-38deg); }
.frame-tape-br { bottom: -12px; right: -36px; transform: rotate(-42deg); }

.stamp-badge {
  position: absolute;
  bottom: -34px;
  left: -40px;
  width: 128px;
  height: 128px;
  display: grid;
  place-items: center;
  animation: spinSlow 24s linear infinite;
  z-index: 3;
}
.stamp-badge svg { position: absolute; inset: 0; }
.stamp-badge text {
  font-family: var(--mono);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .18em;
  fill: var(--red-stamp);
}
.stamp-core {
  font-family: var(--serif);
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--red-stamp);
  border: 3px double var(--red-stamp);
  border-radius: 50%;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  background: rgba(246, 244, 236, .9);
  transform: rotate(-12deg);
}

.hero-scrollhint {
  position: absolute;
  bottom: 1.6rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: .68rem;
  letter-spacing: .3em;
  color: var(--ink-faint);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
}
.hero-scrollhint span {
  width: 1px;
  height: 34px;
  background: var(--ink-faint);
  animation: scrollPulse 1.8s ease-in-out infinite;
}
@keyframes scrollPulse {
  0% { transform: scaleY(0); transform-origin: top; }
  45% { transform: scaleY(1); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  background: var(--ink);
  color: var(--hi);
  overflow: hidden;
  padding: .85rem 0;
  transform: rotate(-1.1deg) scale(1.02);
  box-shadow: 0 10px 30px -14px rgba(23, 21, 15, .6);
  position: relative;
  z-index: 2;
}
.marquee-flip { transform: rotate(1.1deg) scale(1.02); }
.marquee-track {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  white-space: nowrap;
  width: max-content;
  animation: marquee 26s linear infinite;
  font-family: var(--serif);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: .12em;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track i {
  width: 9px;
  height: 9px;
  background: var(--hi);
  border-radius: 50%;
  flex-shrink: 0;
}
@keyframes marquee { to { transform: translateX(-33.333%); } }

/* ============================================================
   SECTIONS (shared)
   ============================================================ */
.section { padding: 7rem 1.4rem; position: relative; z-index: 1; }
.section-inner { max-width: 1240px; margin: 0 auto; }
.section-head { margin-bottom: 3.4rem; }
.section-kicker {
  display: inline-block;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .3em;
  color: var(--ink-faint);
  border-bottom: 2px solid var(--hi);
  padding-bottom: .4em;
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--serif);
  font-weight: 900;
  font-size: clamp(2.1rem, 4vw, 3.3rem);
  text-transform: uppercase;
  line-height: 1.08;
}

/* reveal-on-scroll */
.reveal {
  opacity: 0;
  transform: translateY(34px) rotate(var(--rot, 0deg));
  transition: opacity .8s ease var(--d, 0s), transform .8s cubic-bezier(.2, .7, .3, 1) var(--d, 0s);
}
.reveal.is-visible { opacity: 1; transform: translateY(0) rotate(var(--rot, 0deg)); }

/* load animations (hero only) */
.load-fade { opacity: 0; animation: loadFade .9s ease var(--d, 0s) forwards; }
.load-rise { opacity: 0; animation: loadRise .9s cubic-bezier(.2, .7, .3, 1) var(--d, 0s) forwards; }
@keyframes loadFade { to { opacity: 1; } }
@keyframes loadRise {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.clip-card {
  background: var(--paper-2);
  border: 1px solid rgba(23, 21, 15, .14);
  padding: 2.4rem 1.8rem 2rem;
  position: relative;
  box-shadow: var(--shadow);
  clip-path: polygon(0 2%, 4% 0, 96% 1%, 100% 4%, 99% 97%, 95% 100%, 3% 99%, 0 95%);
  transition: transform .35s ease, box-shadow .35s ease;
}
.clip-card:hover {
  transform: translateY(-8px) rotate(0deg) !important;
  box-shadow: 0 28px 60px -20px rgba(23, 21, 15, .45);
}
.clip-tape {
  position: absolute;
  top: -13px;
  left: 26px;
  width: 96px;
  height: 28px;
  background: var(--tape);
  transform: rotate(-4deg);
  clip-path: polygon(2% 10%, 98% 0, 100% 90%, 0 100%);
  box-shadow: 0 3px 7px -3px rgba(23, 21, 15, .3);
}
.clip-tape-right { left: auto; right: 26px; transform: rotate(5deg); }
.clip-paperclip {
  position: absolute;
  top: -20px;
  right: 34px;
  width: 18px;
  height: 44px;
  border: 3px solid var(--ink-faint);
  border-radius: 9px;
  border-bottom: none;
}
.clip-no {
  font-size: .66rem;
  letter-spacing: .28em;
  color: var(--red-stamp);
  font-weight: 700;
  display: block;
  margin-bottom: .9rem;
}
.clip-card h3 {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: .8rem;
  line-height: 1.2;
}
.clip-card p { color: var(--ink-soft); font-size: .95rem; }

.about-quote {
  margin-top: 4rem;
  text-align: center;
  max-width: 46rem;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  padding-top: 2.4rem;
}
.quote-mark {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--serif);
  font-size: 5rem;
  line-height: .6;
  color: var(--hi);
  -webkit-text-stroke: 2px var(--ink);
}
.about-quote p {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
  line-height: 1.4;
}
.quote-src {
  display: block;
  margin-top: 1rem;
  font-size: .8rem;
  letter-spacing: .12em;
  color: var(--ink-faint);
}

/* ============================================================
   HOW TO BUY
   ============================================================ */
.howtobuy {
  background:
    radial-gradient(800px 500px at 85% 15%, rgba(230, 242, 48, .18), transparent 60%),
    var(--paper-dark);
  clip-path: polygon(0 1.6%, 100% 0, 100% 98.4%, 0 100%);
  padding-top: 8.5rem;
  padding-bottom: 8.5rem;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.8rem;
}
.step-card {
  background: var(--paper-2);
  border: 2px solid var(--ink);
  padding: 2.6rem 1.5rem 1.6rem;
  position: relative;
  box-shadow: 6px 6px 0 rgba(23, 21, 15, .85);
  transition: transform .3s ease, box-shadow .3s ease;
}
.step-card:hover {
  transform: translate(-4px, -6px) rotate(0deg) !important;
  box-shadow: 12px 14px 0 rgba(23, 21, 15, .85);
}
.step-tape {
  position: absolute;
  top: -12px;
  right: 20px;
  width: 74px;
  height: 24px;
  background: var(--tape);
  transform: rotate(6deg);
  clip-path: polygon(2% 10%, 98% 0, 100% 90%, 0 100%);
}
.step-num {
  position: absolute;
  top: -24px;
  left: -16px;
  font-family: var(--serif);
  font-weight: 900;
  font-size: 3.4rem;
  color: var(--ink);
  background: var(--hi);
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  box-shadow: 3px 3px 0 rgba(23, 21, 15, .85);
  transform: rotate(-8deg);
  transition: transform .3s;
}
.step-card:hover .step-num { transform: rotate(6deg) scale(1.08); }
.step-card h3 {
  font-family: var(--serif);
  font-weight: 800;
  font-size: 1.3rem;
  margin-bottom: .7rem;
}
.step-card p { font-size: .88rem; color: var(--ink-soft); }
.step-foot {
  display: block;
  margin-top: 1.2rem;
  padding-top: .8rem;
  border-top: 1px dashed rgba(23, 21, 15, .3);
  font-size: .64rem;
  letter-spacing: .26em;
  color: var(--red-stamp);
  font-weight: 700;
}

.howtobuy-cta {
  margin-top: 3.6rem;
  display: flex;
  align-items: center;
  gap: 1.6rem;
  flex-wrap: wrap;
}
.cta-scrawl { transform: rotate(-2deg); }

/* ============================================================
   CHART
   ============================================================ */
.chart-frame {
  border: 2px solid var(--ink);
  background: var(--ink);
  box-shadow: 10px 10px 0 rgba(23, 21, 15, .25), var(--shadow);
}
.chart-bar {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .8rem 1.2rem;
  background: var(--paper-2);
  border-bottom: 2px solid var(--ink);
}
.chart-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 2px solid var(--ink);
  background: var(--paper);
}
.chart-dot:nth-child(2) { background: var(--hi); }
.chart-dot:nth-child(3) { background: var(--red-stamp); }
.chart-label {
  margin-left: .8rem;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .18em;
}
.chart-open {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: .5em;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .35em .8em;
  border: 2px solid var(--ink);
  background: var(--hi);
  transition: transform .2s, box-shadow .2s;
  box-shadow: 2px 2px 0 var(--ink);
}
.chart-open:hover { transform: translate(-1px, -1px); box-shadow: 4px 4px 0 var(--ink); }
.chart-embed { position: relative; padding-bottom: 58%; }
.chart-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
@media (max-width: 640px) { .chart-embed { padding-bottom: 130%; } }

/* ============================================================
   JOIN US
   ============================================================ */
.joinus {
  background:
    radial-gradient(900px 600px at 15% 90%, rgba(230, 242, 48, .16), transparent 60%),
    transparent;
}
.join-banner {
  position: relative;
  margin-bottom: 3.4rem;
  border: 1px solid rgba(23, 21, 15, .18);
  background: #fff;
  padding: .8rem;
  box-shadow: var(--shadow);
  transform: rotate(-.6deg);
  transition: transform .5s ease;
}
.join-banner:hover { transform: rotate(0deg) scale(1.005); }
.join-banner img { width: 100%; }
.banner-tape {
  position: absolute;
  width: 140px;
  height: 36px;
  background: var(--tape);
  z-index: 2;
  clip-path: polygon(2% 10%, 98% 0, 100% 90%, 0 100%);
  box-shadow: 0 4px 9px -4px rgba(23, 21, 15, .4);
}
.banner-tape-l { top: -16px; left: 6%; transform: rotate(-7deg); }
.banner-tape-r { bottom: -14px; right: 7%; transform: rotate(5deg); }

.join-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}
.join-card {
  background: var(--paper-2);
  border: 2px solid var(--ink);
  box-shadow: 6px 6px 0 rgba(23, 21, 15, .85);
  padding: 2rem 1.7rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 1.1rem;
  transition: transform .3s ease, box-shadow .3s ease, background .3s ease;
  position: relative;
  overflow: hidden;
}
.join-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--hi);
  transform: translateY(101%);
  transition: transform .35s cubic-bezier(.2, .7, .3, 1);
  z-index: 0;
}
.join-card:hover::before { transform: translateY(0); }
.join-card > * { position: relative; z-index: 1; }
.join-card:hover {
  transform: translate(-4px, -6px) rotate(0deg) !important;
  box-shadow: 12px 14px 0 rgba(23, 21, 15, .85);
}
.join-icon { grid-row: 1 / 3; width: 2.4em; height: 2.4em; }
.join-name { font-family: var(--serif); font-weight: 800; font-size: 1.25rem; }
.join-handle { grid-column: 2; font-size: .8rem; color: var(--ink-faint); letter-spacing: .06em; }
.join-arrow {
  grid-row: 1 / 3;
  font-size: 1.6rem;
  font-weight: 700;
  transition: transform .3s;
}
.join-card:hover .join-arrow { transform: translateX(6px); }

.join-line {
  text-align: center;
  margin-top: 3rem;
  font-size: 1.7rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--ink);
  color: var(--paper);
  padding: 3.6rem 1.4rem 2.4rem;
  position: relative;
}
.footer::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 0;
  right: 0;
  height: 7px;
  background:
    linear-gradient(135deg, var(--ink) 25%, transparent 25%) 0 0 / 14px 7px repeat-x,
    linear-gradient(45deg, transparent 75%, var(--ink) 75%) 0 0 / 14px 7px repeat-x;
  transform: rotate(180deg);
}
.footer-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
}
.footer-brand { display: flex; align-items: center; gap: .8rem; }
.footer-brand img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--hi);
  background: #fff;
  object-fit: cover;
}
.footer-brand span {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: .03em;
}
.footer-brand b { color: var(--hi); }
.footer-social { display: flex; gap: 1rem; }
.footer-social a {
  width: 46px;
  height: 46px;
  border: 2px solid rgba(239, 236, 227, .4);
  display: grid;
  place-items: center;
  transition: background .25s, border-color .25s, transform .25s, color .25s;
}
.footer-social a:hover {
  background: var(--hi);
  border-color: var(--hi);
  color: var(--ink);
  transform: translateY(-4px) rotate(-4deg);
}
.footer-social .icon { width: 1.3em; height: 1.3em; }
.footer-legal { font-size: .78rem; color: rgba(239, 236, 227, .55); max-width: 40rem; }
.footer-copy { font-size: .72rem; letter-spacing: .18em; color: rgba(239, 236, 227, .4); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1020px) {
  .hero-inner { grid-template-columns: 1fr; gap: 4rem; }
  .hero-visual { order: -1; }
  .wolf-card { max-width: 330px; }
  .about-grid { grid-template-columns: 1fr; max-width: 34rem; margin: 0 auto; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .join-grid { grid-template-columns: 1fr; max-width: 30rem; margin: 0 auto; }
}

@media (max-width: 820px) {
  .nav-links {
    position: fixed;
    top: 70px;
    right: 0;
    flex-direction: column;
    background: var(--paper-2);
    border: 2px solid var(--ink);
    border-right: none;
    padding: 1.6rem 2.4rem;
    gap: 1.2rem;
    transform: translateX(110%);
    transition: transform .35s cubic-bezier(.2, .7, .3, 1);
    box-shadow: var(--shadow);
  }
  .nav-links.is-open { transform: translateX(0); }
  .nav-burger { display: flex; margin-left: auto; }
  .nav-cta { display: none; }
  .nav-links { margin-left: 0; }
}

@media (max-width: 620px) {
  .steps-grid { grid-template-columns: 1fr; max-width: 26rem; margin: 0 auto; }
  .hero { padding-top: 7.5rem; }
  .hero-ticket { flex-direction: column; }
  .ticket-cell { border-right: none; border-bottom: 2px dashed rgba(23, 21, 15, .35); }
  .ticket-cell:last-child { border-bottom: none; }
  .hero-word { display: none; }
  .stamp-badge { left: auto; right: -20px; bottom: -30px; }
  .section { padding: 5rem 1.2rem; }
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  html { scroll-behavior: auto; }
}
