/* =====================================================================
   Moet the Blind Cat — $MOET on Solana
   Design tokens → base → components → sections → responsive
   ===================================================================== */

/* ------------------------------ TOKENS ------------------------------ */
:root {
  /* Moet pinks */
  --hot-pink: #ff2d8a;
  --hot-pink-deep: #e5107a;
  --blush: #ffd9e8;
  --blush-soft: #ffeaf3;
  --pearl: #fffafc;
  --raspberry: #9e1150;
  --raspberry-ink: #6b0c37;
  --cream: #fff5ea;

  /* Champagne gold — decorative only */
  --gold: #d9b061;
  --gold-light: #f2dda6;
  --gold-deep: #a97f34;

  /* Solana */
  --sol-purple: #9945ff;
  --sol-cyan: #00d1ff;
  --sol-green: #14f195;
  --sol-black: #0d0b18;
  --sol-gradient: linear-gradient(100deg, var(--sol-purple) 0%, var(--sol-cyan) 52%, var(--sol-green) 100%);
  --sol-gradient-soft: linear-gradient(100deg, rgba(153, 69, 255, .16), rgba(0, 209, 255, .14) 52%, rgba(20, 241, 149, .16));

  /* Ink */
  --ink: #2c1526;
  --ink-soft: #5b3a4d;
  --ink-mute: #7a5568;

  /* Surfaces */
  --surface: #ffffff;
  --surface-tint: #fff4f9;

  /* Shape */
  --r-sm: 12px;
  --r-md: 20px;
  --r-lg: 30px;
  --r-xl: 42px;
  --pill: 999px;

  /* Shadows */
  --sh-soft: 0 10px 30px rgba(158, 17, 80, .10);
  --sh-card: 0 18px 44px rgba(158, 17, 80, .14);
  --sh-lift: 0 26px 60px rgba(158, 17, 80, .22);
  --sh-paper: 0 2px 3px rgba(107, 12, 55, .10), 0 14px 30px rgba(107, 12, 55, .16);

  /* Type */
  --font-display: "Baloo 2", "Segoe UI Variable Display", Georgia, "Iowan Old Style", "Palatino Linotype", serif;
  --font-ui: "Segoe UI Variable Text", "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;

  --header-h: 74px;
  --wrap: 1180px;

  /* Motion */
  --ease: cubic-bezier(.34, 1.2, .44, 1);
  --dur: .35s;
}

/* ------------------------------ RESET / BASE ------------------------------ */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 14px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-ui);
  font-size: clamp(16px, .55vw + 14.4px, 17.5px);
  line-height: 1.65;
  color: var(--ink);
  background: var(--pearl);
  overflow-x: hidden;
  /* soft pink + solana watermark wash */
  background-image:
    radial-gradient(60rem 40rem at 92% -6%, rgba(153, 69, 255, .07), transparent 60%),
    radial-gradient(50rem 34rem at -8% 12%, rgba(255, 45, 138, .10), transparent 62%),
    radial-gradient(46rem 30rem at 50% 108%, rgba(20, 241, 149, .07), transparent 60%);
  background-attachment: fixed;
}

img { max-width: 100%; height: auto; display: block; }
svg { display: block; }
a { color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.12;
  margin: 0 0 .5em;
  letter-spacing: -.015em;
  color: var(--raspberry-ink);
}

p { margin: 0 0 1em; }
ul, ol { margin: 0; padding: 0; list-style: none; }
dl, dd, dt { margin: 0; }
code { font-family: ui-monospace, "Cascadia Mono", "SFMono-Regular", Consolas, monospace; }

.wrap {
  width: min(100% - 2.4rem, var(--wrap));
  margin-inline: auto;
}

.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

.ico {
  width: 1.15em;
  height: 1.15em;
  flex: none;
  fill: currentColor;
}
.ico.flip { transform: scaleX(-1); }
.sol-ico { fill: none; width: 1.35em; height: 1.1em; }
.heart-inline { display: inline-block; vertical-align: -.14em; color: var(--hot-pink); }

/* Focus */
:focus-visible {
  outline: 3px solid var(--sol-purple);
  outline-offset: 3px;
  border-radius: 6px;
}

.skip-link {
  position: fixed;
  top: .6rem;
  left: 50%;
  transform: translate(-50%, -160%);
  z-index: 999;
  background: var(--raspberry);
  color: #fff;
  padding: .7rem 1.3rem;
  border-radius: var(--pill);
  font-weight: 700;
  text-decoration: none;
  transition: transform .2s ease;
}
.skip-link:focus-visible { transform: translate(-50%, 0); }

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

/* ------------------------------ REVEAL ------------------------------ */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ------------------------------ BUTTONS ------------------------------ */
.btn {
  --btn-bg: var(--hot-pink);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .85rem 1.6rem;
  border: 0;
  border-radius: var(--pill);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font: 700 1rem/1.1 var(--font-ui);
  letter-spacing: .01em;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  isolation: isolate;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) ease, filter var(--dur) ease;
  box-shadow: 0 10px 24px rgba(229, 16, 122, .28);
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 16px 32px rgba(229, 16, 122, .34); }
.btn:active { transform: translateY(-1px); }
.btn-sm { padding: .62rem 1.15rem; font-size: .92rem; }
.btn-lg { padding: 1.02rem 2rem; font-size: 1.08rem; }

/* Buy button: pink core + Solana gradient glow ring */
.btn-buy {
  background: linear-gradient(120deg, var(--hot-pink), var(--hot-pink-deep));
}
.btn-buy::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  background: var(--sol-gradient);
  z-index: -1;
  opacity: .85;
  filter: blur(6px);
  transition: opacity var(--dur) ease, filter var(--dur) ease;
}
.btn-buy:hover::before { opacity: 1; filter: blur(10px); }
.btn-buy .sol-ico { filter: drop-shadow(0 1px 2px rgba(0, 0, 0, .25)); }

.btn-ghost {
  --btn-bg: transparent;
  --btn-fg: var(--raspberry);
  border: 2px solid rgba(158, 17, 80, .28);
  background: rgba(255, 255, 255, .78);
  box-shadow: var(--sh-soft);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { border-color: var(--hot-pink); box-shadow: 0 14px 30px rgba(158, 17, 80, .18); }

.btn-soft {
  --btn-bg: var(--blush);
  --btn-fg: var(--raspberry-ink);
  box-shadow: 0 10px 24px rgba(255, 45, 138, .18);
}
.btn-dark { --btn-bg: #16121c; box-shadow: 0 10px 24px rgba(13, 11, 24, .3); }
.btn-tg { --btn-bg: linear-gradient(120deg, #2ea6df, #1b8fd0); box-shadow: 0 10px 24px rgba(27, 143, 208, .32); }

.icon-btn {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .8);
  border: 1.5px solid rgba(158, 17, 80, .16);
  color: var(--raspberry-ink);
  text-decoration: none;
  transition: transform var(--dur) var(--ease), background var(--dur), color var(--dur);
}
.icon-btn .ico { width: 18px; height: 18px; }
.icon-btn:hover { transform: translateY(-3px) rotate(-6deg); background: var(--hot-pink); color: #fff; border-color: transparent; }
.icon-btn.light { background: rgba(255, 255, 255, .1); border-color: rgba(255, 255, 255, .3); color: #fff; }
.icon-btn.light:hover { background: #fff; color: var(--raspberry); }

.round-btn {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1.5px solid rgba(158, 17, 80, .18);
  background: #fff;
  color: var(--raspberry);
  display: grid; place-items: center;
  cursor: pointer;
  box-shadow: var(--sh-soft);
  transition: transform var(--dur) var(--ease), background var(--dur), color var(--dur);
}
.round-btn .ico { width: 20px; height: 20px; }
.round-btn:hover { background: var(--hot-pink); color: #fff; transform: translateY(-2px); }

.carousel-controls { display: none; gap: .8rem; margin-top: 1.4rem; }
.carousel-controls.center { justify-content: center; }

/* ------------------------------ HEADER / NAV ------------------------------ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 250, 252, .82);
  backdrop-filter: blur(14px) saturate(1.3);
  border-bottom: 1px solid rgba(158, 17, 80, .10);
  transition: box-shadow .3s ease, background .3s ease;
}
.site-header::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: -1px;
  height: 2px;
  background: var(--sol-gradient);
  opacity: .55;
}
.site-header.is-stuck { box-shadow: 0 10px 30px rgba(158, 17, 80, .12); background: rgba(255, 250, 252, .95); }

.header-inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
}

.brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; }
.brand-logo {
  width: 46px; height: 46px;
  border-radius: 50%;
  overflow: hidden;
  flex: none;
  border: 2.5px solid #fff;
  box-shadow: 0 0 0 2.5px var(--hot-pink), 0 6px 16px rgba(158, 17, 80, .25);
  transition: transform var(--dur) var(--ease);
}
.brand-logo img { width: 100%; height: 100%; object-fit: cover; }
.brand:hover .brand-logo { transform: rotate(-6deg) scale(1.05); }
.brand-logo.lg { width: 74px; height: 74px; }

.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text strong {
  font-family: var(--font-display);
  font-size: 1.06rem;
  color: var(--raspberry-ink);
  letter-spacing: -.01em;
}
.brand-sub {
  display: inline-flex; align-items: center; gap: .35rem;
  font-size: .72rem; font-weight: 700; letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.primary-nav { display: flex; align-items: center; gap: 1.4rem; margin-left: auto; }
.nav-list { display: flex; align-items: center; gap: .25rem; }
.nav-list a {
  display: block;
  padding: .5rem .72rem;
  border-radius: var(--pill);
  font-weight: 600;
  font-size: .95rem;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color .25s, background .25s;
}
.nav-list a:hover { color: var(--raspberry); background: var(--blush-soft); }
.nav-list a.is-active { color: var(--raspberry); background: var(--blush); }
.nav-actions { display: flex; align-items: center; gap: .5rem; }

.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1.5px solid rgba(158, 17, 80, .18);
  background: #fff;
  color: var(--raspberry);
  cursor: pointer;
  place-items: center;
}
.nav-toggle .ico { width: 22px; height: 22px; }
.nav-toggle .ico-close { display: none; }
.nav-toggle[aria-expanded="true"] .ico-open { display: none; }
.nav-toggle[aria-expanded="true"] .ico-close { display: block; }

.nav-scrim {
  position: fixed;
  inset: 0;
  background: rgba(60, 10, 35, .35);
  backdrop-filter: blur(2px);
  z-index: 90;
}

/* ------------------------------ HERO ------------------------------ */
.hero {
  position: relative;
  padding: clamp(1.8rem, 4vw, 3.4rem) 0 clamp(3rem, 6vw, 5rem);
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.blob { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .55; }
.blob-a { width: 40vw; height: 40vw; left: -12vw; top: -8vw; background: radial-gradient(circle, rgba(255, 45, 138, .55), transparent 70%); }
.blob-b { width: 34vw; height: 34vw; right: -8vw; top: 6vw; background: radial-gradient(circle, rgba(153, 69, 255, .35), transparent 70%); }
.blob-c { width: 30vw; height: 30vw; right: 18vw; bottom: -12vw; background: radial-gradient(circle, rgba(20, 241, 149, .28), transparent 70%); }

.sol-watermark {
  position: absolute;
  right: -3vw; bottom: 8%;
  width: min(28vw, 320px);
  opacity: .07;
  transform: rotate(-12deg);
}
.sol-watermark svg { width: 100%; height: auto; aspect-ratio: 40 / 32; fill: none; }

.hero .wrap { position: relative; z-index: 1; }

.hero-art {
  position: relative;
  margin: 0 0 clamp(1.6rem, 3vw, 2.6rem);
  border-radius: clamp(18px, 2.4vw, 34px);
  overflow: visible;
  filter: drop-shadow(0 22px 44px rgba(158, 17, 80, .28));
}
.hero-art picture, .hero-art img {
  border-radius: inherit;
  width: 100%;
}
.hero-art img {
  border: 4px solid #fff;
  box-shadow: inset 0 0 0 2px rgba(217, 176, 97, .5);
}
.hero-art::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: inherit;
  background: var(--sol-gradient);
  opacity: .5;
  z-index: -1;
  filter: blur(10px);
}

.tape {
  position: absolute;
  width: 108px; height: 30px;
  background: linear-gradient(120deg, rgba(255, 255, 255, .75), rgba(255, 233, 245, .65));
  border-inline: 1px dashed rgba(158, 17, 80, .18);
  box-shadow: 0 3px 8px rgba(107, 12, 55, .12);
}
.tape-tl { top: -14px; left: 3%; transform: rotate(-8deg); }
.tape-br { bottom: -14px; right: 5%; transform: rotate(-6deg); }

.hero-copy { max-width: 860px; margin-inline: auto; text-align: center; }

.hero-badges { display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center; margin-bottom: 1.1rem; }
.badge {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .45rem 1rem;
  border-radius: var(--pill);
  font-size: .82rem; font-weight: 800;
  letter-spacing: .08em; text-transform: uppercase;
}
.badge-ticker {
  background: linear-gradient(120deg, var(--gold-light), var(--gold));
  color: #5a3d0d;
  box-shadow: 0 6px 18px rgba(217, 176, 97, .45), inset 0 1px 0 rgba(255, 255, 255, .7);
}
.badge-solana {
  background: var(--sol-black);
  color: #fff;
  position: relative;
}
.badge-solana::after {
  content: "";
  position: absolute; inset: -2px;
  border-radius: inherit;
  background: var(--sol-gradient);
  z-index: -1;
  opacity: .9;
}

.hero-title {
  font-size: clamp(2.6rem, 7.2vw, 5.2rem);
  margin-bottom: .12em;
  background: linear-gradient(160deg, #ff5aa8 0%, var(--hot-pink) 38%, var(--raspberry) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 2px 0 rgba(255, 255, 255, .5);
}
.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 2rem);
  color: var(--raspberry-ink);
  margin-bottom: .1em;
  font-weight: 700;
}
.hero-subtagline {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.2vw, 1.5rem);
  margin-bottom: .8em;
  background: var(--sol-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: saturate(1.15) brightness(.82);
  font-weight: 700;
}
.hero-lede {
  max-width: 62ch;
  margin-inline: auto;
  color: var(--ink-soft);
  font-size: 1.06rem;
}

.hero-cta {
  display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center;
  margin: 1.6rem 0 1.8rem;
}

/* Contract bar */
.ca-bar {
  display: flex;
  align-items: center;
  gap: .6rem;
  max-width: 640px;
  margin-inline: auto;
  padding: .5rem .5rem .5rem 1rem;
  background: #fff;
  border-radius: var(--pill);
  border: 1.5px solid rgba(158, 17, 80, .14);
  box-shadow: var(--sh-soft);
  position: relative;
  isolation: isolate;
}
.ca-bar::before {
  content: "";
  position: absolute; inset: -2px;
  border-radius: inherit;
  background: var(--sol-gradient);
  opacity: .45;
  z-index: -1;
}
.ca-label {
  display: inline-flex; align-items: center; gap: .35rem;
  font-size: .74rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-mute);
  flex: none;
}
.ca-value {
  flex: 1 1 auto;
  min-width: 0;
  font-size: .86rem;
  color: var(--raspberry-ink);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: center;
}
.btn-copy {
  display: inline-flex; align-items: center; gap: .4rem;
  flex: none;
  padding: .52rem 1rem;
  border: 0; border-radius: var(--pill);
  background: linear-gradient(120deg, var(--hot-pink), var(--hot-pink-deep));
  color: #fff;
  font: 700 .85rem/1 var(--font-ui);
  cursor: pointer;
  transition: transform var(--dur) var(--ease), background var(--dur);
}
.btn-copy:hover { transform: translateY(-2px); }
.btn-copy .ico { width: 16px; height: 16px; }
.btn-copy .ico-done { display: none; }
.btn-copy.is-copied { background: linear-gradient(120deg, var(--sol-purple), var(--sol-green)); }
.btn-copy.is-copied .ico-copy { display: none; }
.btn-copy.is-copied .ico-done { display: block; }

.ca-note {
  display: flex; align-items: center; justify-content: center; gap: .45rem;
  margin: .8rem 0 0;
  font-size: .84rem;
  color: var(--ink-mute);
}
.ca-note .ico { color: var(--sol-purple); }

/* floating stickers */
.floaties { position: absolute; inset: 0; pointer-events: none; z-index: 2; }
.floaty {
  position: absolute;
  display: grid; place-items: center;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .85);
  box-shadow: 0 10px 24px rgba(158, 17, 80, .18);
  color: var(--hot-pink);
  animation: float 7s ease-in-out infinite;
}
.floaty svg { width: 22px; height: 22px; fill: currentColor; }
.floaty-sol svg { fill: none; width: 26px; }
.f1 { left: 3%;  top: 16%; animation-delay: -.4s; }
.f2 { left: 8%;  top: 62%; width: 38px; height: 38px; animation-delay: -2.1s; color: var(--raspberry); }
.f3 { right: 5%; top: 12%; width: 40px; height: 40px; animation-delay: -3.4s; color: var(--gold-deep); }
.f4 { right: 3%; top: 52%; animation-delay: -1.2s; }
.f5 { left: 46%; bottom: 3%; width: 34px; height: 34px; animation-delay: -5s; }
.f6 { right: 24%; bottom: 7%; width: 36px; height: 36px; animation-delay: -3.9s; color: var(--hot-pink-deep); }

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

/* ------------------------------ CAPTION MARQUEE ------------------------------ */
.caption-bar {
  background: var(--sol-black);
  border-block: 2px solid rgba(255, 255, 255, .06);
  padding: .1rem 0;
  position: relative;
  overflow: hidden;
}
.caption-bar::before {
  content: "";
  position: absolute; inset: 0;
  background: var(--sol-gradient);
  opacity: .16;
}

.marquee { overflow: hidden; position: relative; }
.marquee-track { display: flex; width: max-content; animation: scroll-x 34s linear infinite; }
.marquee-group { display: flex; align-items: center; gap: 1.1rem; padding: .85rem 1.1rem 1.1rem; }
.marquee:hover .marquee-track,
.marquee:focus-within .marquee-track { animation-play-state: paused; }

@keyframes scroll-x {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.cap {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1rem, 2.1vw, 1.45rem);
  letter-spacing: .12em;
  white-space: nowrap;
  padding: .18rem .9rem;
  border-radius: var(--pill);
}
.cap-pink { background: linear-gradient(120deg, var(--hot-pink), #ff6bb0); color: #fff; }
.cap-sol { background: var(--sol-gradient); color: #10121f; }
.cap-gold { background: linear-gradient(120deg, var(--gold-light), var(--gold)); color: #4c3308; }
.cap-dot { color: #ffb7d8; display: grid; place-items: center; }
.cap-dot .ico { width: 20px; height: 20px; }
.cap-dot .sol-ico { width: 24px; }

/* ------------------------------ SECTION SHELL ------------------------------ */
.section { padding: clamp(3.4rem, 7vw, 6.5rem) 0; position: relative; }

.section-head { max-width: 760px; margin: 0 auto clamp(2rem, 4vw, 3.2rem); text-align: center; }
.section-head.tight { margin-bottom: 1.6rem; margin-top: clamp(2.5rem, 5vw, 4rem); }

.eyebrow {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .35rem .95rem;
  margin-bottom: .9rem;
  border-radius: var(--pill);
  background: var(--blush);
  color: var(--raspberry);
  font-size: .76rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
}
.section-title { font-size: clamp(1.85rem, 4.2vw, 3rem); }
.subsection-title { font-size: clamp(1.4rem, 3vw, 2rem); }
.section-lede { color: var(--ink-soft); font-size: 1.05rem; margin: 0; }
.section-lede.wide { max-width: 62ch; margin-inline: auto; }

/* ------------------------------ 3. OUR STORY ------------------------------ */
.section-story::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(40rem 26rem at 12% 30%, rgba(255, 217, 232, .55), transparent 65%),
    radial-gradient(34rem 24rem at 88% 70%, rgba(153, 69, 255, .08), transparent 65%);
  pointer-events: none;
}
.story-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.story-figure { margin: 0; }
.frame-stack { position: relative; padding: 1.1rem; }
.frame-layer {
  position: absolute; inset: 0;
  border-radius: var(--r-xl);
}
.frame-layer.l1 { background: var(--blush); transform: rotate(-5deg); box-shadow: var(--sh-soft); }
.frame-layer.l2 { background: linear-gradient(140deg, #fff, var(--blush-soft)); transform: rotate(3deg); box-shadow: var(--sh-soft); }
.frame-photo {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 8px solid #fff;
  box-shadow: var(--sh-card), inset 0 0 0 2px rgba(217, 176, 97, .35);
}
.frame-photo img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.story-figcaption {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  margin-top: 1.2rem;
  font-size: .9rem; font-weight: 700;
  color: var(--ink-mute);
}
.story-figcaption .ico { color: var(--hot-pink); }

.pull-quote {
  position: relative;
  margin: 1.6rem 0;
  padding: 1.4rem 1.5rem 1.4rem 3.2rem;
  background: linear-gradient(120deg, #fff, var(--blush-soft));
  border-radius: var(--r-md);
  border-left: 5px solid var(--hot-pink);
  box-shadow: var(--sh-soft);
}
.pull-quote p {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.08rem, 2vw, 1.4rem);
  color: var(--raspberry-ink);
  font-weight: 700;
  line-height: 1.4;
}
.quote-paw {
  position: absolute;
  left: 1.1rem; top: 1.5rem;
  width: 22px; height: 22px;
  color: var(--hot-pink);
  opacity: .55;
}

.sense-chips { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 1.4rem; }
.sense-chips li {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .45rem 1rem;
  border-radius: var(--pill);
  background: #fff;
  border: 1.5px solid rgba(158, 17, 80, .14);
  font-size: .88rem; font-weight: 700;
  color: var(--raspberry-ink);
  box-shadow: var(--sh-soft);
}
.sense-chips .ico { color: var(--hot-pink); }

/* ------------------------------ STICKERS ------------------------------ */
.sticker {
  position: absolute;
  display: grid;
  place-items: center;
  text-align: center;
  font: 800 .58rem/1.15 var(--font-ui);
  letter-spacing: .06em;
  text-transform: uppercase;
  z-index: 5;
  transition: transform .4s var(--ease);
}
.sticker.lg { position: static; }
.sticker:hover { animation: wobble .6s ease; }

@keyframes wobble {
  0%, 100% { transform: rotate(var(--rot, 0deg)); }
  25% { transform: rotate(calc(var(--rot, 0deg) - 7deg)) scale(1.06); }
  60% { transform: rotate(calc(var(--rot, 0deg) + 6deg)) scale(1.06); }
}

.corner-tr { top: -14px; right: -14px; }
.corner-tl { top: -14px; left: -14px; }
.corner-bl { bottom: -16px; left: -16px; }
.corner-br { bottom: -16px; right: -16px; }

/* circular seal */
.sticker-seal {
  --rot: -8deg;
  width: 86px; height: 86px;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, #fff9ee, var(--gold-light) 62%, var(--gold));
  color: #5a3d0d;
  border: 2px dashed rgba(90, 61, 13, .45);
  box-shadow: var(--sh-paper);
  transform: rotate(var(--rot));
}
.sticker-seal.alt {
  --rot: 7deg;
  background: radial-gradient(circle at 32% 28%, #fff, var(--blush) 60%, #ffb3d4);
  color: var(--raspberry-ink);
  border-color: rgba(158, 17, 80, .4);
}
.sticker-seal.lg { width: 104px; height: 104px; font-size: .64rem; }

/* heart sticker (CSS heart) */
.sticker-heart {
  --rot: 9deg;
  width: 92px; height: 84px;
  transform: rotate(var(--rot));
  filter: drop-shadow(0 8px 16px rgba(158, 17, 80, .3));
  color: #fff;
  background: none;
}
.sticker-heart::before,
.sticker-heart::after {
  content: "";
  position: absolute;
  top: 0;
  width: 46px; height: 74px;
  background: linear-gradient(150deg, #ff5aa8, var(--hot-pink) 55%, var(--hot-pink-deep));
  border-radius: 46px 46px 0 0;
}
.sticker-heart::before { left: 46px; transform: rotate(-45deg); transform-origin: 0 100%; }
.sticker-heart::after { left: 0; transform: rotate(45deg); transform-origin: 100% 100%; }
.sticker-heart > span { position: relative; z-index: 2; padding-bottom: .8rem; text-shadow: 0 1px 2px rgba(107, 12, 55, .35); }
.sticker-heart.lg { width: 112px; height: 102px; font-size: .66rem; }
.sticker-heart.lg::before, .sticker-heart.lg::after { width: 56px; height: 90px; border-radius: 56px 56px 0 0; }
.sticker-heart.lg::before { left: 56px; }

/* starburst */
.sticker-starburst {
  --rot: -6deg;
  width: 108px; height: 108px;
  padding: 1.4rem;
  color: #fff;
  background: linear-gradient(140deg, var(--hot-pink), var(--raspberry));
  clip-path: polygon(50.0% 0.0%, 59.8% 13.3%, 75.0% 6.7%, 76.9% 23.1%, 93.3% 25.0%, 86.7% 40.2%, 100.0% 50.0%, 86.7% 59.8%, 93.3% 75.0%, 76.9% 76.9%, 75.0% 93.3%, 59.8% 86.7%, 50.0% 100.0%, 40.2% 86.7%, 25.0% 93.3%, 23.1% 76.9%, 6.7% 75.0%, 13.3% 59.8%, 0.0% 50.0%, 13.3% 40.2%, 6.7% 25.0%, 23.1% 23.1%, 25.0% 6.7%, 40.2% 13.3%);
  transform: rotate(var(--rot));
  font-size: .55rem;
}
.sticker-starburst.alt {
  --rot: 8deg;
  background: linear-gradient(140deg, var(--gold-light), var(--gold-deep));
  color: #3d2905;
}
.sticker-starburst.lg { width: 124px; height: 124px; font-size: .6rem; }

/* folded paper label */
.sticker-fold {
  --rot: -4deg;
  padding: .65rem 1.15rem .65rem .95rem;
  background: linear-gradient(150deg, #fffdfa, var(--cream));
  color: var(--raspberry-ink);
  border-radius: 6px;
  border: 1px solid rgba(158, 17, 80, .16);
  box-shadow: var(--sh-paper);
  transform: rotate(var(--rot));
  position: relative;
  overflow: hidden;
}
.sticker-fold::after {
  content: "";
  position: absolute;
  right: 0; bottom: 0;
  border-width: 0 0 20px 20px;
  border-style: solid;
  border-color: transparent transparent rgba(255, 217, 232, .95) transparent;
  filter: drop-shadow(-2px -2px 3px rgba(107, 12, 55, .18));
}
.sticker-fold.alt { --rot: 5deg; background: linear-gradient(150deg, #fff, var(--blush-soft)); }
.sticker-fold.lg { font-size: .72rem; padding: .8rem 1.4rem; }

/* paw badge */
.sticker-pawbadge {
  --rot: 6deg;
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .6rem 1.1rem;
  border-radius: 40% 60% 55% 45% / 55% 45% 60% 40%;
  background: linear-gradient(140deg, #fff, var(--blush));
  color: var(--raspberry-ink);
  border: 2px solid rgba(255, 45, 138, .3);
  box-shadow: var(--sh-paper);
  transform: rotate(var(--rot));
}
.sticker-pawbadge .ico { color: var(--hot-pink); width: 18px; height: 18px; }
.sticker-pawbadge.lg { font-size: .7rem; padding: .75rem 1.35rem; }

/* holographic Solana sticker */
.sticker-holo {
  --rot: -7deg;
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .58rem 1.05rem;
  border-radius: var(--pill);
  background:
    linear-gradient(120deg, rgba(255, 255, 255, .55), rgba(255, 255, 255, 0) 40%),
    var(--sol-gradient);
  color: #11131f;
  box-shadow: var(--sh-paper), inset 0 0 0 1.5px rgba(255, 255, 255, .5);
  transform: rotate(var(--rot));
  background-size: 200% 100%, 200% 100%;
  animation: holo 6s linear infinite;
}
@keyframes holo {
  0% { background-position: 0% 0, 0% 0; }
  100% { background-position: 200% 0, 200% 0; }
}
.sticker-holo.alt { --rot: 6deg; }
.sticker-holo.lg { font-size: .7rem; padding: .72rem 1.3rem; }
.sticker-holo .sol-ico { fill: none; }
.sticker-holo .sol-ico path { fill: #10121f; }

/* small solana / paw corner chips */
.sticker-sol, .sticker-paw {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--sh-paper);
  --rot: -10deg;
  transform: rotate(var(--rot));
  border: 2px solid rgba(255, 255, 255, .9);
}
.sticker-sol { background: var(--sol-black); }
.sticker-sol .ico { width: 24px; height: 20px; }
.sticker-paw { color: var(--hot-pink); --rot: 8deg; }
.sticker-paw .ico { width: 22px; height: 22px; }
.sticker.sm { width: 38px; height: 38px; }
.sticker.sm .ico { width: 20px; height: 17px; }

.sticker-sheet {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 2.5vw, 2rem);
  justify-content: center;
  align-items: center;
}
.sticker-sheet li { display: grid; place-items: center; }

.section-stickers { background: linear-gradient(180deg, transparent, rgba(255, 234, 243, .6), transparent); }

/* ------------------------------ 4. POLAROID BOARD ------------------------------ */
.section-board { background: linear-gradient(180deg, rgba(255, 245, 234, .5), rgba(255, 250, 252, 0)); }
.board-outer {
  position: relative;
  padding-block: 1rem 2rem;
}
.board {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-block: clamp(2rem, 4vw, 3.4rem);
}

.polaroid {
  --rot: 0deg;
  position: relative;
  flex: none;
  width: clamp(190px, 20vw, 264px);
  margin: 0 clamp(-2.6rem, -2vw, -1rem);
  padding: 14px 14px 0;
  background: linear-gradient(160deg, #fff, #fffaf5);
  border-radius: 8px;
  box-shadow: var(--sh-paper);
  transform: rotate(var(--rot));
  transition: transform .45s var(--ease), box-shadow .45s ease, z-index 0s;
  cursor: pointer;
}
.polaroid:nth-child(odd) { --rot: -7deg; }
.polaroid:nth-child(even) { --rot: 7deg; margin-top: clamp(1rem, 2.4vw, 2.6rem); }
.polaroid:nth-child(3) { --rot: -3deg; margin-top: -.6rem; }
.polaroid:nth-child(1) { z-index: 1; }
.polaroid:nth-child(2) { z-index: 2; }
.polaroid:nth-child(3) { z-index: 3; }
.polaroid:nth-child(4) { z-index: 2; }
.polaroid:nth-child(5) { z-index: 1; }

.polaroid:hover, .polaroid:focus-within {
  transform: rotate(0deg) scale(1.09) translateY(-10px);
  box-shadow: var(--sh-lift);
  z-index: 20;
}

.polaroid-photo { position: relative; border-radius: 4px; overflow: visible; }
.polaroid-photo img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 4px;
  background: var(--blush-soft);
}
.polaroid-caption {
  padding: .85rem .4rem 1.1rem;
  text-align: center;
}
.polaroid-caption strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.02rem;
  color: var(--raspberry-ink);
  margin-bottom: .2rem;
}
.polaroid-caption span {
  display: block;
  font-size: .78rem;
  line-height: 1.45;
  color: var(--ink-mute);
}

.pin {
  position: absolute;
  top: -12px; left: 50%;
  width: 20px; height: 20px;
  margin-left: -10px;
  border-radius: 50%;
  background: radial-gradient(circle at 34% 30%, #ff86bb, var(--hot-pink) 55%, var(--raspberry));
  box-shadow: 0 4px 8px rgba(107, 12, 55, .35), inset 0 -2px 3px rgba(0, 0, 0, .18);
  z-index: 6;
}
.pin::after {
  content: "";
  position: absolute;
  left: 50%; top: 82%;
  width: 2px; height: 9px;
  margin-left: -1px;
  background: linear-gradient(#c9c9d2, #8f8f9c);
  border-radius: 0 0 2px 2px;
}

.doodle { position: absolute; color: var(--hot-pink); opacity: .65; pointer-events: none; }
.doodle svg { width: 100%; height: 100%; fill: currentColor; }
.doodle-heart { width: 26px; height: 26px; bottom: 6px; right: 10px; transform: rotate(12deg); }
.doodle-heart.alt { color: var(--gold); left: 10px; right: auto; }
.doodle-sparkle { width: 24px; height: 24px; bottom: 8px; left: 12px; color: var(--gold); }
.doodle-sparkle.alt { color: var(--sol-purple); right: 12px; left: auto; }

/* everyday moments — polaroid grid */
.moment-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 288px));
  justify-content: center;
  gap: clamp(1.2rem, 2.8vw, 2.2rem);
  padding-block: 1rem;
}
.moment-grid > :last-child { grid-column: 2; }

.snap {
  --rot: -2.5deg;
  position: relative;
  margin: 0;
  background: linear-gradient(160deg, #fff, #fffaf5);
  border-radius: 10px;
  padding: 12px 12px 0;
  box-shadow: var(--sh-paper);
  transform: rotate(var(--rot));
  transition: transform .45s var(--ease), box-shadow .45s ease;
}
.snap:nth-child(even) { --rot: 2.5deg; }
.snap:nth-child(3n) { --rot: -1.5deg; }
.snap figure { margin: 0; }
.snap:hover, .snap:focus-within {
  transform: rotate(0deg) translateY(-10px) scale(1.035);
  box-shadow: var(--sh-lift);
  z-index: 5;
}
.snap-photo { position: relative; border-radius: 6px; overflow: hidden; background: var(--blush-soft); }
.snap img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.snap figcaption {
  display: flex; align-items: center; justify-content: center; gap: .4rem;
  padding: .75rem .3rem .95rem;
  text-align: center;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--raspberry-ink);
}
.snap figcaption .ico { width: 15px; height: 15px; color: var(--hot-pink); }

.snap-tag {
  position: absolute;
  top: -9px; right: -6px;
  z-index: 4;
  padding: .28rem .72rem;
  border-radius: var(--pill);
  font: 800 .66rem/1 var(--font-ui);
  letter-spacing: .05em;
  color: #fff;
  box-shadow: 0 5px 12px rgba(107, 12, 55, .22);
  transform: rotate(3deg);
}
.tag-pink { background: linear-gradient(120deg, #ff5aa8, var(--hot-pink-deep)); }
.tag-gold { background: linear-gradient(120deg, var(--gold-light), var(--gold-deep)); color: #3d2905; }
.tag-purple { background: linear-gradient(120deg, #b06bff, var(--sol-purple)); }
.tag-green { background: linear-gradient(120deg, var(--sol-green), #06b97a); color: #063b28; }
.tag-cyan { background: linear-gradient(120deg, #6fe3ff, var(--sol-cyan)); color: #05323f; }

.moment-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .6rem;
  margin-top: clamp(1.4rem, 3vw, 2.2rem);
}
.moment-tags li {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .45rem 1.05rem;
  border-radius: var(--pill);
  background: #fff;
  border: 1.5px solid rgba(158, 17, 80, .14);
  box-shadow: var(--sh-soft);
  font-size: .82rem; font-weight: 700;
  color: var(--raspberry-ink);
}
.moment-tags .ico { width: 16px; height: 16px; color: var(--hot-pink); }

/* ------------------------------ 6. CHAPTERS ------------------------------ */
.timeline { position: relative; }
.chapter { padding: clamp(2.4rem, 5vw, 4rem) 0; position: relative; }
.chapter-pink { background: linear-gradient(120deg, rgba(255, 217, 232, .55), rgba(255, 245, 234, .5)); }
.chapter-sol {
  background: linear-gradient(120deg, rgba(153, 69, 255, .10), rgba(0, 209, 255, .08) 55%, rgba(20, 241, 149, .10));
}
.chapter::after {
  content: "";
  position: absolute;
  inset-inline: 0; bottom: 0;
  height: 2px;
  background: var(--sol-gradient);
  opacity: .3;
}
.chapter:last-child::after { display: none; }

.chapter-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(1.6rem, 4vw, 3.6rem);
  align-items: center;
}
.chapter:nth-child(even) .chapter-media { order: 2; }

.chapter-media {
  position: relative;
  margin: 0;
  border-radius: var(--r-lg);
  border: 10px solid #fff;
  box-shadow: var(--sh-card);
  max-width: 460px;
  justify-self: center;
}
.chapter-media img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: calc(var(--r-lg) - 12px); }

.chapter-num {
  display: inline-block;
  padding: .3rem .9rem;
  margin-bottom: .7rem;
  border-radius: var(--pill);
  background: #fff;
  border: 1.5px solid rgba(158, 17, 80, .18);
  font-size: .74rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  color: var(--hot-pink-deep);
}
.chapter-title { font-size: clamp(1.5rem, 3.4vw, 2.3rem); }
.chapter-copy p { color: var(--ink-soft); margin: 0; max-width: 54ch; }

/* ------------------------------ 7. HIGHLIGHTS ------------------------------ */
.highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: clamp(1rem, 2.4vw, 1.8rem);
}
.highlight-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 1.8rem 1.2rem 1.5rem;
  text-align: center;
  box-shadow: var(--sh-soft);
  border: 1.5px solid rgba(158, 17, 80, .08);
  transition: transform .4s var(--ease), box-shadow .4s ease;
}
.highlight-card:hover { transform: translateY(-8px); box-shadow: var(--sh-card); }
.highlight-ring {
  display: grid; place-items: center;
  width: 84px; height: 84px;
  margin: 0 auto .9rem;
  border-radius: 50%;
  background: linear-gradient(150deg, #fff, var(--blush-soft));
  color: var(--raspberry);
  position: relative;
  isolation: isolate;
  box-shadow: inset 0 2px 6px rgba(158, 17, 80, .08);
}
.highlight-ring::before {
  content: "";
  position: absolute; inset: -4px;
  border-radius: 50%;
  background: conic-gradient(from 210deg, var(--hot-pink), var(--gold), var(--sol-purple), var(--sol-green), var(--hot-pink));
  z-index: -1;
}
.highlight-ring .ico { width: 34px; height: 34px; }
.highlight-card h3 { font-size: 1.12rem; margin-bottom: .3rem; }
.highlight-card p { font-size: .88rem; color: var(--ink-mute); margin: 0; }

/* ------------------------------ 8. COMMUNITY ------------------------------ */
.section-community { background: linear-gradient(180deg, transparent, rgba(255, 234, 243, .55), transparent); }
.action-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: clamp(1rem, 2.4vw, 1.6rem);
}
.action-card {
  position: relative;
  background: #fff;
  border-radius: var(--r-lg);
  padding: 1.7rem 1.5rem;
  box-shadow: var(--sh-soft);
  border: 1.5px solid rgba(158, 17, 80, .08);
  overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s ease;
}
.action-card::after {
  content: "";
  position: absolute;
  inset-inline: 0; top: 0;
  height: 4px;
  background: var(--sol-gradient);
  opacity: .7;
}
.action-card:hover { transform: translateY(-8px); box-shadow: var(--sh-card); }
.action-icon {
  display: grid; place-items: center;
  width: 54px; height: 54px;
  border-radius: 18px;
  margin-bottom: .9rem;
  background: linear-gradient(140deg, var(--blush), #fff);
  color: var(--hot-pink-deep);
}
.action-icon .ico { width: 26px; height: 26px; }
.action-card h3 { font-size: 1.15rem; }
.action-card p { margin: 0; font-size: .92rem; color: var(--ink-mute); }

.social-cta { display: flex; flex-wrap: wrap; gap: .9rem; justify-content: center; margin-top: 2.4rem; }

/* ------------------------------ 9. VALUE CHIPS ------------------------------ */
.chip-rails { display: grid; gap: 1rem; }
.chip-rail .marquee-track { animation-duration: 44s; }
.chip-rail.reverse .marquee-track { animation-direction: reverse; animation-duration: 52s; }
.chip-rail .marquee-group { gap: 1rem; padding: .5rem 0; }

.chip {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .85rem 1.7rem;
  border-radius: var(--pill);
  font: 700 clamp(1rem, 1.8vw, 1.2rem)/1 var(--font-ui);
  white-space: nowrap;
  box-shadow: var(--sh-soft);
  border: 1.5px solid transparent;
}
.chip .ico { width: 22px; height: 22px; }
.chip-pink { background: linear-gradient(120deg, var(--hot-pink), #ff6bb0); color: #fff; }
.chip-white { background: #fff; color: var(--raspberry-ink); border-color: rgba(158, 17, 80, .16); }
.chip-white .ico { color: var(--hot-pink); }
.chip-gold { background: linear-gradient(120deg, var(--gold-light), var(--gold)); color: #4c3308; }
.chip-sol {
  background: #fff;
  color: var(--sol-black);
  position: relative;
  isolation: isolate;
}
.chip-sol::before {
  content: "";
  position: absolute; inset: -2px;
  border-radius: inherit;
  background: var(--sol-gradient);
  z-index: -1;
}
.chip-sol .ico { color: var(--sol-purple); }
.chip-solid-sol { background: var(--sol-black); color: #fff; }
.chip-solid-sol .ico { color: var(--sol-green); }

/* ------------------------------ 10. HOW TO BUY ------------------------------ */
.section-buy::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(46rem 30rem at 80% 10%, rgba(0, 209, 255, .08), transparent 62%);
  pointer-events: none;
}
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(1rem, 2.4vw, 1.6rem);
  counter-reset: step;
}
.step-card {
  position: relative;
  background: #fff;
  border-radius: var(--r-lg);
  padding: 2.1rem 1.5rem 1.6rem;
  box-shadow: var(--sh-soft);
  border: 1.5px solid rgba(158, 17, 80, .08);
  transition: transform .4s var(--ease), box-shadow .4s ease;
}
.step-card:hover { transform: translateY(-8px); box-shadow: var(--sh-card); }
.step-num {
  position: absolute;
  top: -18px; left: 1.5rem;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--hot-pink), var(--raspberry));
  color: #fff;
  font: 800 1.15rem/1 var(--font-display);
  box-shadow: 0 8px 18px rgba(158, 17, 80, .3);
  border: 3px solid #fff;
}
.step-icon {
  display: grid; place-items: center;
  width: 48px; height: 48px;
  border-radius: 16px;
  margin: .4rem 0 .9rem;
  background: var(--sol-gradient-soft);
  color: var(--sol-purple);
}
.step-icon .ico { width: 26px; height: 26px; }
.step-card h3 { font-size: 1.1rem; margin-bottom: .3rem; }
.step-card p { margin: 0; font-size: .92rem; color: var(--ink-mute); }

.ca-panel {
  margin-top: clamp(2rem, 4vw, 3rem);
  padding: clamp(1.4rem, 3vw, 2.4rem);
  border-radius: var(--r-xl);
  background: linear-gradient(150deg, #fff, var(--surface-tint));
  box-shadow: var(--sh-card);
  border: 1.5px solid rgba(158, 17, 80, .1);
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.ca-panel::after {
  content: "";
  position: absolute;
  right: -60px; bottom: -60px;
  width: 220px; height: 220px;
  background: var(--sol-gradient);
  opacity: .1;
  filter: blur(20px);
  border-radius: 50%;
  z-index: -1;
}
.ca-panel-head { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.2rem; }
.ca-panel-head h3 { margin: 0 0 .2rem; font-size: 1.25rem; }
.sol-ico.big { width: 46px; height: 38px; }
.ca-verified {
  display: inline-flex; align-items: center; gap: .4rem;
  margin: 0;
  font-size: .84rem; font-weight: 700;
  color: var(--sol-purple);
}
.ca-bar.big { max-width: none; padding: .7rem .7rem .7rem 1.2rem; }
.ca-bar.big .ca-value { font-size: clamp(.8rem, 1.6vw, 1rem); text-align: left; }
.ca-bar.inline { max-width: none; padding: .4rem .4rem .4rem .9rem; }
.ca-bar.inline .ca-value { text-align: left; font-size: .8rem; }

.warning-note {
  display: flex; align-items: flex-start; gap: .6rem;
  margin: 1.1rem 0 0;
  padding: .9rem 1.1rem;
  border-radius: var(--r-md);
  background: #fff6fa;
  border: 1.5px dashed rgba(255, 45, 138, .4);
  font-size: .92rem;
  color: var(--raspberry-ink);
}
.warning-note .ico { color: var(--hot-pink); flex: none; margin-top: .12em; }
.ca-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.4rem; }

/* ------------------------------ 11. TOKEN INFO ------------------------------ */
.token-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(1rem, 2.2vw, 1.5rem);
}
.token-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 1.4rem 1.5rem;
  box-shadow: var(--sh-soft);
  border: 1.5px solid rgba(158, 17, 80, .08);
  transition: transform .4s var(--ease), box-shadow .4s ease;
}
.token-card:hover { transform: translateY(-5px); box-shadow: var(--sh-card); }
.token-card.wide { grid-column: 1 / -1; }
.token-card dt {
  font-size: .74rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: .5rem;
}
.token-card dd {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--raspberry-ink);
  display: flex; align-items: center; gap: .5rem;
}
.token-card-sol { background: linear-gradient(150deg, #fff, rgba(153, 69, 255, .07)); }
.token-card-sol dd { color: var(--sol-black); }
.is-placeholder {
  font-family: var(--font-ui) !important;
  font-size: .95rem !important;
  color: var(--ink-mute) !important;
  background: repeating-linear-gradient(-45deg, rgba(255, 217, 232, .5) 0 10px, rgba(255, 245, 234, .5) 10px 20px);
  padding: .5rem .8rem;
  border-radius: var(--r-sm);
  border: 1.5px dashed rgba(158, 17, 80, .25);
}
.token-note {
  display: flex; align-items: flex-start; gap: .6rem;
  max-width: 70ch;
  margin: 1.8rem auto 0;
  font-size: .9rem;
  color: var(--ink-mute);
  text-align: left;
}
.token-note .ico { color: var(--sol-purple); flex: none; margin-top: .15em; }

/* ------------------------------ 12. FINAL CTA ------------------------------ */
.final-cta {
  position: relative;
  padding: clamp(4rem, 9vw, 7.5rem) 0;
  overflow: hidden;
  text-align: center;
  color: #fff;
  isolation: isolate;
}
.final-bg { position: absolute; inset: 0; z-index: -2; }
.final-bg img { width: 100%; height: 100%; object-fit: cover; }
.final-cta::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(107, 12, 55, .72), rgba(158, 17, 80, .62) 45%, rgba(13, 11, 24, .78)),
    var(--sol-gradient-soft);
}
.final-inner { position: relative; max-width: 760px; }
.final-title {
  color: #fff;
  font-size: clamp(2rem, 5.4vw, 3.6rem);
  text-shadow: 0 4px 24px rgba(0, 0, 0, .35);
}
.final-lede {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, .94);
  max-width: 56ch;
  margin: 0 auto 2rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .35);
}
.final-buttons { display: flex; flex-wrap: wrap; gap: .9rem; justify-content: center; }
.final-cta .btn-ghost { background: rgba(255, 255, 255, .92); }

.heart-badge {
  position: relative;
  display: grid;
  place-items: center;
  width: 132px; height: 120px;
  margin: 0 auto 1.6rem;
  transform: rotate(-6deg);
  filter: drop-shadow(0 12px 26px rgba(0, 0, 0, .35));
  animation: float 8s ease-in-out infinite;
}
.heart-badge::before,
.heart-badge::after {
  content: "";
  position: absolute;
  top: 0;
  width: 66px; height: 106px;
  background: linear-gradient(150deg, #fff, var(--blush) 60%, #ff9ecb);
  border-radius: 66px 66px 0 0;
}
.heart-badge::before { left: 66px; transform: rotate(-45deg); transform-origin: 0 100%; }
.heart-badge::after { left: 0; transform: rotate(45deg); transform-origin: 100% 100%; }
.heart-badge-text {
  position: relative;
  z-index: 2;
  padding-bottom: 1rem;
  font: 800 .68rem/1.35 var(--font-ui);
  letter-spacing: .1em;
  color: var(--raspberry-ink);
}

/* ------------------------------ FOOTER ------------------------------ */
.site-footer {
  background: var(--sol-black);
  color: rgba(255, 255, 255, .82);
  padding: clamp(2.6rem, 5vw, 4rem) 0 2rem;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  inset-inline: 0; top: 0;
  height: 3px;
  background: var(--sol-gradient);
}
.site-footer::after {
  content: "";
  position: absolute;
  left: -8%; bottom: -30%;
  width: 46rem; height: 46rem;
  background: radial-gradient(circle, rgba(255, 45, 138, .18), transparent 62%);
  pointer-events: none;
}
.footer-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: clamp(1.6rem, 4vw, 3rem);
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}
.footer-brand { display: flex; gap: 1rem; align-items: center; }
.footer-name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: #fff;
}
.footer-ticker {
  display: inline-block;
  margin: .2rem .5rem .35rem 0;
  padding: .12rem .7rem;
  border-radius: var(--pill);
  background: linear-gradient(120deg, var(--gold-light), var(--gold));
  color: #4c3308;
  font-size: .78rem; font-weight: 800; letter-spacing: .06em;
}
.footer-solana {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .82rem; font-weight: 700; letter-spacing: .06em;
  color: rgba(255, 255, 255, .78);
}
.footer-heading {
  font-family: var(--font-ui);
  font-size: .76rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
  margin-bottom: .9rem;
}
.footer-nav ul { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .35rem 1rem; }
.footer-nav a {
  text-decoration: none;
  font-size: .93rem;
  color: rgba(255, 255, 255, .8);
  transition: color .25s;
}
.footer-nav a:hover { color: var(--sol-green); }
.footer-socials { display: flex; gap: .6rem; margin-bottom: 1.1rem; }
.footer-ca {
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .16);
  max-width: none;
  padding-left: .9rem;
}
.footer-ca::before { opacity: .55; }
.footer-ca .ca-label { color: rgba(255, 255, 255, .6); }
.footer-ca .ca-value { color: #fff; font-size: .78rem; }

.footer-bottom {
  position: relative;
  padding-top: 1.6rem;
  display: grid;
  gap: 1rem;
}
.disclaimer {
  margin: 0;
  font-size: .84rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, .62);
  max-width: 90ch;
}
.disclaimer strong { color: rgba(255, 255, 255, .85); }
.copyright {
  display: flex; flex-wrap: wrap; gap: .4rem 1.2rem;
  justify-content: space-between;
  margin: 0;
  font-size: .82rem;
  color: rgba(255, 255, 255, .5);
}

/* ------------------------------ TOAST ------------------------------ */
.toast {
  position: fixed;
  left: 50%;
  bottom: 2rem;
  transform: translate(-50%, 140%);
  z-index: 200;
  max-width: min(92vw, 460px);
  padding: .85rem 1.4rem;
  border-radius: var(--pill);
  background: var(--sol-black);
  color: #fff;
  font-size: .92rem;
  font-weight: 600;
  text-align: center;
  box-shadow: 0 18px 40px rgba(13, 11, 24, .4);
  opacity: 0;
  transition: transform .45s var(--ease), opacity .3s ease;
  pointer-events: none;
}
.toast.is-visible { transform: translate(-50%, 0); opacity: 1; }
.toast::before {
  content: "";
  position: absolute; inset: -2px;
  border-radius: inherit;
  background: var(--sol-gradient);
  z-index: -1;
  opacity: .9;
}

/* ------------------------------ RESPONSIVE ------------------------------ */
@media (max-width: 1080px) {
  .nav-list a { padding: .5rem .55rem; font-size: .9rem; }
  .primary-nav { gap: .9rem; }
}

@media (max-width: 940px) {
  :root { --header-h: 66px; }

  .nav-toggle { display: grid; }

  .primary-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    display: grid;
    gap: 1.2rem;
    padding: 1.4rem 1.4rem 2rem;
    background: var(--pearl);
    border-bottom: 2px solid rgba(158, 17, 80, .12);
    box-shadow: 0 20px 44px rgba(158, 17, 80, .18);
    transform: translateY(-130%);
    transition: transform .38s var(--ease);
    z-index: 95;
    max-height: calc(100dvh - var(--header-h));
    overflow-y: auto;
  }
  .primary-nav.is-open { transform: translateY(0); }
  .nav-list { flex-direction: column; align-items: stretch; gap: .2rem; }
  .nav-list a { padding: .8rem 1rem; font-size: 1.05rem; border-radius: var(--r-md); }
  .nav-actions { justify-content: center; flex-wrap: wrap; }

  .story-grid { grid-template-columns: 1fr; }
  .story-figure { max-width: 420px; margin-inline: auto; }

  .chapter-inner { grid-template-columns: 1fr; }
  .chapter:nth-child(even) .chapter-media { order: 0; }
  .chapter-copy { text-align: center; }
  .chapter-copy p { margin-inline: auto; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 780px) {
  /* Polaroid board → swipeable carousel */
  .board {
    display: flex;
    justify-content: flex-start;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1.2rem;
    padding: 2.4rem .4rem 1.6rem;
    scrollbar-width: thin;
    scrollbar-color: var(--blush) transparent;
  }
  .board::-webkit-scrollbar { height: 8px; }
  .board::-webkit-scrollbar-thumb { background: var(--blush); border-radius: 99px; }
  .polaroid {
    width: min(76vw, 300px);
    margin: 0 !important;
    scroll-snap-align: center;
    --rot: -2deg;
  }
  .polaroid:nth-child(even) { --rot: 2deg; }
  .carousel-controls { display: flex; justify-content: center; }

  .sticker-sheet { gap: 1.1rem; }
  .hero-cta .btn, .final-buttons .btn, .social-cta .btn { flex: 1 1 auto; justify-content: center; }
}

@media (max-width: 900px) {
  .moment-grid { grid-template-columns: repeat(2, minmax(0, 300px)); }
  .moment-grid > :last-child { grid-column: 1 / -1; justify-self: center; width: min(100%, 300px); }
}

@media (max-width: 560px) {
  .moment-grid { grid-template-columns: minmax(0, 320px); }
  .moment-grid > :last-child { grid-column: auto; width: auto; }
}

@media (max-width: 560px) {
  .ca-bar { flex-wrap: wrap; padding: .8rem; justify-content: center; }
  .ca-value { flex-basis: 100%; text-align: center; white-space: normal; word-break: break-all; font-size: .8rem; }
  .btn-copy { width: 100%; justify-content: center; }
  .ca-label { width: 100%; justify-content: center; display: flex; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-nav ul { grid-template-columns: repeat(2, 1fr); }
  .floaty { display: none; }
  .f1, .f4 { display: grid; }
  .heart-badge { width: 116px; height: 106px; }
  .heart-badge::before, .heart-badge::after { width: 58px; height: 94px; border-radius: 58px 58px 0 0; }
  .heart-badge::before { left: 58px; }
  .tape { width: 76px; height: 24px; }
}

/* ------------------------------ REDUCED MOTION ------------------------------ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .marquee-track { animation: none; transform: none; }
  .marquee { overflow-x: auto; }
  .floaty, .heart-badge { animation: none; }
  .polaroid:hover { transform: rotate(0deg); }
}

/* ------------------------------ PRINT ------------------------------ */
@media print {
  .site-header, .caption-bar, .floaties, .carousel-controls, .toast { display: none !important; }
  body { background: #fff; }
  .reveal { opacity: 1; transform: none; }
}
