:root {
  --cream: #fff7e7;
  --warm-white: #fffdf8;
  --beige: #ead8bd;
  --sand: #d4b384;
  --orange: #f4a742;
  --orange-dark: #b75e20;
  --gold: #ffd15a;
  --brown: #6d4429;
  --soft-brown: #a47148;
  --ink: #14110d;
  --muted: #6f6254;
  --teal: #1b8a8f;
  --rose: #c75f62;
  --glass: rgba(255, 253, 248, 0.74);
  --line: rgba(109, 68, 41, 0.18);
  --line-strong: rgba(109, 68, 41, 0.34);
  --line-gold: rgba(244, 167, 66, 0.48);
  --shadow-soft: 0 26px 74px rgba(73, 42, 17, 0.2);
  --shadow-lift: 0 34px 90px rgba(57, 32, 12, 0.28), 0 12px 28px rgba(109, 68, 41, 0.16);
  --shadow-card: 10px 14px 0 rgba(212, 179, 132, 0.26), 0 22px 40px rgba(57, 32, 12, 0.28), 14px 48px 92px rgba(57, 32, 12, 0.22);
  --drop-card: drop-shadow(10px 12px 10px rgba(57, 32, 12, 0.2)) drop-shadow(0 28px 24px rgba(57, 32, 12, 0.24)) drop-shadow(18px 54px 44px rgba(57, 32, 12, 0.18));
  --shadow-glow: 0 16px 44px rgba(244, 167, 66, 0.35);
  --radius-lg: 30px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(109, 68, 41, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(109, 68, 41, 0.04) 1px, transparent 1px),
    var(--cream);
  background-size: 34px 34px;
  font-family: var(--font-body);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0;
  overflow-x: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-160%);
  border-radius: 999px;
  background: var(--ink);
  color: var(--warm-white);
  padding: 10px 16px;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  height: 4px;
  width: var(--scroll, 0%);
  background: linear-gradient(90deg, var(--orange), var(--gold), var(--teal));
  box-shadow: 0 0 18px rgba(255, 209, 90, 0.8);
}

.content-wrap {
  width: min(1160px, calc(100% - 36px));
  margin-inline: auto;
}

.section-bleed,
.section-panel {
  position: relative;
  padding: 110px 0;
}

.section-panel {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.55), rgba(234, 216, 189, 0.52)),
    repeating-linear-gradient(0deg, rgba(20, 17, 13, 0.025) 0 1px, transparent 1px 7px);
  border-block: 1px solid var(--line);
  overflow: hidden;
}

.section-panel::before,
.section-panel::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  z-index: 0;
  height: 34px;
  pointer-events: none;
  background: var(--cream);
  filter: drop-shadow(0 10px 18px rgba(109, 68, 41, 0.08));
}

.section-panel::before {
  top: -1px;
  clip-path: polygon(0 0, 100% 0, 100% 56%, 92% 71%, 83% 48%, 73% 65%, 61% 43%, 50% 68%, 39% 47%, 28% 70%, 17% 50%, 8% 66%, 0 47%);
}

.section-panel::after {
  bottom: -1px;
  clip-path: polygon(0 42%, 8% 26%, 18% 50%, 28% 30%, 39% 54%, 50% 28%, 61% 50%, 72% 32%, 84% 55%, 93% 33%, 100% 50%, 100% 100%, 0 100%);
}

.section-panel > .content-wrap,
.section-bleed > .content-wrap {
  position: relative;
  z-index: 1;
}

.site-header {
  position: fixed;
  inset: 16px 0 auto;
  z-index: 50;
  transition: transform 0.25s ease, filter 0.25s ease;
}

.site-header.is-scrolled .nav-shell {
  background: rgba(255, 253, 248, 0.86);
  box-shadow: var(--shadow-soft);
}

.nav-shell {
  width: min(1180px, calc(100% - 28px));
  min-height: 72px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.62);
  backdrop-filter: blur(20px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--warm-white);
  box-shadow:
    0 0 0 2px var(--warm-white),
    0 0 0 5px var(--gold),
    0 10px 24px rgba(244, 167, 66, 0.35);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 42% 48%;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.1;
}

.brand small {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
}

.nav-links,
.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  border-radius: 999px;
  padding: 10px 12px;
  color: rgba(20, 17, 13, 0.78);
  font-weight: 700;
  font-size: 0.9rem;
}

.nav-links a:hover {
  background: rgba(244, 167, 66, 0.15);
  color: var(--ink);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 99px;
  background: var(--warm-white);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 12px 18px;
  cursor: pointer;
  font-weight: 800;
  line-height: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--gold));
  color: var(--ink);
  box-shadow: var(--shadow-glow);
}

.btn-soft {
  background: rgba(255, 253, 248, 0.78);
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 12px 36px rgba(109, 68, 41, 0.16);
}

.btn-dark {
  background: var(--ink);
  color: var(--warm-white);
  box-shadow: 0 16px 30px rgba(20, 17, 13, 0.18);
}

.btn-ghost {
  border: 1px solid rgba(20, 17, 13, 0.12);
  background: rgba(255, 253, 248, 0.55);
}

.btn-large {
  min-height: 56px;
  padding: 16px 24px;
}

[aria-disabled="true"] {
  cursor: not-allowed;
}

.hero {
  min-height: 94svh;
  display: grid;
  align-items: center;
  padding: 112px 0 46px;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(255, 247, 231, 0.96), rgba(255, 253, 248, 0.82) 45%, rgba(244, 167, 66, 0.22)),
    radial-gradient(circle at 25% 15%, rgba(255, 209, 90, 0.36), transparent 28%),
    radial-gradient(circle at 90% 20%, rgba(27, 138, 143, 0.14), transparent 24%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(180deg, transparent, var(--cream));
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(350px, 0.94fr);
  align-items: center;
  gap: 58px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange-dark);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1;
}

h1 {
  max-width: 850px;
  margin-bottom: 26px;
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.35vw, 4.95rem);
  font-weight: 800;
}

h2 {
  margin-bottom: 18px;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 4.35rem);
  font-weight: 750;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
  font-weight: 800;
}

.hero-subtitle {
  max-width: 670px;
  color: rgba(20, 17, 13, 0.78);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.hero-buttons,
.ticker-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.ticker-strip {
  max-width: 650px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 20px;
  padding: 10px;
  background: rgba(255, 253, 248, 0.55);
  backdrop-filter: blur(15px);
  box-shadow: 0 12px 30px rgba(109, 68, 41, 0.09);
}

.ticker-strip span {
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(20, 17, 13, 0.06);
  font-weight: 800;
  font-size: 0.84rem;
}

.hero-photo {
  position: relative;
  margin: 0;
  transform: rotate(2deg);
}

.hero-photo img {
  width: 100%;
  max-height: min(560px, calc(94svh - 180px));
  aspect-ratio: 1;
  object-fit: cover;
  border: 12px solid var(--warm-white);
  border-radius: 38px;
  box-shadow: 0 34px 90px rgba(57, 32, 12, 0.28), 0 0 0 1px rgba(20, 17, 13, 0.08);
}

.hero-photo::before {
  content: "";
  position: absolute;
  inset: -22px;
  z-index: -1;
  border: 1px solid rgba(255, 209, 90, 0.7);
  border-radius: 48px;
  transform: rotate(-4deg);
}

.hero-photo figcaption {
  position: absolute;
  right: 24px;
  bottom: 24px;
  max-width: 240px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  padding: 14px 16px;
  background: rgba(255, 253, 248, 0.78);
  backdrop-filter: blur(15px);
  box-shadow: var(--shadow-soft);
}

.hero-photo figcaption span,
.hero-photo figcaption strong {
  display: block;
}

.hero-photo figcaption span {
  color: var(--orange-dark);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.float-item {
  position: absolute;
  z-index: 0;
  opacity: 0.62;
  animation: drift 9s ease-in-out infinite;
}

.paw {
  width: 46px;
  height: 40px;
}

.paw::before,
.paw::after {
  content: "";
  position: absolute;
  background: rgba(109, 68, 41, 0.18);
}

.paw::before {
  left: 10px;
  bottom: 2px;
  width: 28px;
  height: 24px;
  border-radius: 50% 50% 44% 44%;
}

.paw::after {
  left: 2px;
  top: 1px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  box-shadow: 16px -6px 0 rgba(109, 68, 41, 0.18), 32px 0 0 rgba(109, 68, 41, 0.18);
}

.heart {
  width: 28px;
  height: 28px;
  transform: rotate(45deg);
  background: rgba(199, 95, 98, 0.32);
  border-radius: 7px;
}

.heart::before,
.heart::after {
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: inherit;
}

.heart::before {
  left: -14px;
}

.heart::after {
  top: -14px;
}

.sparkle {
  width: 10px;
  height: 10px;
  background: var(--gold);
  box-shadow: 0 0 18px rgba(255, 209, 90, 0.85);
  transform: rotate(45deg);
}

.p1 { left: 5%; top: 24%; }
.p2 { right: 8%; bottom: 15%; animation-delay: -2s; }
.h1 { left: 36%; bottom: 19%; animation-delay: -4s; }
.h2 { right: 30%; top: 16%; animation-delay: -1s; }
.s1 { left: 21%; top: 18%; animation-delay: -3s; }
.s2 { right: 15%; top: 35%; animation-delay: -5s; }
.s3 { left: 52%; bottom: 13%; animation-delay: -7s; }

@keyframes drift {
  0%, 100% { translate: 0 0; rotate: 0deg; }
  50% { translate: 12px -24px; rotate: 9deg; }
}

.section-heading {
  position: relative;
  max-width: 780px;
  margin-bottom: 46px;
}

.section-heading::before {
  content: "";
  position: absolute;
  left: -18px;
  top: -18px;
  z-index: -1;
  width: min(220px, 46vw);
  height: 62px;
  background: rgba(255, 209, 90, 0.22);
  clip-path: polygon(5% 18%, 92% 0, 100% 68%, 8% 100%, 0 44%);
  transform: rotate(-2deg);
  filter: drop-shadow(0 16px 20px rgba(109, 68, 41, 0.1));
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

.cat-card h3,
.feature-card h3,
.roadmap-card h3,
.buy-card h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
}

.feature-card p,
.buy-card p,
.cat-card p {
  color: var(--muted);
}

.about-grid,
.narrative-grid,
.faq-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: center;
}

.paper-stack {
  position: relative;
  min-height: 520px;
}

.polaroid,
.note-card {
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 8px;
  background: var(--warm-white);
  box-shadow: var(--shadow-lift);
}

.main-polaroid {
  width: min(520px, 100%);
  padding: 16px 16px 54px;
  transform: rotate(-5deg);
}

.main-polaroid img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  border-radius: 6px;
}

.main-polaroid span {
  display: block;
  margin-top: 18px;
  color: var(--brown);
  font-family: var(--font-display);
  font-size: 1.5rem;
  text-align: center;
}

.note-card {
  position: absolute;
  right: 0;
  bottom: 20px;
  width: min(290px, 70%);
  padding: 28px;
  transform: rotate(5deg);
  background:
    linear-gradient(transparent 96%, rgba(109, 68, 41, 0.14) 96%),
    #fff4cf;
  background-size: 100% 30px;
  clip-path: polygon(0 10px, 10px 0, 100% 0, 97% 88%, 86% 100%, 0 96%);
}

.note-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
}

.story-copy {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-left: 0;
  padding: 34px;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.86), rgba(255, 247, 231, 0.72)),
    repeating-linear-gradient(0deg, transparent 0 28px, rgba(109, 68, 41, 0.05) 28px 29px);
  box-shadow: 0 24px 0 rgba(212, 179, 132, 0.24), 0 36px 95px rgba(73, 42, 17, 0.24);
  clip-path: polygon(0 18px, 22px 0, calc(100% - 18px) 0, 100% 16px, 98% 100%, 18px 98%, 0 calc(100% - 20px));
}

.story-copy::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 50%;
  width: 86px;
  height: 22px;
  background: rgba(244, 167, 66, 0.32);
  clip-path: polygon(0 18%, 100% 0, 92% 100%, 6% 86%);
  transform: translateX(-50%) rotate(-2deg);
}

.story-copy p,
.narrative-story p {
  color: rgba(20, 17, 13, 0.76);
  font-size: 1.05rem;
}

.narrative-section {
  background:
    linear-gradient(135deg, rgba(20, 17, 13, 0.94), rgba(65, 38, 19, 0.95)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 9px);
  color: var(--warm-white);
}

.narrative-story p {
  color: rgba(255, 253, 248, 0.78);
}

.narrative-story {
  position: relative;
  padding: 34px;
  background: rgba(255, 253, 248, 0.08);
  border: 1px solid rgba(255, 253, 248, 0.18);
  box-shadow: 0 34px 95px rgba(0, 0, 0, 0.28);
  clip-path: polygon(0 22px, 24px 0, 96% 0, 100% 18px, 100% calc(100% - 26px), calc(100% - 28px) 100%, 20px 98%, 0 calc(100% - 18px));
}

.narrative-story::before {
  content: "";
  position: absolute;
  top: 16px;
  right: 28px;
  width: 92px;
  height: 20px;
  background: rgba(255, 209, 90, 0.26);
  clip-path: polygon(6% 0, 100% 18%, 92% 100%, 0 82%);
  transform: rotate(3deg);
}

.narrative-photo {
  position: relative;
  display: block;
  width: min(390px, 100%);
  margin: 0 0 26px;
  padding: 14px 14px 54px;
  border: 1px solid rgba(255, 253, 248, 0.82);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.95);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.38), 0 12px 28px rgba(255, 209, 90, 0.12);
  transform: rotate(-4deg);
}

.narrative-photo::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 50%;
  z-index: 2;
  width: 96px;
  height: 24px;
  background: rgba(255, 209, 90, 0.56);
  clip-path: polygon(0 16%, 100% 0, 92% 100%, 6% 88%);
  transform: translateX(-50%) rotate(3deg);
}

.narrative-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 6px;
}

.narrative-photo figcaption {
  display: block;
  margin-top: 17px;
  color: var(--brown);
  font-family: var(--font-display);
  font-size: 1.35rem;
  text-align: center;
}

.narrative-kicker .eyebrow {
  color: var(--gold);
}

.cat-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

.cat-card {
  position: relative;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 12px;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.8), rgba(255, 247, 231, 0.7)),
    repeating-linear-gradient(90deg, rgba(109, 68, 41, 0.035) 0 1px, transparent 1px 18px);
  box-shadow: var(--shadow-card);
  filter: var(--drop-card);
  clip-path: polygon(0 18px, 18px 0, calc(100% - 14px) 0, 100% 16px, 98% calc(100% - 18px), calc(100% - 18px) 100%, 18px 100%, 0 calc(100% - 18px));
}

.cat-portrait {
  position: relative;
  margin: 0;
  min-height: 210px;
  border-radius: 24px;
  overflow: hidden;
  background: var(--warm-white);
  box-shadow: inset 0 0 0 8px rgba(255, 253, 248, 0.78), 0 16px 30px rgba(57, 32, 12, 0.16);
}

.cat-portrait::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  z-index: 2;
  width: 74px;
  height: 18px;
  background: rgba(255, 209, 90, 0.5);
  clip-path: polygon(6% 0, 100% 16%, 92% 100%, 0 84%);
  transform: translateX(-50%) rotate(-3deg);
  box-shadow: 0 6px 14px rgba(109, 68, 41, 0.1);
}

.cat-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 55%, rgba(20, 17, 13, 0.18));
  pointer-events: none;
}

.cat-portrait img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.cat-card:hover .cat-portrait img {
  transform: scale(1.05);
}

.baba-portrait img {
  object-position: 46% 34%;
}

.yaga-portrait img {
  object-position: 50% 36%;
}

.masonry-gallery {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 78px;
  grid-auto-flow: dense;
  gap: 22px;
}

.collage-gallery {
  position: relative;
  padding: 10px 0 22px;
}

.collage-gallery::before {
  content: "";
  position: absolute;
  inset: 34px -16px 0;
  z-index: 0;
  border-radius: 28px;
  background:
    radial-gradient(circle at 14% 18%, rgba(244, 167, 66, 0.18), transparent 26%),
    linear-gradient(135deg, rgba(255, 253, 248, 0.5), rgba(234, 216, 189, 0.42));
  filter: drop-shadow(0 22px 40px rgba(109, 68, 41, 0.08));
}

.gallery-tile {
  position: relative;
  z-index: 1;
  display: block;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border: 10px solid var(--warm-white);
  border-bottom-width: 46px;
  border-radius: 10px;
  background: var(--warm-white);
  box-shadow: 0 20px 0 rgba(212, 179, 132, 0.2), 0 34px 76px rgba(57, 32, 12, 0.3);
  filter: var(--drop-card);
  transform: translate(var(--shift-x, 0), var(--shift-y, 0)) rotate(var(--tilt, -1deg));
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.gallery-tile::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 50%;
  z-index: 3;
  width: 78px;
  height: 20px;
  background: rgba(255, 209, 90, 0.48);
  clip-path: polygon(6% 0, 100% 16%, 92% 100%, 0 84%);
  transform: translateX(-50%) rotate(calc(var(--tilt, 0deg) * -1));
  box-shadow: 0 6px 14px rgba(109, 68, 41, 0.1);
}

.gallery-tile:hover {
  z-index: 5;
  transform: translate(0, -6px) rotate(0deg);
  box-shadow: 0 22px 0 rgba(212, 179, 132, 0.24), 0 42px 95px rgba(57, 32, 12, 0.36);
}

.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.gallery-tile:hover img {
  transform: scale(1.05);
}

.gallery-tile figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 10px;
  z-index: 2;
  color: var(--brown);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.1;
}

.collage-wide {
  grid-column: span 5;
  grid-row: span 4;
}

.collage-tall {
  grid-column: span 3;
  grid-row: span 6;
}

.collage-square {
  grid-column: span 4;
  grid-row: span 5;
}

.gallery-tile:nth-child(1) { --tilt: -4.4deg; --shift-x: -6px; --shift-y: 4px; }
.gallery-tile:nth-child(2) { --tilt: 3.1deg; --shift-x: 5px; --shift-y: -8px; }
.gallery-tile:nth-child(3) { --tilt: -2.6deg; --shift-x: -3px; --shift-y: 9px; }
.gallery-tile:nth-child(4) { --tilt: 4.8deg; --shift-x: 7px; --shift-y: 2px; }
.gallery-tile:nth-child(5) { --tilt: -3.7deg; --shift-x: -8px; --shift-y: -3px; }
.gallery-tile:nth-child(6) { --tilt: 2.2deg; --shift-x: 4px; --shift-y: 10px; }
.gallery-tile:nth-child(7) { --tilt: -5.1deg; --shift-x: -5px; --shift-y: 1px; }
.gallery-tile:nth-child(8) { --tilt: 3.9deg; --shift-x: 8px; --shift-y: -5px; }
.gallery-tile:nth-child(9) { --tilt: -1.9deg; --shift-x: -4px; --shift-y: 7px; }
.gallery-tile:nth-child(10) { --tilt: 2.8deg; --shift-x: 6px; --shift-y: -2px; }

.stats-grid,
.feature-grid,
.buy-steps,
.link-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px;
}

.stat-card,
.feature-card,
.buy-card,
.official-card,
.roadmap-card,
.contract-box,
.disclaimer-card,
.faq-item {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.96), rgba(255, 247, 231, 0.9)),
    radial-gradient(circle at 18% 18%, rgba(255, 209, 90, 0.18), transparent 26%);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(16px);
  filter: var(--drop-card);
  clip-path: polygon(0 14px, 14px 0, calc(100% - 16px) 0, 100% 16px, 100% calc(100% - 14px), calc(100% - 18px) 100%, 16px 100%, 0 calc(100% - 18px));
}

.stat-card {
  padding: 34px 24px;
  text-align: center;
}

.stat-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.4rem);
  line-height: 1;
}

.stat-card span,
.official-card small,
.contract-box small {
  color: var(--muted);
  font-weight: 700;
}

.stat-card small {
  display: block;
  margin-top: 8px;
  color: var(--burnt);
  font-size: 0.92rem;
  font-weight: 800;
}

.links-section {
  padding: 130px 0;
}

.link-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.official-card {
  position: relative;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 14px;
  overflow: hidden;
  padding: 26px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.official-card::after,
.feature-card::after,
.roadmap-card::after,
.buy-card::after {
  content: "";
  position: absolute;
  top: 14px;
  right: 18px;
  z-index: 0;
  width: 56px;
  height: 16px;
  background: rgba(255, 209, 90, 0.36);
  clip-path: polygon(0 20%, 100% 0, 92% 100%, 7% 84%);
  transform: rotate(4deg);
}

.official-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(244, 167, 66, 0.22), transparent 42%),
    linear-gradient(315deg, rgba(27, 138, 143, 0.16), transparent 50%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.official-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.84);
  box-shadow: 0 28px 0 rgba(212, 179, 132, 0.2), 0 44px 105px rgba(244, 167, 66, 0.28);
}

.official-card:hover::before {
  opacity: 1;
}

.official-card > * {
  position: relative;
  z-index: 1;
}

.feature-card > *,
.roadmap-card > *,
.buy-card > *,
.contract-box > *,
.disclaimer-card > * {
  position: relative;
  z-index: 1;
}

.platform-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: var(--ink);
  color: var(--warm-white);
  font-weight: 800;
}

.platform-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.platform-linktree {
  background: #43e660;
}

.platform-instagram {
  background: radial-gradient(circle at 30% 105%, #fdf497 0 18%, #fd5949 42%, #d6249f 62%, #285aeb 100%);
}

.platform-facebook {
  background: #1877f2;
}

.platform-telegram {
  background: #26a5e4;
}

.platform-x {
  background: #000000;
}

.platform-dexscreener {
  background: #101512;
}

.official-card strong {
  font-family: var(--font-display);
  font-size: 1.9rem;
}

.link-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 46px;
  margin-top: 10px;
  border-radius: 999px;
  padding: 12px 18px;
  background: var(--ink);
  color: var(--warm-white);
  box-shadow: 0 14px 28px rgba(20, 17, 13, 0.18);
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.link-button::after {
  content: "";
  width: 8px;
  height: 8px;
  margin-left: 10px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.link-button:hover {
  transform: translateY(-2px);
  background: #241d17;
  box-shadow: 0 18px 34px rgba(20, 17, 13, 0.24);
}

.link-button.is-pending {
  background: rgba(20, 17, 13, 0.08);
  color: var(--muted);
  box-shadow: none;
}

.link-button.is-pending::after {
  display: none;
}

.pending {
  filter: saturate(0.86);
}

.feature-card,
.buy-card,
.roadmap-card {
  padding: 26px;
}

.pumpfun-panel,
.welcome-box {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.86), rgba(95, 203, 136, 0.13)),
    var(--warm-white);
  box-shadow: 0 20px 0 rgba(95, 203, 136, 0.15), 0 34px 88px rgba(57, 32, 12, 0.22);
  overflow: hidden;
}

.pumpfun-panel {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 24px;
  align-items: center;
  margin-bottom: 24px;
  padding: 24px;
}

.pumpfun-panel::before,
.welcome-box::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 8px;
  background: linear-gradient(180deg, #5fcb88, #629393, #1d3934);
}

.pumpfun-logo-wrap {
  display: grid;
  place-items: center;
  width: 94px;
  height: 94px;
  border-radius: 24px;
  background: #1d3934;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16), 0 16px 30px rgba(29, 57, 52, 0.2);
}

.pumpfun-logo-wrap img {
  width: 68px;
  height: 68px;
  object-fit: contain;
}

.pumpfun-panel h3,
.welcome-box h3 {
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
}

.pumpfun-panel p:not(.eyebrow),
.welcome-box p,
.contract-box p {
  margin: 0;
  color: var(--muted);
}

.pumpfun-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 16px;
  border-radius: 999px;
  padding: 12px 18px;
  background: #1d3934;
  color: var(--warm-white);
  box-shadow: 0 14px 28px rgba(29, 57, 52, 0.2);
  font-weight: 800;
}

.pumpfun-cta:hover {
  transform: translateY(-2px);
}

.feature-card span,
.buy-card span,
.roadmap-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 34px;
  margin-bottom: 24px;
  border-radius: 999px;
  background: rgba(244, 167, 66, 0.18);
  color: var(--orange-dark);
  font-weight: 800;
}

.roadmap-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(250px, 1fr));
  gap: 28px;
  overflow-x: auto;
  padding-bottom: 12px;
}

.roadmap-card {
  position: relative;
  min-height: 310px;
  scroll-snap-align: center;
}

.roadmap-card ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.roadmap-card li {
  border-radius: 999px;
  padding: 10px 12px;
  background: rgba(20, 17, 13, 0.06);
  color: var(--muted);
  font-weight: 700;
}

.contract-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 24px;
  padding: 22px;
}

.contract-box strong {
  display: block;
  font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
  overflow-wrap: anywhere;
}

.contract-box p {
  margin-top: 8px;
  font-size: 0.92rem;
}

.dex-chart-panel {
  margin-top: 24px;
  border: 1px solid rgba(255, 209, 90, 0.32);
  border-radius: 18px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(20, 17, 13, 0.96), rgba(42, 31, 21, 0.96)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 14px);
  box-shadow: 0 34px 110px rgba(20, 17, 13, 0.42), 0 14px 34px rgba(255, 209, 90, 0.12);
  overflow: hidden;
}

.dex-chart-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.dex-chart-heading .eyebrow {
  color: var(--gold);
}

.dex-chart-heading h3 {
  margin: 0;
  color: var(--warm-white);
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
}

#dexscreener-embed {
  position: relative;
  width: 100%;
  padding-bottom: 125%;
  overflow: hidden;
  border: 1px solid rgba(255, 253, 248, 0.14);
  border-radius: 12px;
  background: #101010;
}

#dexscreener-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (min-width: 1400px) {
  #dexscreener-embed {
    padding-bottom: 65%;
  }
}

.welcome-box {
  margin-top: 20px;
  padding: 24px 28px;
}

.faq-grid {
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  padding: 0;
  overflow: hidden;
}

.faq-item summary {
  position: relative;
  cursor: pointer;
  padding: 20px 56px 20px 22px;
  font-weight: 800;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(244, 167, 66, 0.18);
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.disclaimer-card {
  max-width: 980px;
  margin-inline: auto;
  padding: 18px 22px;
  color: var(--muted);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.68), rgba(255, 247, 231, 0.52)),
    rgba(255, 253, 248, 0.58);
  border-color: rgba(109, 68, 41, 0.12);
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(109, 68, 41, 0.08);
  backdrop-filter: blur(12px);
  clip-path: none;
  overflow: hidden;
}

.disclaimer-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 2px solid rgba(244, 167, 66, 0.35);
  background: none;
  clip-path: none;
  transform: none;
}

.disclaimer-card::after {
  display: none;
}

.disclaimer-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
}

.disclaimer-label {
  width: fit-content;
  margin: 0;
  border-radius: 999px;
  padding: 5px 10px;
  background: rgba(244, 167, 66, 0.14);
  color: var(--orange-dark);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.disclaimer-card p:not(.disclaimer-label) {
  margin: 0;
  color: rgba(20, 17, 13, 0.62);
  font-size: 0.86rem;
  line-height: 1.55;
}

.support-note {
  padding-top: 4px;
}

.site-footer {
  padding: 70px 0 28px;
  background: var(--ink);
  color: var(--warm-white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
}

.site-footer .brand-mark {
  color: var(--ink);
}

.site-footer small,
.site-footer a,
.copyright {
  color: rgba(255, 253, 248, 0.7);
}

.site-footer h2 {
  margin-bottom: 16px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.site-footer a {
  display: block;
  margin: 9px 0;
}

.site-footer a:hover {
  color: var(--gold);
}

.copyright {
  width: min(1160px, calc(100% - 36px));
  margin: 42px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  transform: translateY(20px);
  opacity: 0;
  max-width: min(360px, calc(100% - 36px));
  border-radius: 999px;
  padding: 14px 18px;
  background: var(--ink);
  color: var(--warm-white);
  box-shadow: 0 20px 45px rgba(20, 17, 13, 0.3);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

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

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

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

.gallery-tile.reveal {
  transform: translate(var(--shift-x, 0), calc(var(--shift-y, 0) + 28px)) rotate(var(--tilt, -1deg));
}

.gallery-tile.reveal.is-visible {
  transform: translate(var(--shift-x, 0), var(--shift-y, 0)) rotate(var(--tilt, -1deg));
}

.gallery-tile.reveal.is-visible:hover {
  transform: translate(0, -6px) rotate(0deg);
}

.delay-1 {
  transition-delay: 0.12s;
}

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

@media (max-width: 1060px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 88px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 26px;
    padding: 14px;
    background: rgba(255, 253, 248, 0.94);
    box-shadow: var(--shadow-soft);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 14px;
  }

  .nav-actions {
    margin-left: auto;
  }

  .about-grid,
  .narrative-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    align-items: start;
  }

  .hero-photo {
    max-width: 620px;
    margin-inline: auto;
  }

  .roadmap-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: visible;
  }

  .masonry-gallery {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-auto-rows: 70px;
  }

  .collage-wide,
  .collage-square {
    grid-column: span 3;
    grid-row: span 4;
  }

  .collage-tall {
    grid-column: span 2;
    grid-row: span 5;
  }

  .stats-grid,
  .feature-grid,
  .buy-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .link-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .content-wrap {
    width: min(100% - 24px, 560px);
  }

  .section-bleed,
  .section-panel {
    padding: 78px 0;
  }

  .site-header {
    inset: 10px 0 auto;
  }

  .nav-shell {
    border-radius: 26px;
    min-height: 64px;
  }

  .nav-actions {
    display: none;
  }

  .brand strong {
    font-size: 0.98rem;
  }

  .hero {
    min-height: auto;
    padding-top: 78px;
    padding-bottom: 34px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: clamp(2.35rem, 10.8vw, 2.82rem);
  }

  h2 {
    font-size: clamp(2.2rem, 12vw, 3.4rem);
  }

  .hero-buttons {
    flex-wrap: nowrap;
  }

  .hero-buttons .btn {
    flex: 1 1 0;
    min-width: 0;
    padding-inline: 10px;
    font-size: 0.9rem;
  }

  .contract-box .btn {
    width: 100%;
  }

  .hero-photo {
    width: min(270px, 78vw);
    transform: none;
  }

  .hero-photo img {
    height: 158px;
    max-height: 158px;
    border-width: 8px;
    border-radius: 28px;
  }

  .hero-photo figcaption {
    display: none;
  }

  .paper-stack {
    min-height: auto;
  }

  .main-polaroid {
    transform: none;
  }

  .note-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 18px;
    transform: none;
  }

  .story-copy {
    border-left: 0;
    padding: 28px 22px;
  }

  .narrative-story {
    padding: 28px 22px;
  }

  .disclaimer-card {
    padding: 16px 18px;
  }

  .pumpfun-panel {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .pumpfun-logo-wrap {
    width: 78px;
    height: 78px;
  }

  .pumpfun-logo-wrap img {
    width: 56px;
    height: 56px;
  }

  .cat-cards,
  .stats-grid,
  .feature-grid,
  .buy-steps,
  .link-card-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cat-card {
    grid-template-columns: 1fr;
  }

  .masonry-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 68px;
    gap: 18px;
  }

  .collage-wide,
  .collage-square {
    grid-column: span 2;
    grid-row: span 4;
  }

  .collage-tall {
    grid-column: span 1;
    grid-row: span 5;
  }

  .gallery-tile {
    transform: rotate(var(--tilt, -1deg));
  }

  .roadmap-track {
    grid-template-columns: 1fr;
    overflow: visible;
  }

  .contract-box {
    align-items: stretch;
    flex-direction: column;
  }

  .dex-chart-heading {
    display: block;
  }

}
