:root {
  --pink: #f48fb1;
  --pink-hot: #ef6aa0;
  --pink-deep: #d44e86;
  --pink-soft: #fdeff4;
  --green: #7ea03a;
  --green-deep: #4f6b24;
  --olive: #6b8f3c;
  --cream: #fff7f4;
  --ink: #2b241c;
  --muted: #6e635c;
  --white: #fffdfb;
  --shadow: 6px 6px 0 #2b241c;
  --radius: 28px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Nunito", system-ui, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, #ffe4ef 0, transparent 32%),
    radial-gradient(circle at 88% 12%, #e8f3c8 0, transparent 28%),
    var(--cream);
  line-height: 1.55;
  overflow-x: hidden;
}

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

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

h1, h2, h3, .kicker, .story-title, .brand strong {
  font-family: "Fredoka", "Nunito", sans-serif;
}

.kicker {
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--pink-deep);
}

.section-head {
  text-align: center;
  margin-bottom: 2.2rem;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin: 0.25rem 0 0.4rem;
}

.section-head p {
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--ink);
  border-radius: 999px;
  padding: 0.75rem 1.25rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

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

.btn-buy {
  background: linear-gradient(180deg, #ffd36b, #f5b942);
  color: var(--ink);
}

.btn-copy {
  background: var(--white);
  font-family: inherit;
  font-size: 1rem;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.7rem 4vw;
  background: rgba(255, 247, 244, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 3px solid var(--ink);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-right: auto;
}

.brand img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--ink);
  background: var(--pink-soft);
}

.brand strong {
  display: block;
  font-size: 1.15rem;
}

.brand small {
  color: var(--muted);
  font-weight: 700;
}

.links {
  display: flex;
  gap: 1.25rem;
  font-weight: 800;
}

.links a:hover {
  color: var(--pink-deep);
}

.menu {
  display: none;
  width: 46px;
  height: 46px;
  border: 3px solid var(--ink);
  border-radius: 14px;
  background: var(--white);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.menu span {
  width: 20px;
  height: 3px;
  background: var(--ink);
  display: block;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 4vw 1.4rem;
  background: var(--pink-soft);
  border-bottom: 3px solid var(--ink);
  font-weight: 800;
}

.hero-art {
  position: relative;
  margin: 1.2rem 4vw 0;
  border: 4px solid var(--ink);
  border-radius: 36px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #ffe4ef;
}

.hero-art img {
  width: 100%;
  height: auto;
  max-height: 72vh;
  object-fit: contain;
  background: #fdeff4;
}

.hero-fade {
  position: absolute;
  inset: auto 0 0;
  height: 28%;
  background: linear-gradient(transparent, rgba(255, 247, 244, 0.95));
}

.hero-copy {
  width: min(920px, 92vw);
  margin: -2.5rem auto 0;
  position: relative;
  text-align: center;
  background: var(--white);
  border: 4px solid var(--ink);
  border-radius: var(--radius);
  padding: 1.6rem 1.4rem 1.5rem;
  box-shadow: var(--shadow);
}

.hero-copy h1 {
  font-size: clamp(2.1rem, 6vw, 4.2rem);
  line-height: 1.05;
}

.hero-copy h1 span {
  color: var(--pink-deep);
}

.lead {
  margin: 0.7rem auto 1.2rem;
  max-width: 42rem;
  font-size: 1.15rem;
}

.ca-row,
.buy-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: center;
  align-items: center;
}

.ca-chip {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--pink-soft);
  border: 3px solid var(--ink);
  border-radius: 999px;
  padding: 0.55rem 0.9rem 0.55rem 0.55rem;
  font-weight: 800;
}

.ca-chip span {
  background: var(--green);
  color: white;
  border-radius: 999px;
  padding: 0.15rem 0.55rem;
  font-size: 0.75rem;
}

.ca-chip code {
  font-family: ui-monospace, Consolas, monospace;
  font-size: 0.85rem;
  word-break: break-all;
  max-width: min(44ch, 68vw);
}

.about,
.buy,
.chart,
.socials {
  padding: 5rem 4vw 1rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 1.1rem;
  align-items: stretch;
}

.bio,
.story,
.steps li,
.social-card,
.chart-frame {
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--white);
}

.bio {
  text-align: center;
  padding: 1.2rem 1rem 1.4rem;
}

.bio img {
  width: 100%;
  height: 280px;
  object-fit: contain;
  margin-bottom: 0.8rem;
}

.bio-green {
  background: linear-gradient(180deg, #eef6d6, #fff);
}

.bio-pink {
  background: linear-gradient(180deg, #ffe4ef, #fff);
}

.bio h3 {
  font-size: 1.7rem;
}

.story {
  padding: 1.8rem 1.5rem;
  background: linear-gradient(180deg, #fff, #fff1f6);
}

.story-title {
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
}

.story p + p {
  margin-top: 0.55rem;
}

.punch {
  margin-top: 1.2rem;
  font-size: 1.2rem;
}

.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.steps li {
  padding: 1.3rem 1.1rem 1.4rem;
}

.steps span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--pink-hot);
  color: white;
  border: 3px solid var(--ink);
  font-family: "Fredoka", sans-serif;
  font-weight: 700;
  margin-bottom: 0.7rem;
}

.buy-cta {
  margin-top: 2rem;
}

.chart-frame {
  overflow: hidden;
  height: min(640px, 78vh);
  background: #0d1117;
}

.chart-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.social-card {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.85rem;
  transition: transform 0.15s ease;
}

.social-card:hover {
  transform: translate(-2px, -2px);
}

.social-card img {
  width: 74px;
  height: 74px;
  object-fit: cover;
  border-radius: 18px;
  border: 3px solid var(--ink);
  background: var(--pink-soft);
}

.footer {
  margin: 4rem 4vw 2rem;
  text-align: center;
  padding: 2rem 1rem;
}

.footer img {
  width: 92px;
  height: 92px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--ink);
  margin: 0 auto 0.8rem;
}

.fine {
  margin-top: 0.5rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 1.4rem;
  transform: translateX(-50%) translateY(120%);
  background: var(--green-deep);
  color: white;
  padding: 0.7rem 1.1rem;
  border-radius: 999px;
  border: 3px solid var(--ink);
  font-weight: 800;
  opacity: 0;
  transition: 0.25s ease;
  z-index: 50;
}

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

.flies {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
}

.fly {
  position: absolute;
  width: 8px;
  height: 8px;
  background: #2b241c;
  border-radius: 50%;
  box-shadow: 10px 0 0 #2b241c;
  opacity: 0.35;
  animation: buzz 12s linear infinite;
}

.fly::after {
  content: "";
  position: absolute;
  width: 28px;
  height: 1px;
  border-top: 2px dotted #2b241c;
  left: -16px;
  top: 3px;
}

.fly-a { top: 18%; left: 8%; animation-duration: 16s; }
.fly-b { top: 62%; left: 78%; animation-duration: 13s; }
.fly-c { top: 80%; left: 18%; animation-duration: 18s; }

@keyframes buzz {
  50% { transform: translate(40px, -28px); }
}

@media (max-width: 980px) {
  .about-grid,
  .steps,
  .social-grid {
    grid-template-columns: 1fr;
  }

  .links,
  .nav .btn-buy {
    display: none;
  }

  .menu,
  .mobile-menu.open {
    display: flex;
  }

}
