:root {
  --yellow: #ffe500;
  --yellow-deep: #f5c400;
  --yellow-soft: #fff4a8;
  --yellow-wash: #fff8c4;
  --page: #ffe84a;
  --cream: #fffbe8;
  --brown: #4a2e18;
  --brown-mid: #6b4528;
  --chocolate: #7a4a22;
  --text: #3b2414;
  --muted: #7a5a3a;
  --red: #e31c23;
  --pink: #e91e63;
  --teal: #1a9b8a;
  --purple: #6c3d9a;
  --blue: #1e5aa8;
  --white: #ffffff;
  --shadow: 0 18px 42px rgba(245, 180, 0, 0.28);
  --shadow-soft: 0 10px 28px rgba(90, 50, 10, 0.08);
  --radius: 2.4rem;
  --font-display: "Fredoka", system-ui, sans-serif;
  --font-body: "Nunito", system-ui, sans-serif;
  --header-h: 84px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(ellipse 90% 55% at 8% -10%, #fff8b0 0%, transparent 58%),
    radial-gradient(ellipse 70% 45% at 96% 12%, #ffd24a 0%, transparent 52%),
    radial-gradient(ellipse 80% 50% at 50% 100%, #ffec7a 0%, transparent 60%),
    var(--page);
  line-height: 1.55;
}

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

a { color: var(--chocolate); }

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

.skip-link {
  position: absolute;
  left: 12px;
  top: -40px;
  background: var(--brown);
  color: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  z-index: 100;
}
.skip-link:focus { top: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 229, 0, 0.88);
  backdrop-filter: blur(14px);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand img {
  width: 118px;
  height: auto;
}

.nav-toggle {
  margin-left: auto;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.75);
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
}
.nav-toggle span:not(.sr-only) {
  width: 18px;
  height: 2.5px;
  background: var(--brown);
  border-radius: 99px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
}

.nav-list {
  display: flex;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list > li { position: relative; }

.nav-list > li > a {
  display: block;
  padding: 10px 14px;
  text-decoration: none;
  color: var(--brown);
  font-weight: 800;
  font-size: 0.92rem;
  border-radius: 999px;
}

.nav-list > li > a:hover,
.nav-list > li > a.is-active {
  background: rgba(255, 255, 255, 0.7);
  color: var(--red);
}

.sub-nav {
  display: none;
  position: absolute;
  top: calc(100% - 2px);
  left: 0;
  min-width: 240px;
  background: rgba(255, 252, 230, 0.96);
  border: 0;
  border-radius: 1.6rem 2.2rem 1.8rem 2.4rem;
  padding: 10px;
  list-style: none;
  margin: 0;
  box-shadow: var(--shadow);
  z-index: 20;
}

.has-sub:hover .sub-nav,
.has-sub:focus-within .sub-nav { display: block; }

.sub-nav a {
  display: block;
  padding: 10px 12px;
  text-decoration: none;
  color: var(--brown);
  font-weight: 700;
  border-radius: 999px;
}
.sub-nav a:hover { background: var(--yellow-soft); color: var(--red); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 999px;
  border: 0;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  font-family: inherit;
  box-shadow: 0 10px 22px rgba(90, 40, 10, 0.12);
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}
.btn:hover { transform: translateY(-3px) rotate(-0.5deg); box-shadow: 0 16px 28px rgba(90, 40, 10, 0.16); }
.btn:active { transform: translateY(1px); }

.btn-buy,
.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 12px 24px rgba(227, 28, 35, 0.28);
}
.btn-buy.is-active {
  background: var(--brown);
}

.btn-dark {
  background: var(--brown);
  color: #fff;
}

.btn-light {
  background: #fff;
  color: var(--brown);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.55);
  color: var(--brown);
}

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 18%, #fff8b8 0%, transparent 42%),
    radial-gradient(circle at 12% 78%, #ffd24a 0%, transparent 46%),
    linear-gradient(180deg, #ffe500 0%, #ffd400 100%);
  padding: 56px 0 88px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -30% -15%;
  background: repeating-conic-gradient(from 0deg, rgba(255,255,255,0.22) 0 8deg, transparent 8deg 16deg);
  opacity: 0.28;
  pointer-events: none;
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  left: -4%;
  right: -4%;
  bottom: -2px;
  height: 64px;
  background:
    radial-gradient(120% 100% at 20% 0%, transparent 60%, var(--page) 61%),
    radial-gradient(90% 100% at 70% 0%, transparent 58%, var(--page) 59%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 32px;
  align-items: center;
  z-index: 1;
}

.kicker {
  display: inline-block;
  background: rgba(255, 255, 255, 0.72);
  border: 0;
  border-radius: 999px;
  padding: 7px 16px;
  font-weight: 800;
  font-size: 0.85rem;
  margin-bottom: 12px;
  box-shadow: var(--shadow-soft);
}

.hero h1,
.page-hero h1,
.section-title {
  font-family: var(--font-display);
  line-height: 1.08;
  margin: 0 0 12px;
  letter-spacing: -0.03em;
}

.hero h1 { font-size: clamp(2.2rem, 5vw, 4rem); }

.lede {
  font-size: 1.12rem;
  color: var(--brown-mid);
  max-width: 42ch;
  margin: 0 0 22px;
}

.hero-actions,
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; }

.hero-visual {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-items: end;
}

.hero-visual img {
  width: 100%;
  filter: drop-shadow(0 22px 28px rgba(180, 110, 0, 0.22));
}

.hero-visual img:first-child { transform: rotate(-8deg); }
.hero-visual img:last-child { transform: rotate(8deg) translateY(18px); }

.hero-visual--video {
  display: block;
}
.hero-video {
  display: block;
  width: 100%;
  max-height: 460px;
  object-fit: cover;
  background: #ffe500;
  border-radius: 3rem 3.8rem 2.8rem 3.4rem;
  box-shadow: var(--shadow);
}
.hero-video-play {
  position: absolute;
  left: 50%;
  bottom: 10%;
  transform: translateX(-50%);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  padding: 16px 28px 16px 22px;
  font: inherit;
  font-weight: 800;
  font-size: 1.15rem;
  color: #fff;
  background: var(--red);
  box-shadow: 0 14px 28px rgba(227, 28, 35, 0.32);
  cursor: pointer;
}
.hero-video-play:hover {
  transform: translateX(-50%) translateY(-2px);
}
.hero-video-icon {
  display: block;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}
.hero-video-icon svg { display: block; }

body.video-modal-open { overflow: hidden; }
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 12000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(59, 36, 20, 0.72);
}
.video-modal.is-open { display: flex; }
.video-modal-card {
  width: min(920px, 100%);
  background: var(--cream);
  border-radius: 1.8rem;
  padding: 16px 16px 18px;
  box-shadow: 0 24px 60px rgba(30, 16, 8, 0.35);
}
.video-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.video-modal-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--brown);
}
.video-modal-close {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--brown);
  cursor: pointer;
  flex-shrink: 0;
}
.video-modal-close:hover { background: var(--yellow-deep); }
.video-modal-player {
  display: block;
  width: 100%;
  max-height: min(70vh, 560px);
  border-radius: 1.2rem;
  background: #1a120c;
}

.hero--fun {
  overflow: hidden;
  padding: 8px 0 100px;
  text-align: center;
}
.hero-fun-inner {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 26px;
}
.hero-cast {
  position: absolute;
  inset: 0 0 6%;
  pointer-events: none;
}
.hero-cast--far { z-index: 0; }
.hero-cast--mid { z-index: 2; }
.hero-cast--near { z-index: 4; }
.hero-char {
  position: absolute;
  will-change: transform;
}
.hero-char-2,
.hero-char-5 {
  opacity: 0.72;
  filter: drop-shadow(0 6px 10px rgba(180, 110, 0, 0.12)) blur(0.5px);
}
.hero-char-1 {
  opacity: 0.92;
  filter: drop-shadow(0 12px 16px rgba(180, 110, 0, 0.2));
}
.hero-char-3,
.hero-char-4 {
  opacity: 1;
  filter: drop-shadow(0 22px 28px rgba(90, 40, 10, 0.28));
}
.hero-char-2 {
  left: 18%;
  top: 0;
  width: clamp(70px, 9vw, 118px);
  animation: drift-b 6.4s ease-in-out infinite;
}
.hero-char-5 {
  right: 16%;
  top: 2%;
  width: clamp(82px, 11vw, 136px);
  animation: drift-e 6.8s ease-in-out infinite;
}
.hero-char-1 {
  left: auto;
  right: 8%;
  top: 16%;
  width: clamp(140px, 17vw, 210px);
  animation: drift-a 5.6s ease-in-out infinite;
}
.hero-char-3 {
  left: 0;
  top: 32%;
  width: clamp(200px, 26vw, 320px);
  animation: drift-c 4.9s ease-in-out infinite;
}
.hero-char-4 {
  right: 0;
  top: 62%;
  width: clamp(210px, 27vw, 330px);
  animation: drift-d 5.8s ease-in-out infinite;
}

@keyframes drift-a {
  0%, 100% { transform: translate(0, 0) rotate(-8deg); }
  50% { transform: translate(10px, -12px) rotate(5deg); }
}
@keyframes drift-b {
  0%, 100% { transform: translate(0, 0) rotate(10deg) scale(1); }
  50% { transform: translate(-8px, 8px) rotate(-4deg) scale(1.04); }
}
@keyframes drift-c {
  0%, 100% { transform: translate(0, 0) rotate(5deg); }
  50% { transform: translate(12px, 14px) rotate(-6deg); }
}
@keyframes drift-d {
  0%, 100% { transform: translate(0, 0) rotate(-10deg) scale(1); }
  50% { transform: translate(-10px, -12px) rotate(6deg) scale(1.04); }
}
@keyframes drift-e {
  0%, 100% { transform: translate(0, 0) rotate(7deg); }
  50% { transform: translate(-10px, -8px) rotate(-6deg); }
}

.hero-fun-stage {
  position: relative;
  z-index: 1;
  width: min(520px, 88vw);
  overflow: hidden;
  border-radius: 48% 52% 45% 55% / 52% 46% 54% 48%;
}
.hero-fun-copy {
  position: relative;
  z-index: 5;
}
.hero--fun .hero-video {
  aspect-ratio: 1;
  max-height: none;
  border-radius: 48% 52% 45% 55% / 52% 46% 54% 48%;
  object-fit: cover;
}
.hero-fun-copy h1 {
  font-size: clamp(2.4rem, 7vw, 4.8rem);
  text-transform: uppercase;
  max-width: 12ch;
  margin: 0 auto 22px;
  color: var(--brown);
}
.btn-scroll-down {
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  box-shadow: 0 12px 24px rgba(227, 28, 35, 0.32);
  text-decoration: none;
  animation: scroll-down-bounce 1.6s ease-in-out infinite;
}
.btn-scroll-down:hover { transform: translateY(3px); animation: none; }
@keyframes scroll-down-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}
#lets-fun { scroll-margin-top: calc(var(--header-h) + 8px); }

.home-heading {
  text-align: center;
  margin: 0 auto 30px;
}
.home-heading .section-title {
  font-size: clamp(1.7rem, 4vw, 2.55rem);
  text-transform: uppercase;
  margin: 0;
}
.home-heading .snacks-home-title {
  text-transform: none;
  letter-spacing: -0.03em;
}
.snacks-home { overflow: hidden; }
.snack-aisle {
  position: relative;
  margin-top: 8px;
}
.snack-aisle-track {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: clamp(6px, 1.6vw, 22px);
  min-height: 420px;
  padding: 0 16px 6px;
}
.snack-aisle-item {
  display: grid;
  grid-template-rows: 1fr auto auto;
  width: 18%;
  max-width: 220px;
  min-width: 0;
  text-align: center;
  text-decoration: none;
  color: inherit;
}
.snack-aisle-item.is-near {
  width: 24%;
  max-width: 280px;
  z-index: 2;
}
.snack-aisle-item.is-far { width: 14%; max-width: 170px; }
.snack-aisle-visual {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 220px;
}
.snack-aisle-item.is-far .snack-aisle-visual { align-items: flex-start; padding-top: 8px; }
.snack-aisle-item.is-mid .snack-aisle-visual { align-items: center; }
.snack-aisle-visual::before {
  content: "";
  position: absolute;
  width: 78%;
  aspect-ratio: 1;
  border-radius: 50%;
  bottom: 6%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
  opacity: 0.55;
}
.snack-aisle-item.is-fun .snack-aisle-visual::before { background: #9be8d4; }
.snack-aisle-item.is-stix .snack-aisle-visual::before { background: #ffc1d8; }
.snack-aisle-item.is-puff .snack-aisle-visual::before { background: #f3d48a; }
.snack-aisle-item.is-pop .snack-aisle-visual::before { background: #ffc07a; }
.snack-aisle-item.is-smiley .snack-aisle-visual::before { background: #ffd36b; }
.snack-aisle-visual img {
  position: relative;
  z-index: 1;
  width: 92%;
  filter: drop-shadow(0 18px 22px rgba(90, 40, 10, 0.2));
  transition: transform 0.2s ease;
}
.snack-aisle-item.is-fun img { transform: rotate(-8deg); }
.snack-aisle-item.is-stix img { transform: rotate(-5deg); }
.snack-aisle-item.is-puff img { transform: rotate(3deg); }
.snack-aisle-item.is-pop img { transform: rotate(6deg); }
.snack-aisle-item.is-smiley img { transform: rotate(-6deg); }
.snack-aisle-item:hover img { transform: translateY(-10px) rotate(0deg) scale(1.06); }
.snack-aisle-item h3 {
  font-family: var(--font-display);
  margin: 10px 0 4px;
  font-size: 1.12rem;
}
.snack-aisle-item.is-near h3 { font-size: 1.5rem; }
.snack-aisle-item p {
  margin: 0;
  font-weight: 700;
  color: var(--brown-mid);
  font-size: 0.86rem;
}
.snack-aisle-shelf {
  height: 42px;
  margin: 36px 7% 0;
  border-radius: 50%;
  background:
    radial-gradient(ellipse 70% 90% at 50% 0%, rgba(122, 74, 34, 0.16), transparent 72%);
}
.home-more {
  display: flex;
  justify-content: center;
  margin: 28px 0 0;
}

.play-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.create-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  max-width: 720px;
  margin: 0 auto;
}
.play-tile,
.create-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 188px;
  padding: 22px 16px;
  text-decoration: none;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: var(--shadow);
  transition: transform 0.18s ease;
}
.play-tile span,
.create-tile span {
  font-size: 2.35rem;
  margin-bottom: 10px;
  letter-spacing: 0;
}
.play-tile:hover,
.create-tile:hover { transform: translateY(-8px) rotate(-1deg); }

.play-tile--quiz {
  background: linear-gradient(160deg, #b06bff, #6c3d9a);
  border-radius: 2.8rem 3.4rem 2.4rem 3rem;
}
.play-tile--game {
  background: linear-gradient(160deg, #3ad4b6, #1a9b8a);
  border-radius: 3.4rem 2.6rem 3.2rem 2.4rem;
}
.play-tile--challenge {
  background: linear-gradient(160deg, #ff6b70, #e31c23);
  border-radius: 2.4rem 3.2rem 2.8rem 3.4rem;
}
.create-tile--diy {
  background: linear-gradient(160deg, #ffe500, #f5c400);
  color: var(--brown);
  border-radius: 2.8rem 3.4rem 2.4rem 3rem;
}
.create-tile--draw {
  background: linear-gradient(160deg, #5eb0ff, #1e5aa8);
  border-radius: 3.4rem 2.6rem 3.2rem 2.4rem;
}
.create-hub {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.create-hub-card {
  display: grid;
  gap: 16px;
  text-decoration: none;
  color: inherit;
  background: rgba(255, 255, 255, 0.72);
  border-radius: 2.8rem 3.4rem 2.4rem 3rem;
  padding: 18px;
  box-shadow: var(--shadow);
  transition: transform 0.18s ease;
}
.create-hub-card:nth-child(even) { border-radius: 3.4rem 2.6rem 3.2rem 2.4rem; }
.create-hub-card:hover { transform: translateY(-7px) rotate(-0.4deg); }
.create-hub-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  background: #fff;
  border-radius: 2rem 2.4rem 1.8rem 2.2rem;
  padding: 10px;
}
.create-hub-card--diy img {
  object-fit: cover;
  object-position: center;
  padding: 0;
  background: #f3efe4;
}
.create-hub-card h2 {
  font-family: var(--font-display);
  margin: 0 0 8px;
  font-size: 1.6rem;
}
.create-hub-card p { margin: 0; font-weight: 700; color: var(--brown-mid); }

.diy-hero { padding-bottom: 56px; }
.diy-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: center;
}
.diy-hero .btn { margin-top: 18px; }
.diy-tagline {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2f6b3a;
  margin: 0 0 12px;
}
.diy-hero-photo {
  display: grid;
  place-items: center;
}
.diy-hero-photo img {
  width: min(100%, 380px);
  margin: 0 auto;
  filter: drop-shadow(0 18px 24px rgba(90, 40, 10, 0.18));
}
.diy-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.diy-box {
  background: rgba(255, 251, 232, 0.88);
  border-radius: 2rem 2.4rem 1.8rem 2.2rem;
  padding: 20px 22px;
  box-shadow: var(--shadow-soft);
}
.diy-box h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 0 0 10px;
  color: #2f6b3a;
}
.diy-box p,
.diy-box li { margin: 0; font-weight: 700; color: var(--brown-mid); }
.diy-box ul { margin: 0; padding-left: 1.1rem; }
.diy-box li + li { margin-top: 6px; }
.diy-box--ingat {
  background: #fff3c4;
  border-left: 8px solid #f5c400;
}
.diy-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.diy-steps li {
  position: relative;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.72);
  border-radius: 2rem 2.4rem 1.8rem 2.2rem;
  padding: 14px 14px 18px;
  box-shadow: var(--shadow-soft);
  scroll-margin-top: calc(var(--header-h) + 16px);
}
.diy-steps li:nth-child(even) { border-radius: 2.4rem 1.8rem 2.2rem 2rem; }
.diy-steps img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 1.4rem 1.8rem 1.2rem 1.6rem;
  margin: 0 0 12px;
  background: #f3efe4;
}
.diy-steps li:nth-child(even) img { border-radius: 1.8rem 1.2rem 1.6rem 1.4rem; }
.diy-step-num {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 1;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #2f6b3a;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  box-shadow: 0 6px 14px rgba(47, 107, 58, 0.28);
}
.diy-steps h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin: 0 0 8px;
  color: #2f6b3a;
}
.diy-steps p { margin: 0; font-weight: 700; color: var(--brown-mid); }
#cara,
#tips { scroll-margin-top: calc(var(--header-h) + 12px); }
.diy-tips {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.diy-tips article {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 2rem;
  padding: 20px 18px;
  box-shadow: var(--shadow-soft);
}
.diy-tips h3 {
  font-family: var(--font-display);
  margin: 0 0 8px;
  color: #2f6b3a;
}
.diy-tips p { margin: 0; font-weight: 700; color: var(--brown-mid); }
.diy-tip-ico {
  display: block;
  width: 44px;
  height: 44px;
  margin-bottom: 12px;
  border-radius: 50%;
}
.diy-tip-ico--sun {
  background:
    radial-gradient(circle at 50% 50%, #ffe500 0 12px, transparent 13px),
    conic-gradient(from 20deg, #f5c400, #ffe500, #f5c400);
}
.diy-tip-ico--water {
  background:
    radial-gradient(circle at 50% 62%, #7ec8ff 0 14px, transparent 15px),
    #e8f6ff;
}
.diy-tip-ico--air {
  background:
    radial-gradient(circle at 30% 55%, #7bc98a 0 10px, transparent 11px),
    radial-gradient(circle at 68% 48%, #2f6b3a 0 8px, transparent 9px),
    #e8f8ea;
}
.diy-tip-ico--care {
  background:
    radial-gradient(circle at 50% 55%, #e31c23 0 9px, transparent 10px),
    #ffe0e0;
}
.diy-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 18px;
  align-items: center;
}
.diy-slogan {
  margin: 0;
  padding: 22px 20px;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.4vw, 1.7rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: #2f6b3a;
  border-radius: 2rem 2.6rem 1.8rem 2.4rem;
  box-shadow: var(--shadow-soft);
}

.draw-hero { padding-bottom: 56px; }
.draw-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
}
.draw-hero .btn { margin-top: 18px; }
.draw-tagline {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1e5aa8;
  margin: 0 0 12px;
}
.draw-hero-photo img {
  width: min(100%, 280px);
  margin: 0 auto;
  filter: drop-shadow(0 18px 24px rgba(90, 40, 10, 0.18));
}
.draw-sheet {
  margin: 0;
  padding: 18px;
  background: #fff;
  border-radius: 2.4rem 3rem 2.2rem 2.8rem;
  box-shadow: var(--shadow);
}
.draw-sheet img {
  width: 100%;
  background: #fff;
}
.draw-tips {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.draw-tips article {
  background: rgba(255, 255, 255, 0.72);
  border-radius: 2rem 2.4rem 1.8rem 2.2rem;
  padding: 20px 18px;
  box-shadow: var(--shadow-soft);
}
.draw-tips article:nth-child(even) { border-radius: 2.4rem 1.8rem 2.2rem 2rem; }
.draw-tips h3 {
  font-family: var(--font-display);
  margin: 0 0 8px;
  color: #1e5aa8;
}
.draw-tips p { margin: 0; font-weight: 700; color: var(--brown-mid); }
.coming-soon {
  min-height: calc(100vh - var(--header-h) - 220px);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 72px 20px 96px;
}
.coming-soon h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 8vw, 5.5rem);
  margin: 0;
  letter-spacing: -0.04em;
}

.draw-card-thumb {
  object-fit: contain;
  object-position: center;
  padding: 10px;
  background: #fff !important;
}

@media print {
  .no-print,
  .preloader,
  .site-header,
  .site-footer,
  .skip-link { display: none !important; }
  html, body { background: #fff; }
  .draw-sheet {
    box-shadow: none;
    border-radius: 0;
    padding: 0;
  }
}

.snacks-hero {
  padding-bottom: 72px;
}
.snacks-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 20px;
  align-items: center;
}
.snack-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}
.snack-jump a {
  display: inline-flex;
  align-items: center;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  color: var(--brown);
  text-decoration: none;
  font-weight: 800;
  box-shadow: var(--shadow-soft);
}
.snack-jump a:hover { background: #fff; color: var(--red); }
.snacks-hero-art {
  position: relative;
  min-height: 340px;
}
.snacks-hero-art img {
  position: absolute;
  filter: drop-shadow(0 18px 24px rgba(180, 110, 0, 0.22));
}
.snacks-hero-art img:nth-child(1) {
  width: 38%;
  left: 8%;
  top: 0;
  transform: rotate(-10deg);
}
.snacks-hero-art img:nth-child(2) {
  width: 34%;
  right: 6%;
  top: 6%;
  transform: rotate(12deg);
}
.snacks-hero-art img:nth-child(3) {
  width: 46%;
  left: 28%;
  top: 28%;
  z-index: 2;
  transform: rotate(-4deg);
}
.snacks-hero-art img:nth-child(4) {
  width: 42%;
  right: 2%;
  bottom: 0;
  z-index: 3;
  transform: rotate(8deg);
}

.snacks-aisle .wrap {
  display: grid;
  gap: 22px;
}
.snack-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 28px;
  align-items: center;
  min-height: 340px;
  padding: 22px 28px;
  box-shadow: var(--shadow);
  overflow: hidden;
  scroll-margin-top: calc(var(--header-h) + 16px);
}
.snack-story--flip { direction: rtl; }
.snack-story--flip > * { direction: ltr; }
.snack-story--puff {
  background: linear-gradient(135deg, #fff7c8 0%, #f3d48a 100%);
  border-radius: 3.4rem 4rem 2.8rem 3.6rem;
}
.snack-story--stix {
  background: linear-gradient(135deg, #ffe0ef 0%, #ffc1d8 100%);
  border-radius: 3.8rem 2.8rem 3.4rem 3rem;
}
.snack-story--pop {
  background: linear-gradient(135deg, #ffe7c8 0%, #ffc07a 100%);
  border-radius: 2.8rem 3.6rem 3.2rem 2.6rem;
}
.snack-story--fun {
  background: linear-gradient(135deg, #d9fff4 0%, #9be8d4 100%);
  border-radius: 2.6rem 3.4rem 2.8rem 3.8rem;
  min-height: 280px;
}
.snack-story--smiley {
  background: linear-gradient(135deg, #fff6b8 0%, #ffd36b 100%);
  border-radius: 3.6rem 2.6rem 3.8rem 2.8rem;
}
.snack-story-visual {
  position: relative;
  min-height: 280px;
  display: grid;
  place-items: center;
}
.snack-story-main {
  width: min(78%, 320px);
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 18px 22px rgba(90, 40, 10, 0.18));
  transform: rotate(-6deg);
}
.snack-story--flip .snack-story-main { transform: rotate(7deg); }
.snack-story-side {
  position: absolute;
  width: 42%;
  top: 8%;
  right: 0;
  z-index: 1;
  transform: rotate(14deg);
  filter: drop-shadow(0 12px 16px rgba(90, 40, 10, 0.14));
}
.snack-story--flip .snack-story-side {
  right: auto;
  left: 0;
  transform: rotate(-12deg);
}
.snack-story--pop .snack-story-main {
  width: min(88%, 380px);
  transform: rotate(4deg);
}
.snack-story-copy h2 {
  font-family: var(--font-display);
  margin: 8px 0 10px;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}
.snack-story-copy p {
  margin: 0 0 14px;
  color: var(--brown-mid);
  font-weight: 700;
  max-width: 42ch;
}
.snack-flavors {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
}
.snack-flavors li {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
  font-weight: 800;
}
.snack-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 18px;
}
.snack-thumbs img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 1rem;
  padding: 4px;
  box-shadow: var(--shadow-soft);
}
.snack-thumbs--agents img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
}

.snack-editions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.snack-edition {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 12px;
  align-items: center;
  padding: 18px;
  text-decoration: none;
  color: inherit;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 2.6rem 3.2rem 2.4rem 3rem;
  box-shadow: var(--shadow);
  transition: transform 0.18s ease;
}
.snack-edition:hover { transform: translateY(-6px); }
.snack-edition-art {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 6px;
  align-items: end;
}
.snack-edition-art img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
}
.snack-edition-art--tz { grid-template-columns: 1fr 1fr; }
.snack-edition h3 {
  font-family: var(--font-display);
  margin: 8px 0 6px;
}
.snack-edition p { margin: 0; color: var(--muted); font-weight: 700; }
.snack-edition--tz { border-radius: 3.2rem 2.4rem 3rem 2.6rem; }

.page-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #ffe500 0%, #ffd84a 100%);
  padding: 48px 0 72px;
}
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero p { margin: 0; max-width: 60ch; color: var(--brown-mid); font-weight: 700; }

.section {
  padding: 64px 0;
}

.section-alt {
  background: rgba(255, 255, 255, 0.28);
}
.section-yellow {
  background: rgba(255, 220, 40, 0.45);
}
.section-brown {
  background: var(--brown);
  color: #fff;
}
.section-brown .section-title,
.section-brown p { color: #fff; }
.section-brown .muted { color: #f5e6be; }

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: end;
  margin-bottom: 28px;
}

.muted { color: var(--muted); }

.grid-3,
.grid-4,
.grid-2 {
  display: grid;
  gap: 22px;
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: rgba(255, 255, 255, 0.62);
  border: 0;
  border-radius: 2.6rem 3.4rem 2.4rem 3.1rem;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.grid-2 > .card:nth-child(2n),
.grid-3 > .card:nth-child(2n),
.grid-4 > .card:nth-child(2n),
.flavor-row > .card:nth-child(2n),
.grid-2 > a:nth-child(2n) .card,
.card-link:nth-child(2n) {
  border-radius: 3.3rem 2.2rem 3.1rem 2.5rem;
}
.grid-3 > .card:nth-child(3n),
.grid-4 > .card:nth-child(3n),
.flavor-row > .card:nth-child(3n),
.card-link:nth-child(3n) {
  border-radius: 2.2rem 3.6rem 2.8rem 3.2rem;
}

.card-body { padding: 20px; }
.card h3 {
  font-family: var(--font-display);
  margin: 0 0 8px;
  font-size: 1.25rem;
}
.card p { margin: 0 0 12px; color: var(--muted); }
.card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  background:
    radial-gradient(circle at 50% 40%, #fff 0%, var(--yellow-soft) 78%);
  padding: 12px;
}
.diy-card-thumb {
  object-fit: cover;
  object-position: 86% 8%;
  padding: 0;
  background: #f3efe4;
}

.card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
  transition: transform 0.18s ease;
}
.card-link:hover { transform: translateY(-6px) rotate(-0.4deg); }

.flavor-chip,
.chip {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  font-weight: 800;
  margin: 0 6px 6px 0;
}

.spotlight {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: center;
  background: rgba(255, 255, 255, 0.55);
  border: 0;
  border-radius: 3.4rem 4.2rem 3.2rem 4.6rem;
  box-shadow: var(--shadow);
  padding: 28px;
}
.spotlight img {
  max-height: 420px;
  margin: 0 auto;
  filter: drop-shadow(0 20px 24px rgba(180, 110, 0, 0.2));
}

.store-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.store-card {
  background: rgba(255, 255, 255, 0.6);
  border: 0;
  border-radius: 2.2rem 2.8rem 2rem 2.6rem;
  padding: 20px;
  box-shadow: var(--shadow-soft);
}
.store-card:nth-child(2n) { border-radius: 2.8rem 2rem 2.6rem 2.2rem; }
.store-card h3 { margin: 0 0 6px; font-family: var(--font-display); }
.store-card p { margin: 0; color: var(--muted); }

.agent-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.agent-card {
  text-align: center;
  background: rgba(255, 255, 255, 0.58);
  border: 0;
  border-radius: 2.8rem 2.2rem 3rem 2.4rem;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.agent-card:nth-child(2n) { border-radius: 2.2rem 3rem 2.4rem 2.8rem; }
.agent-card:nth-child(3n) { border-radius: 3.2rem 2.4rem 2.2rem 3rem; }
.agent-card img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
  background: var(--yellow);
}
.agent-card .card-body h3 { font-size: 1.05rem; }
.agent-card .card-body p { font-size: 0.88rem; }

.game-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100%;
}
.game-thumb {
  background: linear-gradient(160deg, #ffe500, #ffc107);
  min-height: 160px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 2rem;
}

.faq .acc-item {
  background: rgba(255, 255, 255, 0.62);
  border: 0;
  border-radius: 1.8rem 2.4rem 1.6rem 2.2rem;
  margin-bottom: 12px;
  box-shadow: var(--shadow-soft);
}
.faq .acc-item:nth-child(2n) { border-radius: 2.4rem 1.6rem 2.2rem 1.8rem; }
.acc-trigger {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  font: inherit;
  font-weight: 800;
  padding: 16px 18px;
  cursor: pointer;
}
.acc-panel {
  display: none;
  padding: 0 18px 16px;
  color: var(--muted);
}
.acc-item.is-open .acc-panel { display: block; }

.form {
  background: rgba(255, 255, 255, 0.7);
  border: 0;
  border-radius: 2.8rem 3.4rem 2.6rem 3.2rem;
  padding: 26px;
  box-shadow: var(--shadow);
}

.field { margin-bottom: 16px; }
.field label {
  display: block;
  font-weight: 800;
  margin-bottom: 6px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 0;
  border-radius: 1.2rem;
  font: inherit;
  background: rgba(255, 248, 220, 0.9);
  box-shadow: inset 0 0 0 2px rgba(245, 196, 0, 0.35);
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  background: #fff;
  box-shadow: inset 0 0 0 2px var(--yellow-deep);
}
.field.is-invalid input,
.field.is-invalid select,
.field.is-invalid textarea,
input.is-invalid,
select.is-invalid,
textarea.is-invalid {
  background: #fff5f5;
  box-shadow: inset 0 0 0 2px var(--red);
}
.check-group {
  display: grid;
  gap: 8px;
}
.check-group label {
  font-weight: 700;
  display: flex;
  gap: 8px;
  align-items: center;
}
.field-error {
  min-height: 1.2em;
  color: var(--red);
  font-size: 0.85rem;
  font-weight: 700;
  margin-top: 4px;
}
.form-success {
  background: #e8f8ee;
  border: 0;
  color: #14532d;
  padding: 12px 16px;
  border-radius: 1.4rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.product-hero {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
  align-items: center;
}
.product-hero img {
  max-height: 480px;
  margin: 0 auto;
  filter: drop-shadow(0 22px 26px rgba(180, 110, 0, 0.22));
}

.flavor-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.flavor-row.six { grid-template-columns: repeat(3, 1fr); }

.site-footer {
  background: linear-gradient(180deg, #6b3f18 0%, #4a2a10 100%);
  color: #f5e6be;
  padding: 56px 0 20px;
  border: 0;
  border-radius: 4.5rem 4.5rem 0 0;
  margin-top: 12px;
}
.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px 28px;
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 28px;
}
.footer-brand p { margin: 12px 0 0; }
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.site-footer h2 {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin: 0 0 10px;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { color: #f5e6be; }
.site-footer a {
  color: #f5e6be;
  text-decoration: none;
  pointer-events: none;
  cursor: default;
}
.footer-bottom {
  max-width: 1120px;
  margin: 0 auto;
  padding: 16px 20px 0;
  border-top: 0;
  font-size: 0.85rem;
}

.note {
  background: rgba(255, 255, 255, 0.55);
  border: 0;
  padding: 14px 18px;
  border-radius: 1.8rem 2.4rem 1.6rem 2.2rem;
  font-weight: 700;
  box-shadow: var(--shadow-soft);
}

.moo-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.moo-cup {
  background: rgba(255, 255, 255, 0.62);
  border: 0;
  border-radius: 3rem 3rem 4.2rem 4.2rem;
  padding: 20px;
  text-align: center;
  box-shadow: var(--shadow);
}
.moo-cup:nth-child(2) { border-radius: 3.4rem 2.8rem 4.6rem 3.8rem; }
.moo-cup svg { width: 100%; max-width: 220px; margin: 0 auto 10px; }

@media (max-width: 1100px) {
  .agent-grid { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 980px) {
  .nav-toggle { display: flex; }
  .site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: rgba(255, 229, 0, 0.96);
    border: 0;
    padding: 12px 16px 20px;
    flex-direction: column;
    align-items: stretch;
  }
  .site-nav.is-open { display: flex; }
  .nav-list { flex-direction: column; }
  .sub-nav {
    position: static;
    display: none;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.45);
    margin: 6px 0 8px;
  }
  .has-sub.is-open .sub-nav { display: block; }
  .btn-buy { width: 100%; }
  .hero-grid,
  .spotlight,
  .product-hero,
  .footer-inner { grid-template-columns: 1fr; }
  .grid-3,
  .store-grid,
  .flavor-row,
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .hero-visual { max-width: 420px; }
  .snacks-hero-grid,
  .snack-editions,
  .snack-story,
  .snack-story--flip,
  .diy-hero-grid,
  .diy-intro-grid,
  .diy-footer-grid,
  .draw-hero-grid { grid-template-columns: 1fr; direction: ltr; }
  .diy-steps,
  .diy-tips,
  .draw-tips { grid-template-columns: 1fr 1fr; }
  .snack-story { min-height: 0; padding: 20px; }
  .snack-story-visual { min-height: 240px; }
  .snacks-hero-art { min-height: 300px; margin-bottom: 8px; }
  .hero-char-2 { width: clamp(64px, 12vw, 100px); left: 16%; top: 0; }
  .hero-char-5 { width: clamp(72px, 13vw, 112px); right: 14%; top: 4%; }
  .hero-char-1 { width: clamp(110px, 20vw, 160px); left: auto; right: 6%; top: 18%; }
  .hero-char-3 { width: clamp(150px, 28vw, 220px); left: 0; top: 32%; }
  .hero-char-4 { width: clamp(160px, 30vw, 230px); right: 0; top: 62%; }
  .play-tiles,
  .create-tiles { grid-template-columns: 1fr 1fr; }
  .snack-aisle-track {
    justify-content: flex-start;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    min-height: 0;
    padding: 8px 20px 28px;
    gap: 20px;
  }
  .snack-aisle-item,
  .snack-aisle-item.is-far,
  .snack-aisle-item.is-mid,
  .snack-aisle-item.is-near {
    width: 46vw;
    min-width: 180px;
    max-width: 240px;
    scroll-snap-align: center;
  }
  .snack-aisle-item.is-far .snack-aisle-visual,
  .snack-aisle-item.is-mid .snack-aisle-visual,
  .snack-aisle-item.is-near .snack-aisle-visual { align-items: flex-end; padding-top: 0; }
  .create-hub { grid-template-columns: 1fr; }
  .play-tile--challenge { grid-column: 1 / -1; }
  .site-footer { border-radius: 3rem 3rem 0 0; }
}

@media (max-width: 640px) {
  .grid-2,
  .grid-3,
  .grid-4,
  .store-grid,
  .flavor-row,
  .agent-grid,
  .footer-cols,
  .moo-visual { grid-template-columns: 1fr; }
  .section { padding: 44px 0; }
  .hero { padding: 32px 0 72px; }
  .play-tiles,
  .create-tiles,
  .create-hub { grid-template-columns: 1fr; }
  .play-tile--challenge { grid-column: auto; }
  .hero-char-2 { width: 56px; left: 12%; top: 0; }
  .hero-char-5 { width: 64px; right: 10%; top: 4%; }
  .hero-char-1 { width: 84px; left: auto; right: 4%; top: 18%; }
  .hero-char-3 { width: 120px; left: 0; top: 32%; }
  .hero-char-4 { width: 128px; right: 0; top: 62%; }
  .hero-cast { inset: 0 0 12%; }
  .page-hero { padding: 36px 0 64px; }
  .snack-edition,
  .snack-edition-art,
  .snack-edition-art--tz { grid-template-columns: 1fr; }
  .snack-thumbs img { width: 50px; height: 50px; }
  .diy-steps,
  .diy-tips,
  .draw-tips { grid-template-columns: 1fr; }
}

/* Preloader */
html.js-preload body > *:not(.preloader) {
  visibility: hidden;
}
html.is-ready body > *:not(.preloader) {
  visibility: visible;
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 30% 20%, #fff8b0 0%, transparent 45%),
    radial-gradient(circle at 80% 70%, #ffd24a 0%, transparent 50%),
    #ffe500;
  transition: opacity 0.55s ease, visibility 0.55s ease;
}
.preloader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.preloader-inner {
  text-align: center;
}
.preloader-puffs {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 18px;
}
.puff {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: block;
  animation: puff-bounce 0.9s ease-in-out infinite;
}
.puff-g { background: radial-gradient(circle at 35% 30%, #c8f07a, #7cb342); animation-delay: 0s; }
.puff-r { background: radial-gradient(circle at 35% 30%, #ff8a80, #e53935); animation-delay: 0.12s; }
.puff-y { background: radial-gradient(circle at 35% 30%, #fff59d, #fbc02d); animation-delay: 0.24s; }
.preloader-brand {
  margin: 0;
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--brown);
  letter-spacing: -0.03em;
}
.preloader-text {
  margin: 6px 0 0;
  font-weight: 800;
  color: var(--brown-mid);
}

@keyframes puff-bounce {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-14px) scale(1.08); }
}

/* Cursor follow */
.cursor-glow,
.cursor-bite,
.cursor-crumb {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 10000;
  will-change: transform;
}
.cursor-glow {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: rgba(255, 229, 0, 0.45);
  box-shadow: 0 0 42px rgba(255, 200, 0, 0.5);
  mix-blend-mode: multiply;
  transition: width 0.2s ease, height 0.2s ease, background 0.2s ease;
}
.cursor-bite {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #fff8e7, #f5e6be);
  box-shadow: 0 6px 16px rgba(90, 40, 10, 0.2);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-content: center;
  justify-items: center;
  gap: 4px 6px;
  padding: 10px 8px 8px;
  transition: transform 0.2s ease, width 0.2s ease, height 0.2s ease;
}
.cursor-eye {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3b2414;
}
.cursor-mouth {
  grid-column: 1 / -1;
  width: 14px;
  height: 7px;
  border: 2.5px solid #3b2414;
  border-top: 0;
  border-radius: 0 0 14px 14px;
}
.cursor-crumb {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #ffd54f;
  opacity: 0.55;
}
.cursor-crumb:nth-child(odd) { background: #ff8a65; }
body.cursor-hover .cursor-glow {
  width: 140px;
  height: 140px;
  background: rgba(255, 229, 0, 0.55);
}
body.cursor-hover .cursor-bite {
  width: 54px;
  height: 54px;
}

.quiz { display: grid; gap: 14px; max-width: 640px; }
.quiz-choices { display: grid; gap: 8px; }
.quiz-choices button {
  text-align: left;
  border: 0;
  border-radius: 999px;
  padding: 12px 16px;
  font: inherit;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.8);
  color: var(--brown);
  cursor: pointer;
}
.quiz-q.is-answered .quiz-choices button { pointer-events: none; }
.quiz-choices button.is-correct { background: #d7f5df; }
.quiz-choices button.is-wrong { background: #ffd6d6; }

@media (prefers-reduced-motion: reduce) {
  .puff { animation: none; }
  .preloader { transition: none; }
  .hero-char-1,
  .hero-char-2,
  .hero-char-3,
  .hero-char-4,
  .hero-char-5 { animation: none; }
}
