/* DOBRA — Choose Joy prototype
   Type matched to the concept mockups: Chewy (marker display), Figtree (UI sans),
   Caveat Brush (sticker notes), Zilla Slab (recipe titles only).
   Single light theme by design: the brand world is pastel daylight. */

:root {
  color-scheme: light;
  --ground: #FFFBEF;
  --paper: #FFFFFF;
  --ink: #171538;
  --ink-2: #4E4B6E;
  --ink-3: #8C89A6;
  --line: #EDE5CD;
  --navy: #262467;
  --hi: #FFE45C;
  --doodle: #FF4FA3;
  --pink-btn: #FF8CC1;

  --laugh: #FFD23F; --laugh-t: #FFF3C4;
  --lift: #FF4F7B;  --lift-t: #FFE1E9;
  --fun: #8B5CF6;   --fun-t: #EDE4FF;

  --pop: #8E4FA0;   --pop-t: #F2E7F8;
  --coco: #F7A800;  --coco-t: #FFF1C9;
  --candy: #00A651; --candy-t: #D8F3E3;
  --crisp: #ED1C24; --crisp-t: #FFE2E0;
  --blue: #0077C8;  --blue-t: #DCEEFB;

  --mood: var(--laugh); --mood-t: var(--laugh-t);

  --f-display: "Chewy", "Marker Felt", "Comic Sans MS", system-ui, sans-serif;
  --f-sans: "Figtree", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --f-hand: "Caveat Brush", "Marker Felt", "Chewy", cursive;
  --f-serif: "Zilla Slab", Georgia, "Times New Roman", serif;

  --r-sm: 12px; --r-md: 24px; --r-lg: 40px; --pill: 999px;
  --shadow: 0 1px 0 rgba(23,21,56,.04), 0 14px 34px -16px rgba(23,21,56,.22);
  --shadow-lift: 0 2px 0 rgba(23,21,56,.05), 0 22px 44px -18px rgba(23,21,56,.3);
  --wrap: 1240px;
  --spring: cubic-bezier(.34,1.56,.64,1);
}

[data-mood="laugh"] { --mood: var(--laugh); --mood-t: var(--laugh-t); }
[data-mood="lift"]  { --mood: var(--lift);  --mood-t: var(--lift-t); }
[data-mood="fun"]   { --mood: var(--fun);   --mood-t: var(--fun-t); }

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; background: var(--ground); color: var(--ink);
  font-family: var(--f-sans); font-size: 16px; line-height: 1.55;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; }
button { font: inherit; color: inherit; cursor: pointer; }
:focus-visible { outline: 3px solid var(--doodle); outline-offset: 3px; border-radius: 6px; }
h1, h2, h3, h4 { margin: 0; text-wrap: balance; }
p { margin: 0; }
.wrap { width: min(var(--wrap), 100% - 48px); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ---------- Type roles ---------- */
.display { font-family: var(--f-display); font-weight: 400; text-transform: uppercase; line-height: .9; letter-spacing: .005em; }
.d-xxl { font-size: clamp(64px, 9.4vw, 138px); }
.d-xl  { font-size: clamp(52px, 7vw, 104px); }
.d-lg  { font-size: clamp(40px, 5vw, 72px); }
.d-md  { font-size: clamp(30px, 3.4vw, 46px); }
.d-sm  { font-size: 26px; line-height: .95; }
.heavy { font-family: var(--f-sans); font-weight: 900; letter-spacing: -.035em; line-height: .95; }
.h-xl { font-size: clamp(44px, 5.4vw, 76px); }
.h-lg { font-size: clamp(34px, 4vw, 54px); }
.h-md { font-size: clamp(26px, 2.6vw, 34px); letter-spacing: -.025em; }
.eyebrow { font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-2); }
.lede { font-size: clamp(17px, 1.5vw, 20px); color: var(--ink-2); max-width: 44ch; }
.small { font-size: 14px; color: var(--ink-2); }
.hand { font-family: var(--f-hand); text-transform: uppercase; line-height: .95; color: var(--ink); }
.serif { font-family: var(--f-serif); font-weight: 700; letter-spacing: -.01em; }
.hl { background: linear-gradient(transparent 58%, var(--hi) 58%, var(--hi) 90%, transparent 90%); padding-inline: .06em; }
.underline-doodle { position: relative; display: inline-block; }
.underline-doodle::after {
  content: ""; position: absolute; left: 2%; right: 4%; bottom: -.12em; height: .16em;
  background: var(--doodle); border-radius: 999px; transform: rotate(-1.5deg); opacity: .85;
}
.banner {
  display: inline-block; background: var(--mood); color: var(--ink);
  padding: .18em .5em .12em; border-radius: var(--pill); transform: rotate(-3deg);
  font-family: var(--f-display); text-transform: uppercase; line-height: 1;
}

/* ---------- Buttons & chips ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  border: 0; border-radius: var(--pill); padding: .95em 1.5em; min-height: 48px;
  font-weight: 700; font-size: 14px; letter-spacing: .06em; text-transform: uppercase;
  text-decoration: none; transition: transform .2s var(--spring), box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(.98); }
.btn-ink { background: var(--ink); color: #fff; }
.btn-ink:hover { box-shadow: 0 10px 22px -10px rgba(23,21,56,.6); }
.btn-white { background: var(--paper); color: var(--ink); box-shadow: inset 0 0 0 1.5px rgba(23,21,56,.12); }
.btn-pink { background: var(--pink-btn); color: var(--ink); }
.btn-mood { background: var(--mood); color: var(--ink); }
.btn-sm { min-height: 40px; padding: .7em 1.15em; font-size: 12.5px; }
.btn .arr { width: 1.05em; height: 1.05em; flex: none; }
.btn[disabled] { opacity: .45; cursor: not-allowed; transform: none; }
.iconbtn {
  width: 44px; height: 44px; border-radius: 50%; border: 0; background: var(--paper);
  display: grid; place-items: center; box-shadow: var(--shadow); transition: transform .2s var(--spring);
}
.iconbtn:hover { transform: scale(1.06); }
.iconbtn svg { width: 20px; height: 20px; }
.iconbtn.is-on { background: var(--doodle); color: #fff; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  border: 0; border-radius: var(--pill); padding: .6em 1.1em; font-size: 12.5px; font-weight: 700;
  letter-spacing: .05em; text-transform: uppercase; background: var(--paper); color: var(--ink);
  box-shadow: inset 0 0 0 1.5px rgba(23,21,56,.1); transition: background .15s ease, box-shadow .15s ease;
}
.chip:hover { box-shadow: inset 0 0 0 1.5px rgba(23,21,56,.35); }
.chip.is-on { background: var(--pink-btn); box-shadow: none; }
.chip-mood.is-on { background: var(--mood); }
.tag { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; padding: .45em .8em; border-radius: var(--pill); background: var(--paper); }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 40; background: var(--ground); border-bottom: 1px solid transparent; transition: border-color .2s ease; }
.site-header.is-scrolled { border-bottom-color: var(--line); }
.hdr { display: flex; align-items: center; gap: 28px; height: 78px; }
.logo { display: block; width: 104px; flex: none; }
.logo img { width: 100%; height: auto; }
.nav { display: flex; gap: 26px; margin-inline: auto; }
.nav a { font-size: 12.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; text-decoration: none; padding: 6px 0; position: relative; color: var(--ink-2); }
.nav a:hover { color: var(--ink); }
.nav a.is-active { color: var(--ink); }
.nav a.is-active::after { content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 3px; border-radius: 3px; background: var(--doodle); }
.hdr-actions { display: flex; align-items: center; gap: 10px; }
.acct { position: relative; }
.acct .dot { position: absolute; top: 6px; right: 6px; width: 9px; height: 9px; border-radius: 50%; background: var(--candy); box-shadow: 0 0 0 2px var(--paper); }
.menu-btn { display: none; }
.mnav { display: none; }

/* ---------- Page scaffolding ---------- */
main { min-height: 70vh; }
.page { animation: page-in .38s ease-out both; }
@keyframes page-in { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.section { padding-block: clamp(56px, 7vw, 96px); }
.section-tight { padding-block: 40px; }
.sec-head { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 32px; flex-wrap: wrap; }
.sec-head .lede { margin-top: 12px; }
.panel { border-radius: var(--r-lg); padding: clamp(28px, 4vw, 56px); position: relative; overflow: hidden; }
.back { display: inline-flex; align-items: center; gap: 10px; font-size: 12.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; text-decoration: none; color: var(--ink-2); padding: 8px 0; }
.back:hover { color: var(--ink); }
.back svg { width: 18px; height: 18px; }
.note { position: absolute; font-family: var(--f-hand); text-transform: uppercase; font-size: 24px; line-height: .95; pointer-events: none; max-width: 230px; }
svg.heart { display: inline-block; width: .82em; height: .82em; vertical-align: -.08em; }
.note .heart { width: .8em; height: .8em; vertical-align: -.05em; }
.sticky {
  position: absolute; background: #FFC2DC; padding: 14px 16px; border-radius: 10px; font-family: var(--f-hand);
  text-transform: uppercase; font-size: 24px; line-height: .95; box-shadow: var(--shadow); pointer-events: none; max-width: 260px;
}
.sparks { position: absolute; width: 46px; height: 46px; color: var(--doodle); pointer-events: none; }
.blob { position: absolute; border-radius: 46% 54% 58% 42% / 48% 42% 58% 52%; z-index: 0; }
.float { animation: bob 4.2s ease-in-out infinite; }
.float-2 { animation: bob 5s ease-in-out -1.4s infinite; }
@keyframes bob { 0%, 100% { transform: translateY(0) rotate(-1.5deg); } 50% { transform: translateY(-12px) rotate(1.5deg); } }

/* ---------- Hero (home) ---------- */
.hero { position: relative; padding-top: 28px; padding-bottom: 72px; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 40px; align-items: center; }
.hero h1 { position: relative; margin-top: 10px; }
.hero h1 .ch { display: inline-block; animation: letter-in .7s var(--spring) both; animation-delay: calc(var(--i) * 45ms + 120ms); }
@keyframes letter-in { from { opacity: 0; transform: translateY(28px) rotate(var(--r)) scale(.6); } to { opacity: 1; transform: none; } }
.hero .lede { margin-top: 18px; font-size: 21px; color: var(--ink); }
.hero-q { margin-top: 30px; }
.hero-actions { display: flex; gap: 12px; margin-top: 26px; flex-wrap: wrap; }

.moods { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; position: relative; }
.mood {
  position: relative; border: 0; text-align: center; border-radius: 34px; padding: 26px 16px 22px;
  display: flex; flex-direction: column; align-items: center; gap: 10px; min-height: 300px;
  transition: transform .25s var(--spring), box-shadow .25s ease; text-decoration: none; color: var(--ink);
}
.mood:hover { transform: translateY(-6px) rotate(-.6deg); box-shadow: var(--shadow-lift); }
.mood.is-on { box-shadow: 0 0 0 4px var(--ink), var(--shadow-lift); }
.mood[data-m="laugh"] { background: var(--laugh-t); }
.mood[data-m="lift"] { background: var(--lift-t); }
.mood[data-m="fun"] { background: var(--fun-t); }
.mood .art { width: 120px; height: 120px; }
.mood .name { font-family: var(--f-display); font-size: 30px; line-height: .92; text-transform: uppercase; }
.mood .line { font-size: 15px; color: var(--ink-2); }
.mood .go { margin-top: auto; width: 42px; height: 42px; border-radius: 50%; background: var(--paper); display: grid; place-items: center; }
.mood .go svg { width: 18px; height: 18px; }

/* ---------- Joy cards ---------- */
.cards7 { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
.jcard {
  grid-column: span 3; position: relative; border-radius: 30px; padding: 20px 20px 18px;
  display: flex; flex-direction: column; gap: 8px; min-height: 330px; text-decoration: none; color: var(--ink);
  transition: transform .25s var(--spring), box-shadow .25s ease;
}
.jcard:nth-child(n+5) { grid-column: span 4; }
.jcard:hover { transform: translateY(-5px); box-shadow: var(--shadow-lift); }
.jcard .top { display: flex; gap: 12px; align-items: center; }
.num { flex: none; width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; font-weight: 900; font-size: 15px; color: var(--ink); }
.jcard h3 { font-family: var(--f-display); font-weight: 400; font-size: 25px; line-height: .95; text-transform: uppercase; }
.jcard p { font-size: 14.5px; color: var(--ink-2); max-width: 30ch; }
.jcard .art { width: 150px; height: 130px; margin: auto; }
.jcard .cta { align-self: center; }
.c-pink { background: #FFD9EA; } .c-pink .num { background: #FF7EB6; }
.c-sky { background: #D6ECFF; }  .c-sky .num { background: #7FB8FF; }
.c-mint { background: #D3F4DF; } .c-mint .num { background: #5ED39A; }
.c-lilac { background: #EADFFF; } .c-lilac .num { background: #B79CFF; }
.c-yellow { background: #FFF0B3; } .c-yellow .num { background: #FFD23F; }
.same-cards { display: grid; grid-template-columns: auto 1fr auto; gap: 28px; align-items: center; background: #D9F6E5; border-radius: var(--r-lg); padding: 26px 34px; margin-top: 22px; }

/* ---------- Joy page hero ---------- */
.jhero { position: relative; background: var(--mood-t); border-radius: 0 0 var(--r-lg) var(--r-lg); padding: 20px 0 56px; overflow: hidden; }
.jhero-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: 32px; align-items: center; position: relative; z-index: 1; }
.jhero .mascot { width: min(380px, 100%); margin: auto; }
.mascot svg { width: 100%; height: auto; display: block; }
.jhero .lede { color: var(--ink); margin-top: 20px; }
.mood-switch { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-top: 26px; }
.mood-switch .small { margin-right: 4px; }

/* ---------- Generic grids & tiles ---------- */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.tile { background: var(--paper); border-radius: var(--r-md); padding: 18px; box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 10px; position: relative; }
.tile h3 { font-size: 18px; font-weight: 800; letter-spacing: -.01em; line-height: 1.15; }
.tile .meta { font-size: 13px; color: var(--ink-2); }
.tile .actions { display: flex; gap: 8px; margin-top: auto; flex-wrap: wrap; align-items: center; }
.tile .save { position: absolute; top: 12px; right: 12px; }
.tile .save.iconbtn { width: 38px; height: 38px; }

/* photo slots: honest placeholders that double as the shot list */
.photo {
  position: relative; border-radius: calc(var(--r-md) - 6px); overflow: hidden; aspect-ratio: 4 / 3;
  background: var(--ph, #F3E9FF); display: flex; align-items: flex-end; padding: 14px;
  background-image: repeating-linear-gradient(135deg, rgba(255,255,255,.35) 0 10px, transparent 10px 20px);
}
.photo .brief { font-family: var(--f-hand); font-size: 17px; line-height: 1.05; text-transform: uppercase; background: rgba(255,255,255,.88); border-radius: 10px; padding: 8px 10px; max-width: 92%; }
.photo .cam { position: absolute; top: 12px; left: 12px; display: inline-flex; gap: 6px; align-items: center; font-size: 10.5px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; background: rgba(23,21,56,.78); color: #fff; padding: 5px 9px; border-radius: 999px; }
.photo .cam svg { width: 12px; height: 12px; }
.photo.tall { aspect-ratio: 3 / 4; }
.photo.wide { aspect-ratio: 16 / 9; }

/* poster (films) */
.poster { position: relative; aspect-ratio: 2 / 3; border-radius: 16px; overflow: hidden; padding: 16px; display: flex; flex-direction: column; justify-content: space-between; color: #fff; background: #2a2a3d; }
.poster::before { content: ""; position: absolute; inset: 0; z-index: 1; background: radial-gradient(120% 70% at 20% 0%, rgba(255,255,255,.2), transparent 60%), linear-gradient(transparent 45%, rgba(0,0,0,.55)); }
.poster .scene-wrap { position: absolute; inset: 0; z-index: 0; line-height: 0; }
.poster .scene-wrap svg { width: 100%; height: 100%; display: block; }
.poster > *:not(.scene-wrap) { position: relative; z-index: 2; }
.poster .pt { font-family: var(--f-display); font-size: 30px; line-height: .92; text-transform: uppercase; text-shadow: 0 2px 10px rgba(0,0,0,.4); }
.poster .py { font-size: 12px; font-weight: 800; letter-spacing: .12em; }
.poster.big .pt { font-size: clamp(40px, 5vw, 64px); }
.poster.big { aspect-ratio: auto; min-height: 420px; }

/* playlists */
.pl { border-radius: 26px; padding: 18px; display: flex; flex-direction: column; gap: 10px; min-height: 250px; }
.pl h3 { font-family: var(--f-display); font-weight: 400; font-size: 27px; line-height: .92; text-transform: uppercase; }
.pl .row { display: flex; align-items: center; gap: 8px; margin-top: auto; }
.cov-sq { position: relative; display: block; width: 112px; aspect-ratio: 1 / 1; border-radius: 16px; overflow: hidden; margin: 0 auto; box-shadow: 0 10px 22px rgba(23,21,56,.22); }
.cov-sq.big { width: min(230px, 100%); }
.cov-sq svg { width: 100%; height: 100%; display: block; }
.playoverlay { position: absolute; inset: 0; display: grid; place-items: center; background: linear-gradient(rgba(0,0,0,0) 50%, rgba(0,0,0,.35)); opacity: 0; transition: opacity .2s ease; }
.cov-sq:hover .playoverlay, .cov-sq:focus-within .playoverlay { opacity: 1; }
.cov-sq .play { width: 46px; height: 46px; }
@media (hover: none) { .playoverlay { opacity: 1; background: linear-gradient(rgba(0,0,0,.08), rgba(0,0,0,.32)); } }
.play { width: 42px; height: 42px; border-radius: 50%; border: 0; background: var(--ink); color: #fff; display: grid; place-items: center; flex: none; transition: transform .2s var(--spring); }
.play:hover { transform: scale(1.08); }
.play svg { width: 16px; height: 16px; }
.eq { display: inline-flex; gap: 2px; align-items: flex-end; height: 14px; }
.eq i { width: 3px; background: currentColor; border-radius: 2px; animation: eq .8s ease-in-out infinite; }
.eq i:nth-child(2) { animation-delay: -.3s; } .eq i:nth-child(3) { animation-delay: -.55s; }
@keyframes eq { 0%, 100% { height: 4px; } 50% { height: 14px; } }
.tracklist { list-style: none; margin: 18px 0 0; padding: 0; display: grid; gap: 2px; counter-reset: t; }
.tracklist li { display: grid; grid-template-columns: 28px 1fr auto; gap: 10px; padding: 10px 12px; border-radius: 12px; font-size: 15px; counter-increment: t; }
.tracklist li::before { content: counter(t); font-weight: 800; color: var(--ink-3); font-variant-numeric: tabular-nums; }
.tracklist li:hover { background: rgba(255,255,255,.7); }
.tracklist .by { color: var(--ink-2); font-size: 13.5px; }

/* big joke / share card */
.bigcard { position: relative; max-width: 760px; margin: 0 auto; border-radius: 40px; padding: clamp(28px, 5vw, 56px); text-align: center; box-shadow: var(--shadow-lift); }
.bigcard .q { font-family: var(--f-display); font-size: clamp(34px, 4.4vw, 58px); line-height: 1.02; }
.bigcard .a { font-size: clamp(20px, 2vw, 27px); margin-top: 18px; }
.bigcard .cat { position: absolute; top: 24px; left: 26px; }
.bigcard .fav { position: absolute; top: 20px; right: 20px; }
.bigcard-actions { display: flex; gap: 12px; justify-content: center; margin-top: 30px; flex-wrap: wrap; }
.carousel { display: grid; grid-template-columns: auto 1fr auto; gap: 18px; align-items: center; }
.compl { aspect-ratio: 1 / 1; display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 12px; max-width: 520px; }
.compl .q { font-size: clamp(32px, 3.8vw, 50px); }
.compl .from { font-family: var(--f-hand); font-size: 22px; text-transform: uppercase; }
.dots { display: flex; gap: 6px; justify-content: center; margin-top: 16px; }
.dots i { width: 8px; height: 8px; border-radius: 50%; background: rgba(23,21,56,.18); }
.dots i.on { background: var(--ink); width: 22px; border-radius: 8px; }

/* quiz */
.quiz { display: grid; grid-template-columns: repeat(3, 1fr) auto; gap: 0; background: var(--paper); border-radius: var(--r-lg); box-shadow: var(--shadow); padding: 12px; align-items: stretch; }
.qstep { padding: 14px 18px; border-right: 1.5px dashed var(--line); }
.qstep:nth-child(3) { border-right: 0; }
.qstep .qh { display: flex; gap: 10px; align-items: center; font-weight: 800; font-size: 14.5px; margin-bottom: 12px; }
.qstep .qh .num { width: 28px; height: 28px; font-size: 13px; background: var(--pink-btn); }
.opts { display: flex; gap: 8px; flex-wrap: wrap; }
.opt { border: 0; background: var(--ground); border-radius: 16px; padding: 10px 10px 8px; min-width: 76px; display: flex; flex-direction: column; align-items: center; gap: 4px; font-size: 12.5px; font-weight: 700; box-shadow: inset 0 0 0 1.5px transparent; transition: box-shadow .15s ease, background .15s ease; }
.opt:hover { box-shadow: inset 0 0 0 1.5px rgba(23,21,56,.25); }
.opt.is-on { background: #FFE1EF; box-shadow: inset 0 0 0 2px var(--doodle); }
.opt svg { width: 30px; height: 30px; }
.quiz .submit { display: grid; place-items: center; padding: 12px; }
.match { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .8fr) minmax(0, .8fr); gap: 24px; align-items: center; border-radius: var(--r-lg); padding: clamp(24px, 3.5vw, 44px); margin-top: 22px; background: var(--fam-t, #EFE6FF); position: relative; overflow: hidden; }
.match .pack { width: 100%; max-width: 230px; margin: auto; }
.qc { display: flex; flex-direction: column; gap: 10px; }
.qc-main { background: #F8CB46; color: var(--ink); border-radius: 22px; padding: 16px 20px; text-decoration: none; font-weight: 800; display: flex; justify-content: space-between; align-items: center; gap: 12px; transition: transform .2s var(--spring); }
.qc-main:hover { transform: translateY(-2px); }
.qc-main .pn { font-size: 30px; font-weight: 900; letter-spacing: -.04em; color: #0C831F; }
.qc-main .arr { width: 30px; height: 30px; flex: none; }
.qc-alt { display: flex; gap: 8px; flex-wrap: wrap; }
.qc-alt a { flex: 1; text-align: center; background: var(--paper); border-radius: 14px; padding: 10px; font-weight: 800; font-size: 14px; text-decoration: none; box-shadow: inset 0 0 0 1.5px rgba(23,21,56,.1); }
.qc-alt a:hover { box-shadow: inset 0 0 0 1.5px rgba(23,21,56,.4); }

/* products */
.fam { border-radius: 34px; padding: 22px; display: flex; flex-direction: column; gap: 10px; text-decoration: none; color: var(--ink); min-height: 420px; position: relative; overflow: hidden; transition: transform .25s var(--spring), box-shadow .25s ease; }
.fam:hover { transform: translateY(-5px); box-shadow: var(--shadow-lift); }
.fam .pack { height: 230px; width: auto; margin: 4px auto 0; filter: drop-shadow(0 16px 18px rgba(23,21,56,.18)); }
.fam-shot { display: block; border-radius: 20px; overflow: hidden; aspect-ratio: 1 / 1; box-shadow: 0 10px 24px rgba(23,21,56,.16); }
.fam-shot img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .3s var(--spring); }
.fam:hover .fam-shot img { transform: scale(1.04); }
.fam h3 { font-family: var(--f-display); font-weight: 400; font-size: 34px; line-height: .9; text-transform: uppercase; }
.fam p { font-size: 15px; color: var(--ink-2); }
.fam .foot { display: flex; justify-content: space-between; align-items: center; margin-top: auto; gap: 8px; }
.pdp { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 48px; align-items: center; }
.stage { position: relative; aspect-ratio: 1 / 1; border-radius: 50%; display: grid; place-items: center; }
.stage .pack { height: 78%; width: auto; filter: drop-shadow(0 30px 26px rgba(23,21,56,.25)); animation: spin3d 7s ease-in-out infinite; transform-style: preserve-3d; }
@keyframes spin3d { 0%, 100% { transform: perspective(900px) rotateY(-16deg) rotateZ(-4deg) translateY(0); } 50% { transform: perspective(900px) rotateY(16deg) rotateZ(4deg) translateY(-14px); } }
.stage .orbit { position: absolute; width: 40px; height: 40px; }
.flav { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 18px; }
.flav a { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px 8px 8px; border-radius: 999px; background: var(--paper); text-decoration: none; font-size: 14px; font-weight: 700; box-shadow: inset 0 0 0 1.5px rgba(23,21,56,.1); }
.flav a i { width: 20px; height: 20px; border-radius: 50%; background: var(--c); box-shadow: inset 0 -3px 0 rgba(0,0,0,.12); }
.flav a.is-on { box-shadow: inset 0 0 0 2px var(--ink); }
.facts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.fact { background: var(--paper); border-radius: var(--r-md); padding: 22px; box-shadow: var(--shadow); }
.fact h4 { font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-2); margin-bottom: 8px; }
.fact p { font-size: 16px; }
.meter { display: grid; grid-template-columns: 88px 1fr; gap: 10px; align-items: center; font-size: 13.5px; font-weight: 700; margin-top: 8px; }
.meter b { height: 10px; border-radius: 6px; background: var(--ground); position: relative; overflow: hidden; }
.meter b::after { content: ""; position: absolute; inset: 0 auto 0 0; width: var(--v); background: var(--c, var(--doodle)); border-radius: 6px; }
.spec { display: flex; gap: 22px; flex-wrap: wrap; margin-top: 18px; font-size: 14px; color: var(--ink-2); }
.spec b { color: var(--ink); font-weight: 800; }

/* recipes */
.rcat { border-radius: 28px; padding: 20px; display: flex; flex-direction: column; gap: 8px; text-decoration: none; min-height: 250px; border: 0; text-align: left; color: var(--ink); transition: transform .25s var(--spring); position: relative; }
.rcat:hover { transform: translateY(-4px); }
.rcat h3 { font-family: var(--f-display); font-weight: 400; font-size: 32px; line-height: .9; text-transform: uppercase; }
.rcat.is-on { box-shadow: 0 0 0 3px var(--ink); }
.rcat .go { margin-top: auto; width: 40px; height: 40px; border-radius: 50%; background: var(--paper); display: grid; place-items: center; }
.rcat .go svg { width: 18px; height: 18px; }
.finder { display: grid; grid-template-columns: 1.2fr repeat(3, 1fr) auto; gap: 14px; align-items: end; background: #D9F6E5; border-radius: var(--r-lg); padding: 24px 28px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label, .field .lbl { font-size: 12.5px; font-weight: 700; color: var(--ink-2); }
.field input, .field select, .field textarea {
  font: inherit; font-size: 15px; color: var(--ink); background: var(--paper); border: 1.5px solid rgba(23,21,56,.14);
  border-radius: var(--r-sm); padding: 12px 14px; min-height: 48px; width: 100%;
}
.field textarea { min-height: 110px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--ink); box-shadow: 0 0 0 3px rgba(255,79,163,.25); }
.field.err input, .field.err select { border-color: var(--crisp); }
.field .errmsg { font-size: 12.5px; color: #C0141B; font-weight: 600; }
.rmeta { display: flex; gap: 18px; flex-wrap: wrap; font-size: 14px; color: var(--ink-2); }
.rmeta span { display: inline-flex; align-items: center; gap: 6px; }
.rmeta svg { width: 17px; height: 17px; }
.recipe-body { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 40px; }
.ing { list-style: none; margin: 0; padding: 0; display: grid; gap: 2px; }
.ing li { padding: 11px 0; border-bottom: 1.5px dashed var(--line); display: flex; justify-content: space-between; gap: 12px; }
.ing li.dobra { font-weight: 800; }
.method { list-style: none; margin: 0; padding: 0; display: grid; gap: 16px; counter-reset: s; }
.method li { counter-increment: s; display: grid; grid-template-columns: 44px 1fr; gap: 14px; font-size: 17px; }
.method li::before { content: counter(s); width: 38px; height: 38px; border-radius: 50%; background: var(--hi); display: grid; place-items: center; font-weight: 900; }

/* events */
.tabs { display: flex; gap: 26px; border-bottom: 1.5px solid var(--line); margin-bottom: 24px; flex-wrap: wrap; }
.tabs button { border: 0; background: none; padding: 12px 0; font-weight: 800; font-size: 14px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-3); position: relative; }
.tabs button.is-on { color: var(--ink); }
.tabs button.is-on::after { content: ""; position: absolute; left: 0; right: 0; bottom: -1.5px; height: 3px; background: var(--doodle); border-radius: 3px; }
.cats { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.cat { border: 0; border-radius: 20px; padding: 16px 10px; display: flex; flex-direction: column; align-items: center; gap: 8px; font-weight: 800; font-size: 13px; text-align: center; line-height: 1.15; color: var(--ink); transition: transform .2s var(--spring), box-shadow .2s ease; }
.cat svg { width: 30px; height: 30px; }
.cat:hover { transform: translateY(-3px); }
.cat.is-on { box-shadow: 0 0 0 2.5px var(--ink); }
.date { position: absolute; top: 12px; left: 12px; background: var(--paper); border-radius: 12px; padding: 6px 10px; text-align: center; line-height: 1; box-shadow: var(--shadow); z-index: 1; }
.date b { display: block; font-size: 22px; font-weight: 900; margin: 2px 0; }
.date small { font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.empty { text-align: center; padding: 40px 20px; background: var(--paper); border-radius: var(--r-md); box-shadow: var(--shadow); }

/* partner */
.usecases { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.provide { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.provide .tile { padding: 12px; }
.provide .tile .art { height: 110px; border-radius: 16px; display: grid; place-items: center; }
.provide .tile .art svg { height: 92px; width: auto; }
.provide .tile b { font-size: 15px; text-align: center; }
.form { background: var(--paper); border-radius: var(--r-lg); padding: 28px; box-shadow: var(--shadow); display: grid; grid-template-columns: 1fr 1fr; gap: 14px; align-content: start; }
.form .full { grid-column: 1 / -1; }
.form h3 { font-family: var(--f-display); font-weight: 400; font-size: 32px; text-transform: uppercase; }

/* story */
.story-split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 40px; align-items: center; }
.name-eq { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; font-family: var(--f-display); text-transform: uppercase; font-size: clamp(30px, 3.6vw, 48px); line-height: 1; }
.name-eq .part { background: var(--paper); border-radius: 22px; padding: 16px 20px; box-shadow: var(--shadow); text-align: center; }
.name-eq .part small { display: block; font-family: var(--f-sans); text-transform: none; font-size: 14px; color: var(--ink-2); margin-top: 6px; font-weight: 600; }
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.quote { font-family: var(--f-display); font-size: clamp(30px, 3.4vw, 46px); line-height: 1.02; background: var(--hi); padding: 18px 24px; border-radius: 18px; transform: rotate(-1.2deg); display: inline-block; }

/* my dobra */
.shelf { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

/* ---------- Footer ---------- */
.site-footer { margin-top: 40px; padding: 44px 0 110px; border-top: 1px solid var(--line); }
.ftr { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.ftr .links { display: flex; gap: 22px; flex-wrap: wrap; margin-inline: auto; font-size: 14px; font-weight: 600; }
.ftr .links a { text-decoration: none; color: var(--ink-2); }
.ftr .links a:hover { color: var(--ink); }
.social { display: flex; gap: 10px; align-items: center; font-size: 13px; font-weight: 700; }
.social a { width: 38px; height: 38px; border-radius: 50%; background: var(--paper); display: grid; place-items: center; box-shadow: var(--shadow); }
.social svg { width: 18px; height: 18px; }
.legal { margin-top: 22px; font-size: 13px; color: var(--ink-3); }

/* ---------- Overlays ---------- */
dialog { border: 0; padding: 0; border-radius: 32px; background: var(--ground); color: var(--ink); width: min(560px, 100% - 32px); box-shadow: 0 40px 80px -20px rgba(23,21,56,.45); }
dialog::backdrop { background: rgba(23,21,56,.45); }
dialog[open] { animation: dlg-in .3s var(--spring); }
@keyframes dlg-in { from { opacity: 0; transform: translateY(16px) scale(.97); } to { opacity: 1; transform: none; } }
.dlg { padding: 30px; display: grid; gap: 16px; position: relative; }
.dlg .x { position: absolute; top: 16px; right: 16px; }
.dlg h2 { font-family: var(--f-display); font-weight: 400; font-size: 38px; line-height: .92; text-transform: uppercase; padding-right: 50px; }
.plat-list { display: grid; gap: 10px; }
.plat { display: grid; grid-template-columns: 52px 1fr auto; gap: 14px; align-items: center; padding: 14px 16px; border-radius: 20px; background: var(--paper); text-decoration: none; box-shadow: inset 0 0 0 1.5px rgba(23,21,56,.08); transition: transform .2s var(--spring), box-shadow .2s ease; }
.plat:hover { transform: translateY(-2px); box-shadow: inset 0 0 0 1.5px rgba(23,21,56,.35); }
.plat .mk { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; font-weight: 900; font-size: 13px; letter-spacing: -.02em; }
.plat b { display: block; font-size: 17px; }
.plat small { color: var(--ink-2); font-size: 13px; }
.plat .eta { font-size: 12px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; background: var(--candy-t); border-radius: 999px; padding: 5px 10px; }
.otp { display: flex; gap: 10px; }
.otp input { width: 56px; height: 62px; text-align: center; font-size: 26px; font-weight: 800; border-radius: 16px; border: 1.5px solid rgba(23,21,56,.16); background: var(--paper); }
.check { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--ink-2); }
.check input { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--ink); }
.toast { position: fixed; left: 50%; bottom: 26px; transform: translate(-50%, 140%); background: var(--ink); color: #fff; padding: 14px 20px; border-radius: 18px; font-weight: 600; font-size: 14.5px; z-index: 80; max-width: min(520px, 100% - 32px); box-shadow: var(--shadow-lift); transition: transform .35s var(--spring); }
.toast.show { transform: translate(-50%, 0); }
.mini-player { position: fixed; left: 50%; bottom: 20px; transform: translate(-50%, 160%); z-index: 60; background: var(--ink); color: #fff; border-radius: 22px; padding: 10px 12px 10px 10px; display: flex; gap: 14px; align-items: center; width: min(620px, 100% - 32px); box-shadow: var(--shadow-lift); transition: transform .35s var(--spring); }
.mini-player.show { transform: translate(-50%, 0); }
.mini-player .cov { width: 48px; height: 48px; border-radius: 12px; flex: none; }
.mini-player .t { font-weight: 800; font-size: 15px; line-height: 1.2; }
.mini-player .s { font-size: 12.5px; opacity: .75; }
.mini-player a { margin-left: auto; color: var(--ink); background: #1ED760; border-radius: 999px; padding: 9px 14px; font-size: 12.5px; font-weight: 800; text-decoration: none; white-space: nowrap; }
.mini-player button { background: rgba(255,255,255,.12); border: 0; color: #fff; border-radius: 50%; width: 36px; height: 36px; display: grid; place-items: center; flex: none; }
.mini-player button svg { width: 16px; height: 16px; }
.fab-buy { display: none; }
.proto-chip { position: fixed; left: 16px; bottom: 16px; z-index: 50; border: 0; background: var(--paper); border-radius: 999px; padding: 9px 14px 9px 10px; font-size: 12px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; box-shadow: var(--shadow-lift); display: inline-flex; gap: 8px; align-items: center; }
.proto-chip i { width: 10px; height: 10px; border-radius: 50%; background: var(--laugh); box-shadow: 0 0 0 3px var(--laugh-t); }
.notes-list { margin: 0; padding-left: 20px; display: grid; gap: 8px; font-size: 14.5px; color: var(--ink-2); max-height: 52vh; overflow: auto; }
.notes-list b { color: var(--ink); }

/* uploads & steps */
.steps4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; background: #FFF6CF; border-radius: var(--r-lg); padding: 24px; }
.step { padding: 6px 16px; display: flex; flex-direction: column; gap: 8px; position: relative; opacity: .55; transition: opacity .2s ease; }
.step.is-on, .step.is-done { opacity: 1; }
.step + .step::before { content: ""; position: absolute; left: -10px; top: 20px; width: 16px; height: 16px; border-top: 2px solid var(--ink); border-right: 2px solid var(--ink); transform: rotate(45deg); opacity: .5; }
.step .num { background: var(--doodle); color: #fff; width: 32px; height: 32px; font-size: 14px; }
.step.is-done .num { background: var(--candy); }
.step h4 { font-size: 14px; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; }
.dropzone { border: 2px dashed rgba(23,21,56,.25); border-radius: var(--r-md); padding: 26px; text-align: center; background: var(--paper); display: grid; gap: 12px; place-items: center; }
.dropzone img, .dropzone video { max-height: 220px; border-radius: 16px; }
.rewards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.reward { border: 0; background: var(--paper); border-radius: 20px; padding: 16px; text-align: left; display: grid; gap: 6px; box-shadow: inset 0 0 0 1.5px rgba(23,21,56,.08); }
.reward .brand { height: 64px; border-radius: 12px; display: grid; place-items: center; font-weight: 900; font-size: 20px; letter-spacing: -.02em; color: #fff; }
.reward.is-on { box-shadow: inset 0 0 0 2.5px var(--ink); }
.reward b { font-size: 20px; font-weight: 900; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .nav { gap: 18px; }
  .nav a { font-size: 11.5px; }
  .cards7 .jcard, .cards7 .jcard:nth-child(n+5) { grid-column: span 6; }
  .grid-4, .shelf { grid-template-columns: repeat(2, 1fr); }
  .quiz { grid-template-columns: 1fr; }
  .qstep { border-right: 0; border-bottom: 1.5px dashed var(--line); }
  .match { grid-template-columns: 1fr 1fr; }
  .match > :first-child { grid-column: 1 / -1; }
  .finder { grid-template-columns: 1fr 1fr; }
  .cats, .usecases { grid-template-columns: repeat(3, 1fr); }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .rewards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .nav, .hdr-actions .btn-buy { display: none; }
  .menu-btn { display: grid; }
  .hdr { gap: 12px; height: 68px; }
  .hdr-actions { margin-left: auto; }
  .logo { width: 88px; }
  .mnav { display: none; position: fixed; inset: 68px 0 0; background: var(--ground); z-index: 39; padding: 16px 24px 40px; flex-direction: column; gap: 4px; overflow: auto; }
  .mnav.open { display: flex; }
  .mnav a { font-family: var(--f-display); font-size: 36px; text-transform: uppercase; text-decoration: none; padding: 10px 0; border-bottom: 1.5px dashed var(--line); }
  .fab-buy { display: inline-flex; position: fixed; right: 16px; bottom: 16px; z-index: 55; box-shadow: var(--shadow-lift); }
  .proto-chip { bottom: 20px; }
  .hero-grid, .jhero-grid, .pdp, .story-split, .recipe-body, .grid-2 { grid-template-columns: 1fr; }
  .hero { padding-bottom: 48px; }
  .moods { grid-template-columns: 1fr; }
  .mood { min-height: 0; flex-direction: row; text-align: left; padding: 16px 18px; gap: 14px; }
  .mood .art { width: 78px; height: 78px; flex: none; }
  .mood .go { margin: 0 0 0 auto; flex: none; }
  .mood .name { font-size: 26px; }
  .grid-3, .provide { grid-template-columns: 1fr 1fr; }
  .jhero .mascot { width: 230px; }
  .jhero-grid > .jh-art { order: -1; }
  .same-cards { grid-template-columns: 1fr; text-align: center; }
  .same-cards .btn { justify-self: center; }
  .steps4 { grid-template-columns: 1fr 1fr; gap: 12px; }
  .step + .step::before { display: none; }
  .form { grid-template-columns: 1fr; }
  .facts { grid-template-columns: 1fr; }
  .note, .sticky, .sparks.hide-m { display: none; }
  .hero-actions .btn, .bigcard-actions .btn { flex: 1 1 100%; }
  .carousel { grid-template-columns: 1fr; }
  .carousel > .iconbtn { display: none; }
  .mini-player { bottom: 82px; }
  .toast { bottom: 84px; }
}
@media (max-width: 560px) {
  .wrap { width: calc(100% - 32px); }
  .cards7 .jcard, .cards7 .jcard:nth-child(n+5) { grid-column: span 12; min-height: 0; }
  .grid-4, .grid-3, .provide, .shelf, .match, .finder, .timeline { grid-template-columns: 1fr; }
  .cats, .usecases { grid-template-columns: repeat(2, 1fr); }
  .fam { min-height: 0; }
  .rewards { grid-template-columns: 1fr 1fr; }
  .steps4 { grid-template-columns: 1fr; }
}
/* ---------- Added components ---------- */
.btn.is-saved { background: var(--doodle); color: #fff; box-shadow: none; }
.grid-7 { display: grid; grid-template-columns: repeat(7, 1fr); gap: 12px; }
.legend { border-radius: 22px; padding: 14px 10px; display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center; }
.legend span { width: 72px; height: 64px; display: block; }
.legend b { font-family: var(--f-display); font-weight: 400; font-size: 18px; line-height: 1; text-transform: uppercase; }
.strip { display: grid; grid-template-columns: auto 1fr auto; gap: 28px; align-items: center; padding: 22px 34px; }
.strip .sa { width: 120px; display: block; }
.strip .hand { font-size: clamp(28px, 3vw, 40px); }
.strip .sc { display: grid; gap: 12px; justify-items: start; max-width: 36ch; }
.pack-row { display: flex; justify-content: center; align-items: flex-end; min-height: 260px; position: relative; }
.pack-row > span { width: 120px; margin-inline: -14px; z-index: 1; }
.pack-row > span.big { width: 150px; z-index: 2; }
a:has(> .photo), a:has(> .pack), .tile > a:first-child { text-decoration: none; color: inherit; }
.btn svg:not(.arr), .chip svg { width: 1.15em; height: 1.15em; flex: none; }
.chip { text-decoration: none; display: inline-flex; align-items: center; gap: 6px; }
.opts { display: grid; grid-template-columns: repeat(auto-fit, minmax(64px, 1fr)); }
.opt { min-width: 0; }
.toast, .mini-player { visibility: hidden; transform: translate(-50%, calc(100% + 90px)); transition: transform .35s var(--spring), visibility .35s; }
.toast.show, .mini-player.show { visibility: visible; transform: translate(-50%, 0); }
.hero-grid.even { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
.feature { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); gap: 40px; align-items: center; }
/* Flanking doodle dashes — the short hand-drawn marks beside every mockup character */
.mood .art, .jcard .art, .legend span, .mascot, .fam-shot, .showcase-img-wrap { position: relative; }
.flanks { position: absolute; inset: 0; pointer-events: none; }
.flanks .fk { position: absolute; width: 24px; height: 24px; color: var(--doodle); top: 14%; }
.flanks .fk-l { left: -18%; transform: scaleX(-1) rotate(-6deg); }
.flanks .fk-r { right: -18%; top: 2%; transform: rotate(10deg); }
.jcard .art .fk, .legend span .fk { width: 20px; height: 20px; }
.flanks-big .fk { width: 30px; height: 30px; }
.flanks-big .fk-l { left: -9%; top: 6%; transform: scaleX(-1) rotate(-8deg); }
.flanks-big .fk-r { right: -9%; top: 4%; transform: rotate(12deg); }
.flanks-big .fk-tl { left: 14%; top: -6%; transform: rotate(-18deg); color: var(--crisp); }
.flanks-big .fk-bl { left: -4%; bottom: 10%; top: auto; transform: scaleX(-1) rotate(10deg); }
.ring-doodle { position: absolute; z-index: 8; width: 60px; height: 60px; color: var(--doodle); pointer-events: none; opacity: .9; }

/* Homepage hero showcase — real product cutouts (no photo backdrop) composed straight onto the page, doodles woven in, big and bold */
.showcase { position: relative; min-height: 620px; }
.showcase-blob {
  position: absolute; inset: 0 -2%; border-radius: 42% 58% 63% 37% / 41% 44% 56% 59%; z-index: 0;
  background: radial-gradient(120% 120% at 32% 22%, #FFC9E4, #F5A8DE 55%, #E9A0E8 100%);
}
.showcase-blob-2 { inset: 8% -6% -4% 14%; border-radius: 58% 42% 39% 61% / 55% 60% 40% 45%; transform: rotate(8deg);
  background: radial-gradient(120% 120% at 70% 75%, #FFE9A8, #FFD36B 60%, #FFC24D 100%); }
.sc-item { position: absolute; z-index: 1; height: auto; display: block; filter: drop-shadow(0 18px 22px rgba(23,21,56,.24)); }
.showcase-burst { min-height: 640px; }

/* Every item's exact position, size and rotation is set inline — arranged by hand in the
   Hero Composer tool (composer.html) and pulled from its saved layout into HERO_LAYOUT
   in pages-home.js. These rules only carry what every item of a kind shares. */
.sc-mascot { position: absolute; z-index: 7; }
.showcase-txt { position: absolute; z-index: 7; font-weight: 400; line-height: 1.05; color: var(--ink); max-width: 46%; }

@media (max-width: 860px) { .showcase-burst { min-height: 560px; } }
@media (max-width: 640px) {
  .showcase-burst { min-height: 420px; }
  .showcase-txt { font-size: 14px !important; }
  .ring-doodle { width: 44px !important; height: 44px !important; }
}

/* Streaming-platform badges (Show Me Joy) */
.plats { display: flex; gap: 8px; flex-wrap: wrap; }
.plat-badge { font-size: 11px; padding: 5px 11px; border-radius: 6px; letter-spacing: .01em; line-height: 1; }

/* Notes flanking a carousel (Make Me Laugh, Share The Joy) */
.carousel.flanked { position: relative; }
.flank-note { position: absolute; top: 50%; transform: translateY(-50%); width: 140px; text-align: center; font-size: 18px; line-height: 1.15; }
.flank-note.fn-l { left: 64px; }
.flank-note.fn-r { right: 64px; }
@media (max-width: 1400px) { .flank-note { display: none; } }

.tabs-row { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.small-note { font-size: 19px; line-height: 1.15; color: var(--doodle); }
.table-builder { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 36px; align-items: start; }
.menu-card { background: var(--paper); border-radius: var(--r-md); padding: 24px; box-shadow: var(--shadow); display: grid; gap: 14px; transform: rotate(.6deg); }
.menu-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 4px; }
.menu-list li { display: flex; gap: 14px; align-items: center; padding: 8px 0; border-bottom: 1.5px dashed var(--line); }
.partner-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: 32px; margin-top: 48px; align-items: start; }
@media (max-width: 1080px) { .grid-7 { grid-template-columns: repeat(4, 1fr); } .partner-grid { grid-template-columns: 1fr; } }
@media (max-width: 860px) {
  .hero-grid.even, .feature, .table-builder { grid-template-columns: 1fr; }
  .mood { display: grid; grid-template-columns: 72px 1fr auto; grid-template-rows: auto auto; column-gap: 14px; row-gap: 2px; align-items: center; }
  .mood .art { grid-row: 1 / 3; width: 72px; height: 72px; }
  .mood .name { grid-column: 2; align-self: end; }
  .mood .line { grid-column: 2; align-self: start; }
  .mood .go { grid-column: 3; grid-row: 1 / 3; }
}
@media (max-width: 860px) {
  .strip { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .strip .sc { justify-items: center; }
}
@media (max-width: 560px) {
  .grid-7 { grid-template-columns: repeat(2, 1fr); }
  .pack-row { min-height: 200px; }
  .pack-row > span { width: 84px; margin-inline: -8px; }
  .pack-row > span.big { width: 104px; }
}

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