/* ─── Sandubinha do Mal Landing — Design Tokens ─── */
:root {
  /* Brand palette — warm ninja smoke/dust */
  --navy-deep: #20140a;   /* deep espresso (hero center) */
  --navy: #2c1c0f;        /* dark brown */
  --navy-soft: #442c17;   /* warm brown */
  --lightning: #e0a23a;        /* gold flash */
  --lightning-bright: #f3d9a6; /* light sand */
  --cream: #f6ead2;
  --cream-soft: #fbf3e2;
  --paper: #fff7e8;
  --ink: #221710;
  --ink-soft: #3a2818;
  --duck-yellow: #e8a838; /* SANDUBINHA gold (default accent) */
  --duck-orange: #d27d28;
  --teo-green: #7a9b39;   /* wasabi/avocado green */
  --teo-green-light: #9bbb55;
  --red-tie: #a8392a;     /* DO MAL blood red */
  --red-dark: #7d2018;
  --brown-hat: #5a3a20;
  --brown-soft: #c79a64;
  --smoke: #d7a86a;       /* tan dust cloud */
  --smoke-light: #ecca98;

  /* Accent (tweakable) */
  --accent: var(--duck-yellow);
  --accent-ink: var(--ink);

  /* Type (tweakable) */
  --font-display: "Luckiest Guy", "Bangers", system-ui, sans-serif;
  --font-body: "Nunito", system-ui, sans-serif;

  /* Density (tweakable) */
  --section-pad: 120px;
  --container: 1200px;
  --container-wide: 1400px;
}

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

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  font-size: 18px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  max-width: 100vw;
}
html { overflow-x: clip; }

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

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.container-wide {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 32px;
}

/* Display headings */
.display {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 0.95;
  text-transform: uppercase;
}

.eyebrow {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red-tie);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before, .eyebrow::after {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}
.eyebrow.no-line::before, .eyebrow.no-line::after { display: none; }

/* Sections */
section { padding: var(--section-pad) 0; position: relative; }
section.pad-tight { padding: calc(var(--section-pad) * 0.6) 0; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 36px;
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 3px solid var(--ink);
  border-radius: 999px;
  background: var(--accent);
  color: var(--accent-ink);
  cursor: pointer;
  box-shadow: 0 6px 0 var(--ink);
  transform: translateY(0);
  transition: transform 120ms ease, box-shadow 120ms ease;
  position: relative;
  z-index: 1;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 9px 0 var(--ink);
}
.btn:active {
  transform: translateY(2px);
  box-shadow: 0 3px 0 var(--ink);
}
.btn-large {
  padding: 26px 48px;
  font-size: 26px;
}
.btn-secondary {
  background: transparent;
  color: var(--cream);
  border-color: var(--cream);
  box-shadow: 0 6px 0 rgba(255,255,255,0.18);
}
.btn-secondary:hover { background: rgba(255,255,255,0.08); }

.btn .arrow {
  display: inline-block;
  transition: transform 200ms ease;
}
.btn:hover .arrow { transform: translateX(4px); }

/* Tag chip */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
  background: var(--paper);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ─── HERO ─── */
.hero {
  background: var(--navy-deep);
  color: var(--cream);
  position: relative;
  overflow: hidden;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.hero > .hero-marquee { margin-top: auto; }

.hero-bg {
  position: absolute;
  inset: 0;
  background-color: var(--hero-bg, #e8a135);
}

/* Soft spotlight + gentle edge vignette over the chosen color */
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 60% at 70% 54%, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0) 60%),
    radial-gradient(ellipse 75% 70% at 50% 50%, rgba(0,0,0,0) 55%, rgba(0,0,0,0.22) 100%);
}

/* Smoke swirl layer (replaces lightning) */
.hero-lightning {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.8;
}
.hero-lightning svg { width: 100%; height: 100%; }

.hero-rain {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(4px 4px at 12% 24%, rgba(243,217,166,0.55), transparent 60%),
    radial-gradient(3px 3px at 26% 68%, rgba(236,202,152,0.45), transparent 60%),
    radial-gradient(5px 5px at 42% 32%, rgba(243,217,166,0.5), transparent 60%),
    radial-gradient(3px 3px at 61% 80%, rgba(236,202,152,0.4), transparent 60%),
    radial-gradient(4px 4px at 80% 26%, rgba(243,217,166,0.5), transparent 60%),
    radial-gradient(3px 3px at 92% 64%, rgba(236,202,152,0.4), transparent 60%);
  background-size: 240px 240px;
  pointer-events: none;
  opacity: 0.55;
}

.nav {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 40px;
  color: var(--cream);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav-cronicas-logo {
  height: 72px;
  width: auto;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4));
  transition: transform 200ms ease;
}
.nav-cronicas-logo:hover { transform: rotate(-2deg) scale(1.05); }
.nav-brand .scroll-badge {
  background: var(--brown-soft);
  color: var(--ink);
  padding: 4px 14px;
  border-radius: 4px;
  font-size: 12px;
  letter-spacing: 0.1em;
  position: relative;
  font-family: var(--font-body);
  font-weight: 800;
}
.nav-links {
  display: flex;
  gap: 32px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.nav-links a {
  opacity: 0.7;
  transition: opacity 200ms;
}
.nav-links a:hover { opacity: 1; color: var(--lightning-bright); }

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 40px 40px 60px;
  width: 100%;
}

.hero-text {
  position: relative;
}

.hero-scroll-banner {
  display: inline-block;
  background: var(--brown-soft);
  color: var(--ink-soft);
  font-family: var(--font-body);
  font-weight: 900;
  padding: 6px 22px;
  letter-spacing: 0.05em;
  border-radius: 4px;
  margin-bottom: 24px;
  font-size: 13px;
  text-transform: uppercase;
  position: relative;
  box-shadow: 0 2px 0 rgba(0,0,0,0.2);
}
.hero-scroll-banner::before {
  content: "✦";
  margin-right: 8px;
  color: var(--red-tie);
}

.hero-logo-img {
  margin: 0 0 28px;
  max-width: 720px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 6px 26px rgba(232,168,56,0.45));
}

.hero-sub {
  font-size: 22px;
  line-height: 1.45;
  color: rgba(246,236,213,0.92);
  max-width: 560px;
  margin-bottom: 36px;
  font-weight: 500;
}
.hero-sub strong { color: var(--lightning-bright); font-weight: 800; }

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-bottom: 36px;
}

.hero-microcopy {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 12px 32px;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cream);
  font-weight: 400;
  line-height: 1.1;
}
.hero-microcopy li {
  display: flex;
  align-items: center;
  gap: 12px;
  list-style: none;
}
.hero-microcopy li::before {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(232, 168, 56, 0.6);
}

.hero-character {
  position: relative;
}
.hero-character-stack {
  position: relative;
}
/* Pulse animation triggered when lights toggle — scales BOTH images at once */
@keyframes book-pulse {
  0%   { transform: scale(1); }
  35%  { transform: scale(1.06); }
  100% { transform: scale(1); }
}
.hero-character-stack.is-pulsing {
  animation: book-pulse 480ms cubic-bezier(0.34, 1.32, 0.64, 1);
  transform-origin: center center;
  will-change: transform;
}

/* ─── Flipbook (livro folheando) — replaces the static open-book mockup ─── */
.synopsis-image { position: relative; overflow: visible; }
.sb-book-scale {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}
.sb-book-zoom {
  width: fit-content;
  transform: scale(2.1);
  transform-origin: center;
  transition: transform 500ms ease;
  filter: drop-shadow(0 30px 40px rgba(0,0,0,0.45));
}
.sb-book {
  position: relative;
  width: 18.5rem;
  height: 14rem;
  perspective: 70rem;
  transform-style: preserve-3d;
  overflow: visible;
  /* closed book shows only its right half (the cover), so shift left to center it.
     As it opens, sbSlide animates this back to 0 so the open spread stays centered. */
  transform: translateX(-4.5rem);
  transform-origin: center;
}
.sb-leaf {
  position: absolute;
  transform-origin: 0 50%;
  transform-style: preserve-3d;
  transform: rotateY(0deg);
  border-radius: 0;
}
.sb-leaf.sb-cover { top: .3rem; left: 9.25rem; width: 9rem; height: 13.3rem; }
.sb-leaf.sb-page  { top: .3rem; left: 9.25rem; width: 9rem; height: 13.3rem; }
.sb-face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: inherit;
  overflow: hidden;
  background: #fff;
  box-shadow: inset -5px 0 14px -10px rgba(0,0,0,.4), 0 0 0 1px rgba(0,0,0,.12);
}
.sb-face img { width: 100%; height: 100%; object-fit: contain; display: block; }
.sb-face.sb-back {
  transform: rotateY(180deg);
  background: #fff;
  box-shadow: inset -5px 0 14px -10px rgba(0,0,0,.4), 0 0 0 1px rgba(0,0,0,.12);
}
.sb-book.sb-play .sb-leaf.sb-flip          { animation: sbOpen 3s forwards; }
.sb-book.sb-play .sb-leaf.sb-cover.sb-flip { animation: sbCover 3s forwards; }
.sb-book.sb-play .sb-leaf.sb-page:nth-of-type(1) { animation-delay: .05s; }
.sb-book.sb-play .sb-leaf.sb-page:nth-of-type(2) { animation-delay: .33s; }
.sb-book.sb-play .sb-leaf.sb-page:nth-of-type(3) { animation-delay: .66s; }
.sb-book.sb-play .sb-leaf.sb-page:nth-of-type(4) { animation: sbOpen150 3s forwards; animation-delay: .99s; }
.sb-book.sb-play .sb-leaf.sb-page:nth-of-type(5) { animation: sbOpen30 3s forwards;  animation-delay: 1.2s; }
.sb-book.sb-play .sb-leaf.sb-page:nth-of-type(6) { animation: sbOpen55 3s forwards;  animation-delay: 1.25s; }
/* slide from closed-centered to open-centered, tracking the opening */
.sb-book.sb-play { animation: sbSlide 3s cubic-bezier(.33,0,.2,1) forwards; }
@keyframes sbSlide { from { transform: translateX(-4.5rem); } to { transform: translateX(0); } }
@keyframes sbOpen    { 30% { z-index: 999; } 100% { transform: rotateY(-180deg); z-index: 999; } }
@keyframes sbCover   { 30% { z-index: 999; } 100% { transform: rotateY(-180deg); z-index: 1; } }
@keyframes sbOpen150 { 30% { z-index: 999; } 100% { transform: rotateY(-150deg); z-index: 999; } }
@keyframes sbOpen55  { 30% { z-index: 999; } 100% { transform: rotateY(-55deg);  z-index: 999; } }
@keyframes sbOpen30  { 50% { z-index: 999; } 100% { transform: rotateY(-30deg);  z-index: 999; } }
@media (prefers-reduced-motion: reduce) {
  .sb-book.sb-play,
  .sb-book.sb-play .sb-leaf { animation-duration: .01s !important; }
}
.hero-character-img {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  display: block;
  filter: drop-shadow(0 36px 56px rgba(0,0,0,0.6)) drop-shadow(0 8px 24px rgba(232,168,56,0.4));
  transform: rotate(-3deg);
  transition: transform 400ms ease, opacity 700ms ease;
}
.hero-character:hover .hero-character-img { transform: rotate(0deg) scale(1.03); }

/* Lights on/off image crossfade — both images must occupy identical position */
.hero-img-lit { position: relative; z-index: 1; opacity: 1; }
.hero-img-dark {
  position: absolute;
  top: 3px;
  left: 3px;
  margin: 0 !important;
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  filter: drop-shadow(0 30px 50px rgba(0,0,0,0.7)) drop-shadow(0 0 60px rgba(255,235,160,0.45));
}
body.lights-off .hero-img-lit { opacity: 0; }
body.lights-off .hero-img-dark { opacity: 1; }

.hero-character-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle, rgba(232,168,56,0.22) 0%, transparent 62%);
  z-index: -1;
  filter: blur(50px);
  transition: background 700ms ease;
}
body.lights-off .hero-character-glow {
  background: radial-gradient(circle, rgba(255,230,150,0.55) 0%, rgba(224,162,58,0.18) 40%, transparent 70%);
}
@keyframes pulse-glow {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 0.9; transform: scale(1.05); }
}

/* 3D rotating book (replaces static hero book image) */
.hero-book3d-wrap {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  height: clamp(620px, 54vw, 720px);
  padding-bottom: 80px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.livro-rotativo.hero-book3d {
  --lr-w: 372px;
  --lr-h: 558px;
  --lr-d: 32px;
  --lr-front: url(sdb-assets/livro3d-frente.jpg);
  --lr-back:  url(sdb-assets/livro3d-fundo.jpg);
  --lr-spine: url(sdb-assets/livro3d-lateral.jpg);
  --lr-pages: #f4ead6;
  --lr-perspective: 1700px;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero-book3d .lr-front,
.hero-book3d .lr-back {
  border-radius: 4px;
}
.hero-book3d-shadow {
  position: absolute;
  left: 50%;
  bottom: 24px;
  width: 320px;
  height: 48px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0) 70%);
  filter: blur(7px);
  z-index: 0;
  pointer-events: none;
}
body.lights-off .hero-book3d-shadow {
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 70%);
}

/* Sticker overlays around character */
.hero-sticker {
  position: absolute;
  font-family: var(--font-display);
  background: var(--accent);
  color: var(--ink);
  border: 3px solid var(--ink);
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 18px;
  letter-spacing: 0.04em;
  box-shadow: 4px 4px 0 var(--ink);
  text-transform: uppercase;
  z-index: 3;
}
.hero-sticker-1 {
  top: 2%;
  left: -10px;
  transform: rotate(-8deg);
  background: var(--red-tie);
  color: var(--cream);
}
.hero-sticker-2 {
  bottom: 4%;
  right: 10px;
  transform: rotate(6deg);
}

/* Hero bottom strip — scrolling marquee */
.hero-marquee {
  position: relative;
  z-index: 2;
  background: var(--ink);
  color: var(--cream);
  padding: 18px 0;
  border-top: 3px solid var(--ink);
  overflow: hidden;
  white-space: nowrap;
}
.hero-marquee-track {
  display: inline-flex;
  gap: 48px;
  animation: marquee 30s linear infinite;
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.12em;
}
.hero-marquee-track span { display: inline-flex; align-items: center; gap: 48px; }
.hero-marquee-track .dot { color: var(--red-tie); }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Hero with lights off */
body.lights-off .hero-bg {
  background:
    radial-gradient(ellipse 60% 50% at 50% 40%, rgba(224,162,58,0.15) 0%, rgba(0,0,0,0) 60%),
    linear-gradient(180deg, #000000 0%, #030814 60%, #000000 100%);
}
body.lights-off .hero-character-img.hero-img-lit {
  /* lit version stays hidden via opacity; no filter needed */
}
body.lights-off .hero-logo-img {
  filter: drop-shadow(0 0 30px rgba(243,217,166,0.95)) drop-shadow(0 0 12px rgba(243,217,166,1)) brightness(1.3);
}
body.lights-off .glow-target {
  filter: drop-shadow(0 0 30px rgba(224,162,58,0.8)) brightness(1.1);
}
body.lights-off .hero-sticker { opacity: 0.4; }
body.lights-off .hero-rain { opacity: 1; }

/* Lights toggle button */
.lights-toggle {
  position: absolute;
  top: 24px;
  right: 40px;
  z-index: 20;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: var(--cream);
  border: 2px solid rgba(255,255,255,0.2);
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 200ms ease;
  backdrop-filter: blur(6px);
}
.lights-toggle:hover { background: rgba(255,255,255,0.16); }
.lights-toggle .bulb {
  font-size: 18px;
  filter: drop-shadow(0 0 6px var(--accent));
}
body.lights-off .lights-toggle { background: var(--ink); border-color: var(--lightning); }

/* In-context lights button — below the hero image */
.hero-lights-cta {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 24px auto 0;
  padding: 14px 22px 14px 18px;
  border: 2px solid rgba(243, 217, 166, 0.4);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  color: var(--cream);
  cursor: pointer;
  font-family: var(--font-body);
  text-align: left;
  transition: all 250ms ease;
  width: fit-content;
}
.hero-lights-cta:hover {
  background: rgba(224, 162, 58, 0.18);
  border-color: var(--lightning);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(224, 162, 58, 0.25);
}
.hero-lights-cta .bulb {
  font-size: 28px;
  filter: drop-shadow(0 0 12px var(--accent));
  transition: transform 300ms ease, filter 300ms ease;
}
.hero-lights-cta:hover .bulb { transform: scale(1.15) rotate(-8deg); }
body.lights-off .hero-lights-cta .bulb {
  filter: drop-shadow(0 0 14px rgba(243,217,166,0.9));
}
.hero-lights-label {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.1;
}
.hero-lights-action {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hero-lights-hint {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(243, 217, 166, 0.8);
}
body.lights-off .hero-lights-cta {
  background: rgba(224, 162, 58, 0.14);
  border-color: var(--lightning);
}

/* ─── OPENING STORY ─── */
.story-section {
  background: var(--cream);
  color: var(--ink);
  position: relative;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* ─── SYNOPSIS LAYOUT ─── */
.synopsis-wrap {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: 56px;
  align-items: center;
}
.synopsis-text {
  text-align: left;
}
.synopsis-text .eyebrow {
  justify-content: flex-start;
}
.synopsis-headline {
  font-size: clamp(34px, 3.8vw, 52px);
  margin: 18px 0 28px;
  text-wrap: balance;
  line-height: 1.02;
}
.synopsis-body {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0 0 18px;
  text-wrap: pretty;
}
.synopsis-body strong { color: var(--ink); font-weight: 800; }
.synopsis-body em {
  font-style: italic;
  color: var(--red-tie);
  font-weight: 700;
}
.synopsis-image {
  position: relative;
}
.synopsis-image:hover .sb-book-zoom { transform: scale(2.16); }

@media (max-width: 900px) {
  .synopsis-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
    max-width: 760px;
  }
  .synopsis-text { text-align: center; order: 1; }
  .synopsis-text .eyebrow { justify-content: center; }
  .synopsis-image { order: 0; }
}
@media (max-width: 640px) {
  .synopsis-headline { font-size: 30px; }
  .synopsis-body { font-size: 17px; }
}

.story-narration p {
  font-size: 22px;
  margin-bottom: 16px;
  line-height: 1.5;
  color: var(--ink-soft);
}
.story-narration p.beat {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--ink);
  line-height: 1;
  margin: 24px 0;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.story-narration p.callout {
  font-size: 28px;
  font-weight: 900;
  color: var(--red-dark);
  line-height: 1.25;
  margin-top: 32px;
}

.story-headline {
  font-size: clamp(40px, 4.6vw, 64px);
  margin-bottom: 32px;
}

.story-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 4px solid var(--ink);
  box-shadow: 12px 12px 0 var(--ink);
  transform: rotate(2deg);
}
.story-image img { display: block; width: 100%; }
.story-image .tape {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%) rotate(-3deg);
  width: 140px;
  height: 32px;
  background: rgba(248, 220, 102, 0.85);
  border: 1px solid rgba(0,0,0,0.15);
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

/* ─── PAIN ─── */
.pain-section {
  background: var(--paper);
  color: var(--ink);
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header h2 {
  font-size: clamp(40px, 5vw, 72px);
  margin-top: 16px;
  margin-bottom: 16px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-wrap: balance;
}
.section-header p {
  font-size: 20px;
  color: var(--ink-soft);
  max-width: 640px;
  margin: 0 auto;
}

.pain-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 64px;
}
.pain-card {
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: 20px;
  padding: 28px;
  position: relative;
  transition: transform 200ms ease, box-shadow 200ms ease;
  box-shadow: 6px 6px 0 var(--ink);
}
.pain-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 var(--ink);
}
.pain-card .num {
  position: absolute;
  top: -20px;
  left: 24px;
  background: var(--ink);
  color: var(--accent);
  font-family: var(--font-display);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 18px;
}
.pain-card p {
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
  line-height: 1.35;
  margin-top: 12px;
}

.pain-quotes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}
.pain-quote {
  padding: 36px;
  border-radius: 20px;
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1.1;
  text-align: center;
  border: 3px solid var(--ink);
}
.pain-quote.bad {
  background: #2a2014;
  color: var(--cream);
}
.pain-quote.good {
  background: var(--accent);
  color: var(--ink);
}
.pain-quote .label {
  display: block;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.18em;
  font-weight: 800;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 14px;
}

/* ─── SOLUTION ─── */
.solution-section {
  background: var(--navy);
  color: var(--cream);
  overflow: hidden;
  position: relative;
}
.solution-section::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 80% 20%, rgba(224,162,58,0.2), transparent 50%),
                    radial-gradient(circle at 10% 80%, rgba(224,162,58,0.15), transparent 50%);
  pointer-events: none;
}
.solution-section .eyebrow { color: var(--lightning-bright); }
.solution-section .section-header h2 { color: var(--cream); }
.solution-section .section-header p { color: rgba(246,236,213,0.8); }

.solution-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.solution-image-wrap {
  position: relative;
  text-align: center;
  display: flex;
  justify-content: center;
  padding: 20px 0;
}
/* ─── 3D Book ─── */
.book-container {
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 800px;
  text-decoration: none;
}

.book {
  width: 340px;
  height: 510px;
  position: relative;
  transform-style: preserve-3d;
  transform: rotateY(var(--book-rotate, 0deg));
  transition: transform 200ms ease-out;
  will-change: transform;
}

.book > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 340px;
  height: 510px;
  transform: translateZ(24px);
  border-radius: 0 5px 5px 0;
  box-shadow: 5px 5px 32px rgba(0,0,0,0.55);
  object-fit: cover;
  display: block;
}

/* Page edges (the side stripe) */
.book::before {
  position: absolute;
  content: '';
  left: 0;
  top: 5px;
  width: 48px;
  height: 500px;
  transform: translateX(306px) rotateY(90deg);
  background: linear-gradient(90deg,
    #fff 0%, #f6ecd5 5%, #fff 10%, #f6ecd5 15%, #fff 20%,
    #f6ecd5 25%, #fff 30%, #f6ecd5 35%, #fff 40%, #f6ecd5 45%,
    #fff 50%, #f6ecd5 55%, #fff 60%, #f6ecd5 65%, #fff 70%,
    #f6ecd5 75%, #fff 80%, #f6ecd5 85%, #fff 90%, #f6ecd5 95%, #fff 100%);
}

/* Back cover */
.book::after {
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 340px;
  height: 510px;
  transform: translateZ(-24px);
  background-color: #20140a;
  border-radius: 0 5px 5px 0;
  box-shadow: -10px 0 60px 12px rgba(0,0,0,0.6);
}

@media (max-width: 640px) {
  .book { width: 200px; height: 300px; }
  .book > img { width: 200px; height: 300px; transform: translateZ(15px); }
  .book::before { width: 28px; height: 292px; transform: translateX(181px) rotateY(90deg); }
  .book::after { width: 200px; height: 300px; transform: translateZ(-15px); }
}

.solution-mix {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 36px;
}
.mix-card {
  background: #fff;
  border: 2px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 56px 18px 22px;
  text-align: center;
  overflow: visible;
  transition: all 250ms ease;
}
.mix-card:hover {
  background: #fbf7ef;
  border-color: var(--lightning);
  transform: translateY(-4px);
}
.mix-card .icon {
  width: 110px;
  height: 110px;
  margin: -78px auto 12px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  filter: drop-shadow(0 10px 16px rgba(0, 0, 0, 0.45)) drop-shadow(0 0 22px rgba(224, 162, 58, 0.2));
  opacity: 0;
  transform: translateY(20px) scale(0.7);
}
.mix-card .icon img {
  width: auto;
  max-width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
  display: block;
}
/* Mistério, Ação e Reviravoltas usam personagens com aspectos mais largos/altos
   — escalando para igualar o peso visual do Pip do card 1 */
.mix-card:nth-child(2) .icon img,
.mix-card:nth-child(3) .icon img,
.mix-card:nth-child(4) .icon img {
  transform: scale(1.22);
  transform-origin: bottom center;
}
@keyframes icon-bounce-in {
  0%   { opacity: 0; transform: translateY(28px) scale(0.7); }
  55%  { opacity: 1; transform: translateY(-10px) scale(1.08); }
  78%  { transform: translateY(3px) scale(0.98); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
.mix-card.visible .icon {
  animation: icon-bounce-in 800ms cubic-bezier(0.34, 1.32, 0.64, 1) forwards;
  animation-delay: var(--enter-delay, 0ms);
}
.mix-card:hover .icon {
  transform: translateY(-4px) rotate(-3deg) scale(1.06);
  transition: transform 280ms cubic-bezier(0.34, 1.32, 0.64, 1);
}
.mix-card .label {
  font-weight: 700;
  font-size: 16px;
  color: #1a1a1a;
  letter-spacing: 0.04em;
}
.mix-card .desc {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.45;
  color: rgba(0, 0, 0, 0.62);
  font-weight: 500;
}

.solution-audience {
  background: #fff;
  border: 2px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  padding: 24px 28px;
}
.solution-audience h4 {
  font-family: var(--font-display);
  font-size: 18px;
  color: #1a1a1a;
  margin-bottom: 14px;
  letter-spacing: 0.06em;
}
.solution-audience ul {
  list-style: none;
  display: grid;
  gap: 8px;
}
.solution-audience li {
  display: flex;
  gap: 12px;
  align-items: center;
  font-weight: 600;
  color: #1a1a1a;
}
.solution-audience li::before {
  content: "→";
  color: var(--accent);
  font-weight: 900;
}

/* ─── BENEFITS ─── */
.benefits-section {
  background: var(--cream);
  color: var(--ink);
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.benefit-card {
  padding: 28px;
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: 18px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 200ms ease, box-shadow 200ms ease;
  box-shadow: 5px 5px 0 var(--ink);
}
.benefit-card:hover {
  transform: translate(-3px, -3px) rotate(-1deg);
  box-shadow: 8px 8px 0 var(--ink);
  background: var(--accent);
}
.benefit-card .check {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 900;
  flex-shrink: 0;
}
.benefit-card:hover .check {
  background: var(--ink);
  color: var(--accent);
}
.benefit-card p {
  font-weight: 700;
  font-size: 17px;
  line-height: 1.35;
  color: var(--ink);
}

/* ─── PROOF / 5000+ ─── */
.proof-section {
  background: var(--duck-yellow);
  color: var(--ink);
  overflow: hidden;
  position: relative;
  padding-top: clamp(48px, 5vw, 72px);
  padding-bottom: clamp(48px, 5vw, 72px);
}
.proof-section::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 50% -10%, rgba(255,255,255,0.18), transparent 45%),
    radial-gradient(circle at 50% 110%, rgba(34,23,16,0.12), transparent 45%);
  pointer-events: none;
}

.proof-grid {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.proof-hero {
  text-align: left;
  position: relative;
  z-index: 1;
}
.proof-grid .proof-context { margin-left: 0; margin-right: 0; }
.proof-hero .eyebrow { color: var(--accent); }
.proof-badge {
  display: block;
  margin: 0 auto 8px;
  width: clamp(180px, 22vw, 280px);
  height: auto;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.4));
}
.proof-number {
  font-family: var(--font-display);
  font-size: clamp(96px, 12vw, 184px);
  line-height: 0.85;
  color: var(--ink);
  -webkit-text-fill-color: var(--ink);
  display: inline-block;
  white-space: nowrap;
  margin: 16px 0;
  filter: drop-shadow(0 6px 0 rgba(34,23,16,0.18));
}
.proof-number .plus {
  display: inline-block;
  transform: translateY(-0.1em);
  color: var(--red-tie);
  -webkit-text-fill-color: var(--red-tie);
}
.proof-label {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 44px);
  color: var(--ink);
  letter-spacing: 0.04em;
}
.proof-context {
  font-size: 20px;
  color: rgba(34,23,16,0.82);
  max-width: 640px;
  margin: 24px auto 0;
  line-height: 1.5;
}
.proof-context strong { color: var(--red-tie); font-weight: 900; }

/* Instagram comments embed (real comments) */
.proof-comments {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
}
.ig-comments {
  width: 100%;
  height: 760px;
  border: 0;
  display: block;
  background: transparent;
  color-scheme: light;
}
.proof-comments-note {
  text-align: center;
  font-size: 14px;
  font-style: italic;
  color: rgba(34,23,16,0.7);
  margin-top: 12px;
}

/* Stats row */
.proof-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto 80px;
  position: relative; z-index: 1;
}
.stat {
  text-align: center;
  padding: 32px 20px;
  background: rgba(255,255,255,0.04);
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  transition: background 200ms ease, border-color 200ms ease;
}
.stat:hover { background: rgba(224,162,58,0.08); border-color: rgba(224,162,58,0.4); }
.stat-num {
  font-family: var(--font-display);
  font-size: 64px;
  line-height: 1;
  color: var(--accent);
  letter-spacing: 0.02em;
}
.stat-label {
  font-size: 14px;
  color: rgba(246,236,213,0.7);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 12px;
}

/* Testimonial bubbles — like comic speech */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}
.bubble {
  background: var(--cream);
  color: var(--ink);
  border: 3px solid var(--ink);
  border-radius: 24px;
  padding: 24px 28px;
  position: relative;
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: 0.02em;
  transform: rotate(-1deg);
  transition: transform 200ms ease;
}
.bubble:nth-child(even) { transform: rotate(1deg); background: var(--accent); }
.bubble:nth-child(3n) { background: var(--lightning-bright); }
.bubble:hover { transform: rotate(0) scale(1.03); z-index: 2; }
.bubble::after {
  content: "";
  position: absolute;
  bottom: -16px;
  left: 32px;
  width: 28px;
  height: 28px;
  background: inherit;
  border: 3px solid var(--ink);
  border-top: none;
  border-left: none;
  border-bottom-right-radius: 8px;
  transform: rotate(45deg);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}
.bubble-meta {
  display: block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 14px;
  opacity: 0.65;
}

/* ─── BOOK DEMO (lights toggle in-context) ─── */
.demo-section {
  background: var(--cream);
  color: var(--ink);
}
.demo-frame {
  background: var(--navy-deep);
  border-radius: 32px;
  padding: 64px;
  position: relative;
  overflow: hidden;
  border: 3px solid var(--ink);
  box-shadow: 0 30px 60px rgba(0,0,0,0.3);
  transition: background 600ms ease;
}
.demo-frame.lit-off { background: #000; }
.demo-frame::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at top, rgba(224,162,58,0.2), transparent 50%);
  pointer-events: none;
}
.demo-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.demo-book {
  position: relative;
  text-align: center;
}
.demo-book img {
  max-width: 100%;
  display: block;
  margin: 0 auto;
  transition: filter 600ms ease;
}
.demo-frame.lit-off .demo-book img {
  filter: brightness(0.35) drop-shadow(0 0 60px rgba(224,162,58,0.9)) drop-shadow(0 0 20px rgba(224,162,58,1));
}
.demo-text { color: var(--cream); }
.demo-text .eyebrow { color: var(--lightning-bright); }
.demo-text h2 {
  font-size: clamp(36px, 4vw, 56px);
  color: var(--cream);
  margin: 16px 0 20px;
  line-height: 1.05;
}
.demo-text p {
  font-size: 19px;
  line-height: 1.5;
  color: rgba(246,236,213,0.85);
  margin-bottom: 28px;
}
.demo-switch {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 8px;
  background: rgba(0,0,0,0.4);
  border: 2px solid rgba(255,255,255,0.15);
  border-radius: 999px;
}
.demo-switch button {
  padding: 12px 24px;
  border: none;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  background: transparent;
  color: var(--cream);
  transition: all 200ms ease;
}
.demo-switch button.active {
  background: var(--accent);
  color: var(--ink);
  box-shadow: 0 0 20px rgba(232,168,56,0.4);
}

/* ─── PACKAGES ─── */
.packages-section {
  background: var(--paper);
  color: var(--ink);
  overflow-x: clip;
}
/* colored infinite-scroll comic behind the book in the price panel */
.comic-bg-pkg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.15;
  border-radius: inherit;
}
.packages-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 48px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.package {
  background: var(--cream-soft);
  border: 3px solid var(--ink);
  border-radius: 28px;
  padding: 40px;
  position: relative;
  box-shadow: 8px 8px 0 var(--ink);
  transition: transform 300ms ease;
}
.package:hover { transform: translateY(-6px); }
.package.featured {
  background: var(--navy-deep);
  color: var(--cream);
  transform: rotate(0.5deg);
}
.package.featured:hover { transform: translateY(-6px) rotate(0.5deg); }
.package.featured .display { color: var(--cream); }
.package-badge {
  position: absolute;
  top: -14px;
  right: 24px;
  background: var(--red-tie);
  color: var(--cream);
  padding: 8px 18px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.1em;
  border: 3px solid var(--ink);
  transform: rotate(3deg);
}
.package-image {
  margin: 16px -8px 22px;
  position: relative;
  text-align: center;
  overflow: visible;
}
.package-image img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.25));
  transition: transform 400ms cubic-bezier(0.34, 1.32, 0.64, 1);
}
.package:hover .package-image img {
  transform: scale(1.04) rotate(-1deg);
}
.package.featured .package-image {
  margin: 16px -32px 22px;
  overflow: visible;
}
.package.featured .package-image img {
  width: calc(100% + 32px);
  max-width: none;
  margin: 0 -16px;
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.45)) drop-shadow(0 0 18px rgba(224, 162, 58, 0.25));
}

.package-eyebrow {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red-tie);
  margin-bottom: 8px;
}
.package.featured .package-eyebrow { color: var(--accent); }

.package h3 {
  font-family: var(--font-display);
  font-size: 40px;
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 16px;
}
.package-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 28px;
}
.package-price .currency {
  font-size: 24px;
  font-weight: 800;
  color: var(--red-tie);
}
.package-price .amount {
  font-family: var(--font-display);
  font-size: 64px;
  color: var(--red-tie);
  line-height: 1;
}
.package-price .unit {
  font-size: 14px;
  color: rgba(0,0,0,0.5);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.package.featured .package-price .unit { color: rgba(255,255,255,0.5); }

.package ul {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-bottom: 32px;
}
.package li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.4;
}
.package li::before {
  content: "✓";
  color: var(--teo-green);
  font-weight: 900;
  font-size: 20px;
  flex-shrink: 0;
}
.package.featured li::before { color: var(--accent); }
.package li.bonus::before { content: "★"; color: var(--accent); }

.package .btn-package {
  width: 100%;
  justify-content: center;
}

.package-stack {
  margin-top: 60px;
  text-align: center;
  padding: 40px;
  background: var(--cream-soft);
  border: 3px dashed var(--ink);
  border-radius: 24px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.package-stack p {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.15;
  color: var(--ink);
}
.package-stack p strong { color: var(--red-tie); }

/* Compare table */
.compare-toggle-row {
  text-align: center;
  margin-top: 60px;
}

.btn-compare {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 32px;
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 3px solid var(--ink);
  border-radius: 999px;
  background: var(--cream-soft);
  color: var(--ink);
  cursor: pointer;
  box-shadow: 0 6px 0 var(--ink);
  transform: translateY(0);
  transition: transform 160ms ease, box-shadow 160ms ease, background 200ms ease;
  position: relative;
}
.btn-compare:hover {
  transform: translateY(-3px);
  box-shadow: 0 9px 0 var(--ink);
  background: var(--accent);
}
.btn-compare:active {
  transform: translateY(2px);
  box-shadow: 0 3px 0 var(--ink);
}
.btn-compare-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--accent);
  font-size: 18px;
  font-weight: 900;
  transition: transform 250ms ease, background 200ms ease;
}
.btn-compare:hover .btn-compare-icon {
  transform: rotate(180deg);
  background: var(--red-tie);
  color: var(--cream);
}
.compare-table {
  margin: 32px auto 0;
  max-width: 800px;
  background: var(--cream-soft);
  border: 3px solid var(--ink);
  border-radius: 20px;
  overflow: hidden;
}
.compare-row {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  border-top: 2px solid rgba(0,0,0,0.1);
  align-items: center;
}
.compare-row:first-child { border-top: none; background: var(--ink); color: var(--cream); }
.compare-row > div {
  padding: 18px 20px;
  font-weight: 700;
}
.compare-row > div:not(:first-child) {
  text-align: center;
  border-left: 2px solid rgba(0,0,0,0.08);
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.04em;
}
.compare-row:first-child > div:not(:first-child) {
  border-left-color: rgba(255,255,255,0.15);
  color: var(--accent);
}
.compare-row .yes { color: var(--teo-green); }
.compare-row .no { color: rgba(0,0,0,0.3); }

/* ─── OBJECTIONS ─── */
.objections-section {
  background: var(--cream);
}
.objections-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.objection {
  border: 3px solid var(--ink);
  border-radius: 20px;
  padding: 32px;
  background: var(--paper);
  transition: transform 200ms;
  box-shadow: 6px 6px 0 var(--ink);
}
.objection:hover { transform: translate(-2px, -2px); box-shadow: 8px 8px 0 var(--ink); }
.objection h4 {
  font-family: var(--font-display);
  font-size: 26px;
  margin-bottom: 16px;
  line-height: 1.1;
}
.objection h4 .quotes {
  color: var(--red-tie);
  font-size: 36px;
  line-height: 0;
  position: relative;
  top: 8px;
  margin-right: 4px;
}
.objection p {
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-soft);
}

/* ─── GUARANTEE ─── */
.guarantee-section {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-soft) 100%);
  text-align: center;
}
.guarantee-card {
  max-width: 760px;
  margin: 0 auto;
  background: var(--accent);
  border: 3px solid var(--ink);
  border-radius: 32px;
  padding: 64px 48px;
  position: relative;
  box-shadow: 12px 12px 0 var(--ink);
  transform: rotate(-1deg);
}
.guarantee-card .seal {
  position: absolute;
  top: -36px;
  left: 50%;
  transform: translateX(-50%) rotate(-8deg);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--red-tie);
  color: var(--cream);
  border: 4px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.04em;
  line-height: 1;
  text-align: center;
  box-shadow: 4px 4px 0 var(--ink);
}
.guarantee-card .seal span:first-child { font-size: 22px; margin-bottom: 4px; }
.guarantee-card h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1;
  margin: 28px 0 24px;
}
.guarantee-card p {
  font-size: 20px;
  line-height: 1.5;
  font-weight: 700;
  margin-bottom: 16px;
}

/* No urgency block */
.no-urgency {
  background: var(--paper);
  color: var(--ink);
  text-align: center;
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
}
.no-urgency-inner {
  max-width: 720px;
  margin: 0 auto;
}
.no-urgency h3 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.1;
  margin-bottom: 24px;
}
.no-urgency p {
  font-size: 18px;
  line-height: 1.5;
  color: var(--ink-soft);
  margin-bottom: 12px;
}
.no-urgency .strike {
  display: inline-flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 20px 0;
}
.no-urgency .strike span {
  text-decoration: line-through;
  text-decoration-color: var(--red-tie);
  text-decoration-thickness: 3px;
  color: rgba(0,0,0,0.4);
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ─── FAQ ─── */
.faq-section { background: var(--cream); }
.faq-list {
  max-width: 820px;
  margin: 48px auto 0;
  display: grid;
  gap: 16px;
}
.faq-item {
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow 200ms ease;
}
.faq-item.open {
  box-shadow: 6px 6px 0 var(--ink);
}
.faq-q {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 24px 28px;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.02em;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  color: var(--ink);
}
.faq-q .toggle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 900;
  flex-shrink: 0;
  transition: transform 250ms ease;
}
.faq-item.open .toggle { transform: rotate(45deg); background: var(--red-tie); color: var(--cream); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 350ms ease;
}
.faq-item.open .faq-a { max-height: 500px; }
.faq-a-inner {
  padding: 0 28px 24px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* ─── FINAL CTA ─── */
.final-cta {
  background: var(--navy-deep);
  color: var(--cream);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 50%, rgba(224,162,58,0.3), transparent 60%);
  pointer-events: none;
}
.final-cta-inner { position: relative; z-index: 1; }
.final-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.95;
  letter-spacing: 0.01em;
  margin-bottom: 24px;
  color: var(--cream);
}
.final-cta h2 .accent { color: var(--accent); }
.final-cta p {
  font-size: 22px;
  color: rgba(246,236,213,0.85);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.4;
}
.final-cta .microcopy {
  margin-top: 24px;
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 0.08em;
  color: var(--lightning-bright);
}

/* ─── PS BLOCK ─── */
.ps-section {
  background: var(--cream);
  color: var(--ink);
  padding: 80px 0 100px;
}
.ps-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.ps-inner .ps-tag {
  font-family: var(--font-display);
  display: inline-block;
  background: var(--ink);
  color: var(--accent);
  padding: 6px 18px;
  border-radius: 6px;
  letter-spacing: 0.2em;
  font-size: 14px;
  margin-bottom: 24px;
}
.ps-inner p {
  font-size: 22px;
  line-height: 1.5;
  margin-bottom: 14px;
  color: var(--ink-soft);
}
.ps-inner p.ending {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--ink);
  margin-top: 24px;
  line-height: 1.05;
  text-transform: uppercase;
}

/* ─── FOOTER ─── */
.footer {
  background: var(--ink);
  color: var(--cream);
  padding: 48px 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-display);
  letter-spacing: 0.1em;
}
.footer-brand img { width: 48px; }
.footer-links {
  display: flex;
  gap: 24px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  opacity: 0.7;
}
.footer-links a:hover { opacity: 1; color: var(--lightning-bright); }
.footer-meta {
  font-size: 12px;
  opacity: 0.5;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 600ms ease, transform 600ms ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── FLAT SMOKE (hero, sober) ─── */
.hero-smoke {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.hero-smoke svg { width: 100%; height: 100%; display: block; }

/* Floating ninja cutouts in hero */
.hero-float {
  position: absolute;
  z-index: 4;
  pointer-events: none;
  filter: drop-shadow(0 14px 20px rgba(0,0,0,0.5));
  animation: float-bob 6s ease-in-out infinite;
}
.hero-float-1 {
  width: clamp(150px, 19vw, 230px);
  bottom: -2%;
  left: -10%;
  transform: rotate(-6deg);
}
.hero-float-2 {
  width: clamp(90px, 11vw, 132px);
  top: 2%;
  right: -3%;
  transform: rotate(9deg);
  animation-delay: -2.5s;
}
@keyframes float-bob {
  0%, 100% { transform: translateY(0) rotate(var(--r, 0deg)); }
  50% { transform: translateY(-12px) rotate(var(--r, 0deg)); }
}
.hero-float-1 { --r: -6deg; }
.hero-float-2 { --r: 9deg; }

/* ─── QUALITY / EDIÇÃO FÍSICA ─── */
.quality-section {
  background: var(--cream);
  color: var(--ink);
}
.quality-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.quality-image {
  position: relative;
  display: flex;
  justify-content: center;
}
.quality-image img {
  width: 100%;
  max-width: 520px;
  filter: drop-shadow(0 26px 40px rgba(34,23,16,0.32));
  transform: rotate(-2deg);
  transition: transform 500ms ease;
}
.quality-image:hover img { transform: rotate(0deg) scale(1.02); }
.quality-text .eyebrow { color: var(--red-tie); }
.quality-text h2 {
  font-size: clamp(40px, 4.6vw, 60px);
  margin: 14px 0 20px;
  line-height: 1;
}
.quality-text p {
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 32px;
  max-width: 480px;
}
.quality-specs {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 18px;
  justify-content: start;
}
.spec {
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: 18px;
  padding: 20px 26px;
  text-align: center;
  box-shadow: 5px 5px 0 var(--ink);
  min-width: 120px;
}
.spec-big {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1;
  color: var(--red-tie);
}
.spec-small {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 8px;
}

/* Mobile: keep "Feito pra colecionar" square — image, specs and text must not overflow */
@media (max-width: 640px) {
  .quality-grid > * { min-width: 0; }
  .quality-image img {
    width: 82%;
    max-width: 320px;
    transform: rotate(-1deg);
  }
  .quality-specs {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    justify-content: stretch;
    width: 100%;
  }
  .spec {
    min-width: 0;
    padding: 14px 6px;
    border-width: 2px;
    box-shadow: 3px 3px 0 var(--ink);
  }
  .spec-big { font-size: clamp(24px, 7.5vw, 34px); }
  .spec-small { font-size: 10px; letter-spacing: 0.06em; margin-top: 6px; }
  .quality-text p { font-size: 16px; max-width: none; }
}

/* ─── SINGLE PRODUCT ─── */
.single-product {
  display: grid;
  grid-template-columns: 2.1fr 1fr;
  gap: 0;
  max-width: 1180px;
  margin: 48px auto 0;
  background: var(--cream-soft);
  border: 3px solid var(--ink);
  border-radius: 32px;
  box-shadow: 12px 12px 0 var(--ink);
  overflow: hidden;
}
.single-product > * { min-width: 0; }
.single-product-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  border-radius: 29px 0 0 29px;
  background: var(--duck-yellow);
  overflow: hidden;
}
.single-product-image > img {
  width: 100%;
  max-width: none;
  filter: drop-shadow(0 18px 30px rgba(0,0,0,0.45));
  position: relative;
  z-index: 2;
  transition: transform 450ms cubic-bezier(0.34, 1.32, 0.64, 1);
}
.single-product:hover .single-product-image > img {
  transform: scale(1.03);
}
.product-float {
  position: absolute;
  width: 130px;
  right: -6px;
  bottom: -10px;
  z-index: 3;
  filter: drop-shadow(0 10px 14px rgba(0,0,0,0.45));
  transform: rotate(6deg);
}
.single-product-info {
  padding: 30px 38px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.single-product-info .package-eyebrow {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red-tie);
  margin-bottom: 8px;
}
.single-product-info h3 {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.4vw, 44px);
  letter-spacing: 0.02em;
  line-height: 0.95;
  margin-bottom: 8px;
}
.product-subtitle {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-soft);
  opacity: 0.75;
  margin-bottom: 14px;
}
.single-product-info .package-price { margin-bottom: 16px; }
.single-product-info ul {
  list-style: none;
  display: grid;
  gap: 9px;
  margin-bottom: 18px;
}
.single-product-info li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.4;
}
.single-product-info li::before {
  content: "✓";
  color: var(--teo-green);
  font-weight: 900;
  font-size: 20px;
  flex-shrink: 0;
}
.single-product-info li em { color: var(--red-tie); font-style: normal; font-weight: 800; }
.single-product-info .btn-package { width: 100%; justify-content: center; }
.product-note {
  margin-top: 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
  opacity: 0.7;
  text-align: center;
}

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 600ms ease, transform 600ms ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── DENSITY MODES ─── */
body.density-compact { --section-pad: 80px; font-size: 17px; }
body.density-spacious { --section-pad: 160px; font-size: 19px; }

/* ─── RGB BACKGROUND EDITOR (tweaks) ─── */
.rgb-ctrl { display: flex; flex-direction: column; gap: 9px; }
.rgb-preview {
  height: 50px; border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: inset 0 0 0 .5px rgba(0,0,0,.18), inset 0 2px 8px rgba(0,0,0,.15);
  font: 700 12px ui-monospace, "SF Mono", Menlo, monospace; letter-spacing: .08em;
}
.rgb-ch { display: grid; grid-template-columns: 14px 1fr 30px; align-items: center; gap: 9px; }
.rgb-ch-lbl { font-weight: 800; font-size: 11px; color: rgba(41,38,27,.72); }
.rgb-ch-val { font-variant-numeric: tabular-nums; font-size: 10.5px; color: rgba(41,38,27,.55); text-align: right; }
.rgb-slider {
  appearance: none; -webkit-appearance: none;
  width: 100%; height: 9px; border-radius: 999px; outline: none; margin: 4px 0;
  box-shadow: inset 0 0 0 .5px rgba(0,0,0,.22);
}
.rgb-slider::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 17px; height: 17px; border-radius: 50%; background: #fff;
  border: 2px solid rgba(0,0,0,.28); box-shadow: 0 1px 4px rgba(0,0,0,.4); cursor: ew-resize;
}
.rgb-slider::-moz-range-thumb {
  width: 17px; height: 17px; border-radius: 50%; background: #fff;
  border: 2px solid rgba(0,0,0,.28); box-shadow: 0 1px 4px rgba(0,0,0,.4); cursor: ew-resize;
}
.rgb-hex-row { display: flex; align-items: center; gap: 8px; }
.rgb-hex-row > span { font-weight: 800; font-size: 10px; color: rgba(41,38,27,.5); letter-spacing: .05em; }
.rgb-hex {
  flex: 1; min-width: 0; height: 27px; padding: 0 9px;
  border: .5px solid rgba(0,0,0,.14); border-radius: 7px;
  background: rgba(255,255,255,.7); outline: none; color: inherit;
  font: 600 12px ui-monospace, "SF Mono", Menlo, monospace; letter-spacing: .04em; text-transform: uppercase;
}
.rgb-hex:focus { border-color: rgba(0,0,0,.3); background: rgba(255,255,255,.9); }
.rgb-native {
  width: 32px; height: 27px; padding: 0; flex-shrink: 0; cursor: pointer;
  border: .5px solid rgba(0,0,0,.14); border-radius: 7px; background: transparent;
}
.rgb-native::-webkit-color-swatch-wrapper { padding: 2px; }
.rgb-native::-webkit-color-swatch { border: 0; border-radius: 5px; }
.rgb-swatches { display: flex; gap: 6px; flex-wrap: wrap; }
.rgb-swatch {
  width: 24px; height: 24px; border-radius: 6px; padding: 0; cursor: pointer;
  border: .5px solid rgba(0,0,0,.15);
  box-shadow: 0 1px 2px rgba(0,0,0,.12); transition: transform .12s;
}
.rgb-swatch:hover { transform: translateY(-1px) scale(1.05); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; padding: 20px 24px 60px; gap: 24px; }
  .hero-character-img { max-width: 420px; margin: 0 auto; }
  .story-grid, .solution-grid, .demo-grid { grid-template-columns: 1fr; gap: 40px; }
  .proof-grid { grid-template-columns: 1fr; gap: 40px; }
  .proof-hero { text-align: center; }
  .proof-grid .proof-context { margin-left: auto; margin-right: auto; }
  .quality-grid { grid-template-columns: 1fr; gap: 40px; }
  .quality-image { order: -1; }
  .single-product { grid-template-columns: 1fr; max-width: 520px; }
  .single-product-image { border-radius: 29px 29px 0 0; }
  .single-product-image > img { width: 100%; transform: translateX(0); }
  .packages-grid { grid-template-columns: 1fr; }
  .pain-quotes, .objections-grid { grid-template-columns: 1fr; }
  .proof-stats { grid-template-columns: 1fr 1fr; }
  .compare-row { grid-template-columns: 1.4fr 1fr 1fr; }
  .nav-links { display: none; }
}
@media (max-width: 640px) {
  :root { --section-pad: 64px; }
  body { font-size: 16px; }
  .container, .container-wide { padding: 0 20px; }

  /* Make sure no flex/grid item refuses to shrink */
  .hero-grid > *,
  .synopsis-wrap > *,
  .solution-grid > *,
  .demo-grid > *,
  .story-grid > * { min-width: 0; }
  .hero-grid, .synopsis-wrap, .solution-grid, .demo-grid {
    width: 100%;
    max-width: 100%;
  }
  img { max-width: 100%; height: auto; }

  /* ─── Hero ─── */
  .hero-grid {
    padding: 16px 20px 32px;
    gap: 6px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
  /* Flatten hero-text and hero-character so their children can be reordered */
  .hero-text, .hero-character {
    display: contents;
  }
  .hero-character { height: auto !important; }
  .hero-character-stack {
    display: grid;
    grid-template-columns: 1fr;
    place-items: center;
    width: 100%;
    height: auto !important;
  }
  /* Both images occupy the SAME grid cell — guaranteed identical positioning */
  .hero-character-stack img.hero-character-img {
    grid-column: 1 !important;
    grid-row: 1 !important;
    position: static !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    margin: 0 !important;
    top: auto !important;
    left: auto !important;
    transform: rotate(-2deg) !important;
  }
  .hero-character-stack {
    margin-left: -8px !important;
    margin-right: -8px !important;
    width: calc(100% + 16px) !important;
  }
  .hero-scroll-banner { order: 1; align-self: center; margin-bottom: 0 !important; }
  .hero-logo-img      { order: 2; margin: 6px auto 0 !important; max-width: 100%; }
  .hero-character-stack { order: 3; margin: 0 auto 8px; }
  .livro-rotativo.hero-book3d { --lr-w: 258px; --lr-h: 387px; --lr-d: 22px; }
  .hero-book3d-wrap { height: clamp(480px, 104vw, 580px); padding-bottom: 64px; }
  .hero-lights-cta    { order: 4; margin: 4px auto 8px !important; padding: 12px 18px !important; }
  .hero-text .hero-sub:first-of-type { order: 5; text-align: center; }
  .hero-text .hero-sub[style]        { order: 6; text-align: center; }
  .hero-cta-row       { order: 7; justify-content: center; }
  .hero-microcopy     { order: 8; }
  .hero-text { text-align: center; }
  .hero-scroll-banner { font-size: 11px; padding: 5px 14px; }
  .hero-logo-img { margin: 0 auto 20px; max-width: 100%; }
  .hero-sub {
    font-size: 16px !important;
    line-height: 1.45 !important;
    margin-bottom: 24px !important;
    max-width: 100%;
  }
  /* Override inline font-size:28 on the headline paragraph */
  .hero-text .hero-sub[style] {
    font-size: 22px !important;
    line-height: 1.1 !important;
    margin-bottom: 28px !important;
  }
  .hero-cta-row { justify-content: center; }
  .hero-microcopy {
    grid-template-columns: 1fr;
    justify-content: center;
    justify-items: center;
    gap: 10px;
    font-size: 18px;
  }
  .hero-character-glow {
    width: 100% !important;
    height: 100% !important;
    inset: 0 !important;
    max-width: 100% !important;
  }
  .hero-sticker { display: none; }
  .hero-lights-action { font-size: 15px; }
  .hero-lights-hint { font-size: 10px; }
  .nav-cronicas-logo { height: 52px; }
  .nav { padding: 14px 16px; }
  .nav-links { display: none; }
  .hero-marquee-track { font-size: 14px; gap: 28px; }
  .hero-marquee-track span { gap: 28px; }

  /* ─── Synopsis ─── */
  .synopsis-headline { font-size: 26px !important; line-height: 1.05; }
  .synopsis-body { font-size: 16px; }
  /* Flipbook sizing on mobile */
  .sb-book-zoom { transform: scale(1.35); }
  .synopsis-image:hover .sb-book-zoom { transform: scale(1.35); }
  .sb-book-scale { min-height: 340px; }

  /* ─── Section headers ─── */
  .section-header h2 { font-size: 28px !important; line-height: 1.05; }
  .section-header p { font-size: 16px; }

  /* ─── Solution ─── */
  .solution-mix { grid-template-columns: 1fr 1fr; gap: 12px; }
  .mix-card { padding: 44px 12px 16px; }
  .mix-card .icon { width: 84px; height: 84px; margin: -56px auto 8px; }
  .mix-card .label { font-size: 13px; }

  /* ─── Benefits ─── */
  .benefit-card { padding: 20px; }
  .benefit-card p { font-size: 15px; }

  /* ─── Proof ─── */
  .proof-stats { grid-template-columns: 1fr; gap: 16px; }
  .stat { padding: 24px 16px; }
  .stat-num { font-size: 48px; }
  .proof-number { font-size: 96px !important; }
  .proof-label { font-size: 22px !important; }
  .proof-context { font-size: 16px; }
  .bubble { font-size: 18px; padding: 18px 22px; }

  /* ─── Demo ─── */
  .demo-frame { padding: 32px 20px; border-radius: 22px; }
  .demo-text h2 { font-size: 30px !important; }
  .demo-text p { font-size: 16px; }
  .demo-switch { flex-direction: column; gap: 6px; padding: 6px; border-radius: 18px; }
  .demo-switch button { width: 100%; padding: 10px 14px; font-size: 13px; }

  /* ─── Packages ─── */
  .package { padding: 28px 22px; border-radius: 22px; }
  .package h3 { font-size: 32px; }
  .package-price .amount { font-size: 52px; }
  .package li { font-size: 15px; }
  .package-badge { right: 14px; font-size: 12px; }
  .compare-row > div { padding: 12px 10px; font-size: 13px; }
  .compare-row > div:not(:first-child) { font-size: 16px; }

  /* ─── Objections ─── */
  .objections-grid { grid-template-columns: 1fr; gap: 16px; }
  .objection { padding: 24px; }
  .objection h4 { font-size: 22px; }
  .objection p { font-size: 15px; }

  /* ─── Guarantee ─── */
  .guarantee-card { padding: 56px 24px 36px; }
  .guarantee-card .seal { width: 80px; height: 80px; top: -28px; font-size: 12px; }
  .guarantee-card .seal span:first-child { font-size: 18px; }
  .guarantee-card h2 { font-size: 30px !important; }
  .guarantee-card p { font-size: 17px; }

  /* ─── FAQ ─── */
  .faq-q { font-size: 17px; padding: 18px 20px; gap: 12px; }
  .faq-q .toggle { width: 30px; height: 30px; font-size: 18px; }
  .faq-a-inner { padding: 0 20px 18px; font-size: 15px; }

  /* ─── Final CTA + PS ─── */
  .final-cta h2 { font-size: 36px !important; }
  .final-cta p { font-size: 17px; }
  .ps-inner p { font-size: 17px; }
  .ps-inner p.ending { font-size: 26px; }

  /* ─── Buttons & chips ─── */
  .btn { padding: 14px 22px; font-size: 14px; gap: 8px; }
  .btn-large { padding: 18px 24px; font-size: 16px; }
  .btn-package { width: 100%; justify-content: center; }
  .chip { font-size: 12px; padding: 6px 14px; }

  /* ─── Footer ─── */
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 14px; }

  /* Hide stale floating button */
  .lights-toggle { display: none !important; }
}


/* ─── Comic marquee: shared infinite-scroll track ─── */
.comic-marquee { overflow: hidden; pointer-events: none; }
.comic-strip-track {
  display: flex;
  width: max-content;
  height: 100%;
  animation: comic-scroll 90s linear infinite;
}
.comic-strip-track img {
  height: 100%;
  width: auto;
  display: block;
  flex-shrink: 0;
}
@keyframes comic-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .comic-strip-track { animation: none; }
}

/* Desktop: scrolling comic as a faint, desaturated section background */
.comic-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  filter: grayscale(0.95);
  opacity: 0.12;
}
.solution-grid { z-index: 1; }

/* Mobile band (centered on the 3D book) — hidden on desktop */
.comic-band { display: none; }


/* ─── Mobile-only illustration above synopsis ─── */
.synopsis-mobile-illust { display: none; }
@media (max-width: 900px) {
  .synopsis-mobile-illust {
    display: block;
    width: 75%;
    max-width: 320px;
    height: auto;
    margin: 0 auto 18px;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.15));
  }
}


/* Hero headline title highlight */
.hero-sub .hl-title {
  color: var(--accent);
  font-weight: 900;
  font-style: normal;
  letter-spacing: 0.01em;
}
@media (max-width: 640px) {
  /* Smaller hero paragraph on mobile */
  .hero-text .hero-sub[style] {
    font-size: 15px !important;
    line-height: 1.5 !important;
    margin-bottom: 22px !important;
  }
}


/* Mobile: comic becomes a band centered on the 3D book (75% of its height),
   transparent + desaturated, sitting behind the book */
@media (max-width: 900px) {
  .story-section { padding-bottom: 0 !important; }
  .synopsis-image { margin-bottom: 0; position: relative; z-index: 3; }
  .comic-bg { display: none; }
  .comic-band {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 66%;
    transform: translate(-50%, -50%);
    z-index: -1;
    filter: grayscale(0.95);
    opacity: 0.12;
  }
}

/* ─── FLOATING BUY BUTTON ─── */
.floating-buy {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1200;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 26px;
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  border: 3px solid var(--ink);
  border-radius: 999px;
  background: var(--accent);
  color: var(--accent-ink);
  box-shadow: 0 6px 0 var(--ink), 0 14px 30px rgba(34, 23, 16, 0.32);
  cursor: pointer;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(140%);
  pointer-events: none;
  transition: transform 320ms cubic-bezier(0.34, 1.32, 0.64, 1), opacity 240ms ease, box-shadow 120ms ease;
}
.floating-buy.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.floating-buy:hover {
  transform: translateY(-3px);
  box-shadow: 0 9px 0 var(--ink), 0 18px 34px rgba(34, 23, 16, 0.36);
}
.floating-buy:active {
  transform: translateY(2px);
  box-shadow: 0 3px 0 var(--ink), 0 10px 22px rgba(34, 23, 16, 0.3);
}
.floating-buy .floating-buy-price {
  font-size: 22px;
  flex-shrink: 0;
  background: var(--ink);
  color: var(--cream);
  padding: 4px 12px 2px;
  border-radius: 999px;
  line-height: 1;
  white-space: nowrap;
}
.floating-buy .floating-buy-label { flex-shrink: 0; }
.floating-buy .arrow { transition: transform 200ms ease; }
.floating-buy:hover .arrow { transform: translateX(4px); }

@media (max-width: 640px) {
  .floating-buy {
    right: 12px;
    left: 12px;
    bottom: 12px;
    justify-content: center;
    padding: 15px 20px;
    font-size: 18px;
    box-shadow: 0 5px 0 var(--ink), 0 10px 22px rgba(34, 23, 16, 0.32);
  }
  .floating-buy.is-visible { transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .floating-buy { transition: opacity 200ms ease; transform: none; }
  .floating-buy:not(.is-visible) { transform: none; }
}
