/* ─── Mochi · marketing landing · styles ─────────────────────────────
   Rebuilt from design_files/landing-sections.jsx (React prototype) into
   zero-dependency static CSS. Design system lifted from screens-bubble.jsx
   (BUBBLE) + screens-mochi.jsx (MOCHI).
   "chunky sticker" look: 2px ink borders + hard offset shadows (no blur),
   pill radii, Fredoka display + DM Sans body. Default accent = coral.
------------------------------------------------------------------------ */

:root {
  --bg:        #FFF4E3;   /* cream butter */
  --bg-alt:    #FFE7C2;   /* peach cream */
  --ink:       #3A2A1F;
  --ink-soft:  rgba(58,42,31,0.62);
  --ink-faint: rgba(58,42,31,0.32);
  --white:     #FFFEFB;
  --line:      rgba(58,42,31,0.18);
  --coral:     #FF8B7A;   /* default accent */
  --mint:      #9FDDB8;
  --sunny:     #FFD66B;
  --sky:       #8FC8E8;
  --grape:     #C7A8E8;
  --bubblegum: #F7A8D0;

  --accent:    var(--coral);   /* single themeable knob; ship coral */

  --head: "Fredoka", "DM Sans", system-ui, -apple-system, sans-serif;
  --body: "DM Sans", "Fredoka", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }

html { overflow-x: hidden; scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  margin: 0; padding: 0;
  font-family: var(--body);
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.45;
}

::selection { background: var(--coral); color: var(--white); }

a { color: inherit; text-decoration: none; transition: opacity 120ms ease; }
a:hover { opacity: 0.7; }

h1, h2, h3 { font-family: var(--head); margin: 0; }
p { margin: 0; }

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

/* ─── layout helpers ─────────────────────────────────────────────── */
.section {
  position: relative;
  padding: clamp(56px, 7vw, 96px) clamp(24px, 5vw, 64px);
}
.section__inner { max-width: 1200px; margin: 0 auto; position: relative; }
.section--cream { background: var(--bg); }
.section--alt   { background: var(--bg-alt); }
.section--ink   { background: var(--ink); color: var(--bg); }
.section--coral { background: var(--coral); color: var(--white); }

.center { text-align: center; }
.block-head { text-align: center; margin-bottom: 60px; }

/* eyebrow label: squiggle · text · squiggle */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 18px; white-space: nowrap;
  font-size: 11px; font-weight: 800; letter-spacing: 1.4px;
  text-transform: uppercase; color: var(--accent);
}
.squig { display: inline-flex; flex-shrink: 0; }

/* section titles */
.title {
  font-size: clamp(40px, 5vw, 56px); font-weight: 800;
  letter-spacing: -2px; line-height: 1; color: var(--ink);
}
.title--hero { font-size: clamp(56px, 7.2vw, 92px); letter-spacing: -3.5px; line-height: 0.92; }
.accent { color: var(--accent); }

/* ─── sticker / pill primitives ──────────────────────────────────── */
.sticker {
  position: relative; display: inline-block;
  border-radius: 18px; padding: 10px 14px;
  background: var(--white); color: var(--ink);
  border: 2px solid var(--ink);
  box-shadow: 3px 3px 0 0 var(--ink);
  font-family: var(--head); font-weight: 600;
}
.pill { border-radius: 999px; }

/* interactive lift / press */
.lift { transition: transform 120ms ease, box-shadow 120ms ease; }
.lift:hover { transform: translate(-1px, -1px); box-shadow: 4px 4px 0 0 var(--ink); }
.lift:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 0 var(--ink); }

/* decorative sparkle / heart absolute placement */
.deco { position: absolute; pointer-events: none; z-index: 1; }

/* ─── 01 · nav ───────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,244,227,0.85);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1.5px solid var(--line);
  padding: 14px clamp(20px, 4vw, 40px);
}
.nav__inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.wordmark {
  font-family: var(--head); font-weight: 800; letter-spacing: -1px; line-height: 1;
  color: var(--ink);
}
.nav .wordmark { font-size: 26px; }
.nav__links { display: flex; align-items: center; gap: 28px; font-size: 13px; font-weight: 700; color: var(--ink-soft); }
.nav__cta {
  background: var(--accent); color: var(--white);
  border: 2px solid var(--ink); box-shadow: 3px 3px 0 0 var(--ink);
  border-radius: 999px; padding: 8px 16px;
  font-family: var(--head); font-weight: 800; font-size: 12px;
}
@media (max-width: 760px) {
  .nav__links { gap: 14px; font-size: 12px; }
  .nav__links .nav-anchor { display: none; }   /* keep wordmark + CTA on phones */
}

/* ─── store button (own sticker badge, not official) ─────────────── */
.storebtn {
  display: inline-flex; align-items: center; justify-content: center; gap: 16px;
  padding: 16px 48px; min-width: 300px;
  border: 2px solid var(--ink); box-shadow: 4px 4px 0 0 var(--ink);
  border-radius: 999px; font-family: var(--head); white-space: nowrap;
  background: var(--ink); color: var(--white);
}
.storebtn--invert { background: var(--bg); color: var(--ink); box-shadow: 4px 4px 0 0 var(--ink); }
.storebtn__sub { font-size: 12px; font-weight: 600; opacity: 0.7; letter-spacing: 0.5px; }
.storebtn__big { font-size: 21px; font-weight: 800; font-family: var(--head); letter-spacing: -0.3px; }
.storebtn__lines { display: flex; flex-direction: column; line-height: 1.05; text-align: left; }

/* ─── 02 · hero ──────────────────────────────────────────────────── */
.hero { padding: clamp(36px, 5vw, 60px) clamp(24px, 5vw, 64px) clamp(48px, 6vw, 80px); }
.hero__grid {
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 60px); align-items: center; min-height: 540px;
}
.hero__sub { font-size: 19px; color: var(--ink-soft); line-height: 1.45; font-weight: 500; margin-top: 28px; max-width: 500px; }
.hero__cta { display: flex; align-items: center; gap: 14px; margin-top: 36px; flex-wrap: wrap; }
.hero__social { display: flex; align-items: center; gap: 14px; margin-top: 24px; }
.avatar-stack { display: flex; align-items: center; }
.avatar-stack > * { border: 2px solid var(--bg); border-radius: 999px; background: var(--bg); }
.avatar-stack > * + * { margin-left: -10px; }
.hero__socialtext { font-size: 12px; font-weight: 600; color: var(--ink-soft); line-height: 1.3; }
.hero__socialtext strong { font-weight: 800; color: var(--ink); display: block; }

.hero__stage { position: relative; height: 580px; display: flex; justify-content: center; align-items: center; }
.hero__blob {
  position: absolute; width: 360px; height: 360px; border-radius: 50%;
  background: var(--accent); opacity: 0.18;
  left: 50%; top: 50%; transform: translate(-50%, -50%) scale(1.4);
}
.hero__phone { position: absolute; z-index: 2; left: 50%; top: 50%; transform: translate(-50%, -50%) rotate(-3deg); }
.hero__phone img {
  width: 300px; height: auto; border-radius: 46px;
  border: 2px solid var(--ink); filter: drop-shadow(8px 12px 0 var(--ink));
}
.hero__chip { position: absolute; z-index: 3; }
.hero__chip--warm { top: 30px; right: 20px; transform: rotate(8deg); font-family: var(--head); font-weight: 800; font-size: 14px; background: var(--sunny); border-radius: 20px; padding: 10px 14px; box-shadow: 4px 4px 0 0 var(--ink); }
.hero__chip--drop { bottom: 50px; left: -10px; transform: rotate(-6deg); display: flex; align-items: center; gap: 8px; border-radius: 20px; padding: 10px 14px; box-shadow: 4px 4px 0 0 var(--ink); font-size: 12px; font-weight: 700; }
.hero__chip--drop .t { font-family: var(--head); font-weight: 800; font-size: 13px; line-height: 1.1; }
.hero__chip--drop .s { font-size: 10px; color: var(--ink-soft); }

@media (max-width: 820px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__stage { height: 480px; margin-top: 12px; }
}

/* ─── 03 · stat strip ────────────────────────────────────────────── */
.statstrip {
  background: var(--ink); color: var(--bg);
  padding: clamp(24px, 4vw, 36px) clamp(24px, 5vw, 64px);
  border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink);
}
.statstrip__inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: clamp(16px, 2.5vw, 30px); align-items: center;
}
.stat { display: flex; align-items: baseline; gap: 14px; }
.stat__n { font-family: var(--head); font-size: clamp(40px, 5vw, 56px); font-weight: 800; color: var(--accent); letter-spacing: -2.5px; line-height: 1; }
.stat__l { font-size: 13px; font-weight: 600; color: rgba(255,244,227,0.72); max-width: 110px; line-height: 1.3; }

/* ─── 04 · why (pillars) ─────────────────────────────────────────── */
.cardgrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.pillar {
  position: relative; overflow: hidden;
  background: var(--white); border-radius: 28px;
  border: 2px solid var(--ink); box-shadow: 5px 5px 0 0 var(--ink);
  padding: 28px 26px;
}
.pillar__glow { position: absolute; top: -30px; right: -30px; width: 180px; height: 180px; border-radius: 50%; opacity: 0.18; }
.pillar__body { position: relative; }
.pillar__tag { margin-top: 16px; color: var(--white); border-radius: 999px; padding: 3px 10px; font-size: 10px; font-weight: 700; box-shadow: 2px 2px 0 0 var(--ink); border: 2px solid var(--ink); display: inline-block; }
.pillar h3 { font-size: 26px; font-weight: 800; letter-spacing: -0.8px; line-height: 1.1; color: var(--ink); margin: 14px 0 10px; }
.pillar p { font-size: 14px; color: var(--ink-soft); line-height: 1.55; font-weight: 500; }

/* ─── 05 · how it works ──────────────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; align-items: start; }
.step { display: flex; flex-direction: column; align-items: stretch; gap: 14px; min-width: 0; }
.step__n { display: flex; align-items: baseline; gap: 6px; }
.step__n b { font-family: var(--head); font-size: 40px; font-weight: 800; color: var(--accent); letter-spacing: -1.5px; line-height: 1; }
.step__txt { min-height: 96px; }
.step__txt h3 { font-size: 22px; font-weight: 800; letter-spacing: -0.6px; line-height: 1.1; color: var(--ink); }
.step__txt p { font-size: 13px; color: var(--ink-soft); line-height: 1.5; font-weight: 500; margin-top: 8px; }
.step__shot {
  width: 100%; max-width: 215px; margin: 6px auto 0; align-self: center;
  aspect-ratio: 1320 / 2868; border-radius: 30px; overflow: hidden;
  border: 2px solid var(--ink); box-shadow: 6px 8px 0 0 var(--ink); background: var(--bg);
}
.step__shot img { width: 100%; height: 100%; object-fit: cover; object-position: top; }

/* ─── 06 · book ──────────────────────────────────────────────────── */
.book__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: clamp(32px, 4vw, 60px); align-items: center; }
.book__title { font-size: clamp(48px, 6vw, 72px); font-weight: 800; letter-spacing: -3px; line-height: 0.95; color: var(--white); }
.book__title .dot { color: var(--sunny); }
.book__lead { font-size: 18px; color: rgba(255,254,251,0.86); line-height: 1.5; font-weight: 500; margin-top: 24px; max-width: 460px; }
.book__feats { display: flex; flex-direction: column; gap: 10px; margin-top: 28px; max-width: 380px; }
.book__feat { display: flex; align-items: flex-start; gap: 12px; }
.book__check { width: 24px; height: 24px; border-radius: 999px; background: var(--sunny); border: 2px solid var(--ink); color: var(--ink); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 12px; flex-shrink: 0; }
.book__feat .t { font-family: var(--head); font-weight: 800; font-size: 15px; color: var(--white); }
.book__feat .d { font-size: 12px; color: rgba(255,254,251,0.7); font-weight: 600; }
.book__ctarow { display: flex; align-items: center; gap: 14px; margin-top: 36px; flex-wrap: wrap; }
.book__price { font-size: 12px; font-weight: 600; color: rgba(255,254,251,0.78); }
.book__price .strike { text-decoration: line-through; }
.book__stage { position: relative; height: 500px; display: flex; align-items: center; justify-content: center; }
.bookmock {
  position: absolute; width: 280px; height: 340px; border-radius: 6px;
  border: 3px solid var(--ink);
  box-shadow: 8px 10px 0 0 var(--ink), inset -8px 0 0 0 rgba(0,0,0,0.08);
  padding: 24px; display: flex; flex-direction: column; justify-content: space-between;
}
.bookmock__kicker { font-size: 11px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; }
.bookmock__year { font-family: var(--head); font-size: 64px; font-weight: 800; color: var(--ink); letter-spacing: -2px; line-height: 0.95; margin-top: 10px; }
.bookmock__cast { display: flex; align-items: flex-end; gap: 6px; }

/* ─── 07 · pricing ───────────────────────────────────────────────── */
.tiers { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.tier {
  position: relative; overflow: hidden;
  background: var(--white); color: var(--ink);
  border-radius: 28px; border: 2px solid var(--ink);
  box-shadow: 5px 5px 0 0 var(--ink); padding: 30px 26px;
}
.tier--dark { background: var(--ink); color: var(--bg); transform: translateY(-12px); }
.tier--soon { opacity: 0.62; filter: saturate(0.45); box-shadow: 3px 3px 0 0 rgba(58,42,31,0.28); transform: none; }
.tier__ribbon {
  position: absolute; top: 16px; right: -34px; transform: rotate(38deg);
  background: var(--coral); color: var(--white);
  font-family: var(--head); font-weight: 800; font-size: 11px; letter-spacing: 1px;
  text-transform: uppercase; padding: 5px 44px; border: 2px solid var(--ink);
}
.tier__tag { display: inline-block; border-radius: 999px; padding: 4px 12px; font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 18px; border: 2px solid var(--ink); box-shadow: 2px 2px 0 0 var(--ink); background: var(--bg-alt); color: var(--ink); }
.tier--dark .tier__tag { background: var(--accent); color: var(--white); }
.tier__name { font-family: var(--head); font-size: 32px; font-weight: 800; letter-spacing: -1px; line-height: 1; }
.tier__pricerow { display: flex; align-items: baseline; gap: 6px; margin-top: 14px; }
.tier__price { font-family: var(--head); font-size: clamp(40px, 5vw, 56px); font-weight: 800; letter-spacing: -2.5px; line-height: 1; color: var(--ink); }
.tier--dark .tier__price { color: var(--accent); }
.tier__sub { font-size: 13px; font-weight: 600; opacity: 0.7; }
.tier__rule { height: 1px; background: var(--line); margin: 22px 0; }
.tier--dark .tier__rule { background: rgba(255,244,227,0.18); }
.tier__feats { display: flex; flex-direction: column; gap: 10px; }
.tier__feat { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; font-weight: 600; line-height: 1.4; }
.tier__feat .ck { color: var(--coral); font-weight: 800; }
.tier--dark .tier__feat .ck { color: var(--accent); }
.tier__cta {
  margin-top: 26px; border-radius: 999px; padding: 12px 18px; text-align: center;
  font-family: var(--head); font-weight: 800; font-size: 14px;
  display: flex; align-items: center; justify-content: center; gap: 7px;
  background: var(--ink); color: var(--bg);
  border: 2px solid var(--ink); box-shadow: 3px 3px 0 0 var(--ink);
}
.tier__cta--soon { background: transparent; color: var(--ink-soft); border: 2px dashed var(--ink-soft); box-shadow: none; cursor: default; }
.pricing__foot { text-align: center; margin-top: 30px; font-size: 12px; color: var(--ink-soft); font-weight: 600; }

/* ─── 08 · testimonials ──────────────────────────────────────────── */
.quotes { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; }
.quote {
  position: relative; background: var(--white); border-radius: 24px;
  border: 2px solid var(--ink); box-shadow: 5px 5px 0 0 var(--ink); padding: 26px 24px;
}
.quote--a { transform: rotate(-1.5deg); }
.quote--b { transform: translateY(-10px) rotate(-1deg); }
.quote--c { transform: rotate(1.5deg); }
.quote__mark { font-family: var(--head); font-size: 64px; font-weight: 800; color: var(--coral); line-height: 0.6; opacity: 0.35; position: absolute; top: 18px; right: 22px; }
.quote p { font-size: 14.5px; color: var(--ink); line-height: 1.55; font-weight: 500; font-style: italic; }
.quote__who { display: flex; align-items: center; gap: 12px; margin-top: 22px; }
.quote__name { font-family: var(--head); font-size: 15px; font-weight: 800; letter-spacing: -0.3px; }
.quote__handle { font-size: 11px; font-weight: 600; color: var(--ink-soft); }

/* ─── 09 · faq ───────────────────────────────────────────────────── */
.faq__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: clamp(32px, 4vw, 60px); align-items: start; }
.faq__title { font-size: clamp(40px, 5vw, 56px); font-weight: 800; letter-spacing: -2px; line-height: 0.95; color: var(--ink); }
.faq__lead { font-size: 15px; color: var(--ink-soft); font-weight: 500; line-height: 1.5; margin-top: 18px; max-width: 280px; }
.faq__list { display: flex; flex-direction: column; gap: 12px; }
.faq__item {
  background: transparent; border-radius: 18px;
  border: 1.5px solid var(--line); padding: 18px 22px; cursor: pointer;
  transition: all 160ms ease;
}
.faq__item[open] { background: var(--white); border-color: var(--ink); box-shadow: 3px 3px 0 0 var(--ink); }
.faq__q { display: flex; align-items: center; justify-content: space-between; gap: 16px; list-style: none; }
.faq__q::-webkit-details-marker { display: none; }
.faq__q .q { font-family: var(--head); font-size: 18px; font-weight: 800; letter-spacing: -0.4px; color: var(--ink); }
.faq__plus {
  width: 28px; height: 28px; border-radius: 999px; background: var(--bg-alt);
  border: 1.5px solid var(--ink); display: flex; align-items: center; justify-content: center;
  color: var(--ink); font-weight: 800; font-size: 16px; flex-shrink: 0;
  transition: transform 200ms ease, background 160ms ease, color 160ms ease;
}
.faq__item[open] .faq__plus { background: var(--accent); color: var(--white); transform: rotate(45deg); }
.faq__a { font-size: 14px; color: var(--ink-soft); line-height: 1.6; font-weight: 500; margin: 14px 0 4px; max-width: 620px; }

/* ─── 10 · final cta ─────────────────────────────────────────────── */
.finalcta { padding: clamp(72px, 9vw, 120px) clamp(24px, 5vw, 64px); overflow: hidden; }
.finalcta__inner { text-align: center; position: relative; z-index: 2; }
.finalcta__mochis { display: flex; justify-content: center; align-items: flex-end; margin-bottom: 36px; }
.finalcta__mochis .m1 { transform: rotate(-10deg) translateY(8px); }
.finalcta__mochis .m2 { transform: translateY(-6px); z-index: 2; margin: 0 -6px; }
.finalcta__mochis .m3 { transform: rotate(10deg) translateY(8px); }
.finalcta__title { font-size: clamp(56px, 7.2vw, 92px); font-weight: 800; letter-spacing: -3.5px; line-height: 0.92; color: var(--bg); }
.finalcta__sub { font-size: 18px; color: rgba(255,244,227,0.72); line-height: 1.5; font-weight: 500; margin: 24px auto 0; max-width: 480px; }
.finalcta__cta { display: flex; justify-content: center; gap: 14px; margin-top: 36px; }

/* ─── 11 · footer ────────────────────────────────────────────────── */
.footer { background: var(--bg-alt); border-top: 2px solid var(--ink); padding: clamp(36px, 5vw, 50px) clamp(24px, 5vw, 64px) 40px; }
.footer__inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 40px; }
.footer__brand { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.footer .wordmark { font-size: 28px; }
.footer__tag { font-size: 13px; color: var(--ink-soft); font-weight: 500; line-height: 1.5; max-width: 320px; }
.footer__dl {
  display: inline-flex; align-items: center; gap: 10px; margin-top: 22px;
  background: var(--ink); border: 2px solid var(--ink); box-shadow: 3px 3px 0 0 var(--ink);
  border-radius: 999px; padding: 11px 20px;
}
.footer__dl span { font-size: 14px; font-weight: 800; color: var(--white); font-family: var(--head); white-space: nowrap; }
.footer__coltitle { font-size: 11px; font-weight: 800; color: var(--coral); letter-spacing: 1.2px; text-transform: uppercase; margin-bottom: 14px; }
.footer__col a { display: block; font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.footer__bar {
  max-width: 1200px; margin: 40px auto 0; padding-top: 24px;
  border-top: 1.5px dashed var(--line);
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 11px; font-weight: 600; color: var(--ink-soft);
}
.footer__social { display: flex; align-items: center; gap: 18px; }

/* ─── reduced motion ─────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
