:root {
  --yellow: #f4c400;
  --yellow-deep: #e0b100;
  --blue: #1837ff;
  --red: #d72638;
  --green: #6ea832;
  --green-deep: #4d7d22;
  --black: #101010;
  --cream: #fff8df;
  --white: #ffffff;
  --pink: #f8c7da;
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.18);
  --radius: 24px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--black);
  background: var(--yellow);
  overflow-x: hidden;
}

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

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

.site-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 20% 15%, rgba(255, 255, 255, 0.26), transparent 22%),
    radial-gradient(circle at 85% 18%, rgba(255, 255, 255, 0.16), transparent 18%),
    radial-gradient(circle at 60% 70%, rgba(255, 255, 255, 0.15), transparent 24%),
    linear-gradient(180deg, #f5c600 0%, #efbf00 100%);
}

.grain {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.18;
  background-image:
    radial-gradient(#000 0.7px, transparent 0.7px),
    radial-gradient(#000 0.7px, transparent 0.7px);
  background-position: 0 0, 12px 12px;
  background-size: 24px 24px;
  filter: blur(0.2px);
}

.blob {
  position: absolute;
  border-radius: 999px;
  filter: blur(40px);
  opacity: 0.22;
}

.blob-1 {
  width: 320px;
  height: 320px;
  background: var(--blue);
  top: 90px;
  right: -70px;
}

.blob-2 {
  width: 280px;
  height: 280px;
  background: var(--red);
  bottom: 120px;
  left: -80px;
}

.blob-3 {
  width: 220px;
  height: 220px;
  background: var(--green);
  bottom: 80px;
  right: 16%;
}

.container {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(255, 244, 181, 0.65);
  border-bottom: 1px solid rgba(16, 16, 16, 0.08);
}

.topbar-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: "Baloo 2", cursive;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 16px 0 0 var(--red), 32px 0 0 var(--green);
  margin-right: 36px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.nav a,
.mobile-menu a {
  font-weight: 700;
  position: relative;
}

.nav a::after,
.mobile-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  width: 100%;
  height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav a:hover::after,
.mobile-menu a:hover::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 14px;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--black);
  margin: 5px auto;
  transition: 0.3s ease;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 0 1rem 1rem;
}

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

.hero {
  padding: 4rem 0 3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 2rem;
  align-items: center;
  min-height: calc(100vh - 100px);
}

.eyebrow {
  display: inline-block;
  margin: 0 0 0.9rem;
  padding: 0.45rem 0.9rem;
  border: 2px solid var(--black);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.buy-copy h2 {
  margin: 0;
  font-family: "Baloo 2", cursive;
  line-height: 0.92;
}

.hero h1 {
  font-size: clamp(3.3rem, 9vw, 7.2rem);
  max-width: 8ch;
}

.hero h1 span {
  color: var(--blue);
  text-shadow: 3px 3px 0 rgba(0,0,0,0.12);
}

.hero-text {
  max-width: 62ch;
  margin: 1.2rem 0 0;
  font-size: 1.08rem;
  line-height: 1.7;
}

.hero-actions,
.buy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.6rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  border: 2px solid var(--black);
  font-weight: 800;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
  box-shadow: 0 8px 0 rgba(0, 0, 0, 0.12);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.16);
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
}

.btn-secondary {
  background: var(--cream);
  color: var(--black);
}

.btn-large {
  min-width: 220px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.35rem;
}

.hero-badges span {
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  border: 2px solid rgba(16,16,16,0.08);
  font-weight: 700;
}

.hero-art {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cover-wrap {
  position: relative;
  width: min(100%, 480px);
  perspective: 1200px;
  transform-style: preserve-3d;
}

.cover-image {
  position: relative;
  z-index: 2;
  width: 100%;
  border-radius: 28px;
  border: 4px solid var(--black);
  box-shadow: var(--shadow);
  transform: rotate(-2deg);
  transition: transform 0.18s ease-out;
}

.cover-shadow {
  position: absolute;
  inset: auto 8% -18px 8%;
  height: 40px;
  background: rgba(0,0,0,0.25);
  filter: blur(18px);
  border-radius: 50%;
  z-index: 1;
}

.cover-ring {
  position: absolute;
  border-radius: 999px;
  border: 4px dashed var(--black);
  pointer-events: none;
}

.ring-blue {
  width: 120px;
  height: 120px;
  top: -20px;
  right: -18px;
  border-color: var(--blue);
}

.ring-red {
  width: 86px;
  height: 86px;
  bottom: -8px;
  left: -18px;
  border-color: var(--red);
}

.section {
  padding: 5.5rem 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-heading h2,
.buy-copy h2 {
  font-size: clamp(2.3rem, 5vw, 4rem);
  line-height: 1;
}

.story-grid,
.highlights-grid {
  display: grid;
  gap: 1.25rem;
}

.story-grid {
  grid-template-columns: repeat(3, 1fr);
}

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

.story-card,
.highlight,
.buy-panel {
  position: relative;
  background: rgba(255, 251, 237, 0.7);
  border: 2px solid rgba(16,16,16,0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.story-card,
.highlight {
  padding: 1.4rem;
}

.story-card h3,
.highlight h3 {
  margin-top: 0;
  margin-bottom: 0.6rem;
  font-family: "Baloo 2", cursive;
  font-size: 1.7rem;
  line-height: 1;
}

.story-card p,
.highlight p,
.buy-copy p {
  margin: 0;
  line-height: 1.7;
}

.highlight-icon {
  font-size: 2rem;
  display: inline-block;
  margin-bottom: 0.6rem;
}

.quote-band {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.quote-band .container {
  padding: 1.2rem 1.4rem;
  border-radius: 999px;
  background: var(--blue);
  color: var(--white);
  border: 3px solid var(--black);
  box-shadow: var(--shadow);
  text-align: center;
}

.quote-band p {
  margin: 0;
  font-family: "Baloo 2", cursive;
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.2;
}

.buy-panel {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.4rem;
  padding: 2rem;
  overflow: hidden;
}

.buy-panel::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -60px;
  top: -70px;
  background: rgba(24, 55, 255, 0.16);
  border-radius: 50%;
}

.footer {
  padding: 2rem 0 3rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1rem;
  border-top: 2px dashed rgba(16,16,16,0.2);
  font-weight: 700;
}

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

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

@media (max-width: 980px) {
  .hero-grid,
  .buy-panel,
  .story-grid,
  .highlights-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 2rem;
  }

  .hero-grid {
    min-height: auto;
  }

  .hero-copy {
    order: 2;
  }

  .hero-art {
    order: 1;
  }
}

@media (max-width: 760px) {
  .nav {
    display: none;
  }

  .menu-toggle {
    display: inline-block;
  }

  .hero h1 {
    max-width: 100%;
  }

  .section {
    padding: 4rem 0;
  }

  .quote-band .container {
    border-radius: 28px;
  }

  .footer-inner {
    flex-direction: column;
  }
}

@media (max-width: 540px) {
  .container {
    width: min(calc(100% - 1.2rem), var(--max));
  }

  .btn,
  .btn-large {
    width: 100%;
  }

  .hero-badges {
    flex-direction: column;
  }

  .brand {
    font-size: 1.05rem;
  }

  .brand-dot {
    transform: scale(0.9);
    margin-right: 30px;
  }
}