/* ─── Psicopato Landing — Design Tokens ─── */
:root {
  /* Brand palette */
  --navy-deep: #0a1e36;
  --navy: #102a4c;
  --navy-soft: #1d3d68;
  --lightning: #5fb8ff;
  --lightning-bright: #9fdcff;
  --cream: #f6ecd5;
  --cream-soft: #faf3e0;
  --paper: #fff8e8;
  --ink: #16110a;
  --ink-soft: #2a2014;
  --duck-yellow: #ffc94a;
  --duck-orange: #f29032;
  --teo-green: #5a8d3a;
  --teo-green-light: #87b15a;
  --red-tie: #c8332a;
  --red-dark: #8a1e16;
  --brown-hat: #6b4a2c;
  --brown-soft: #b78854;

  /* 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, background 200ms 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-image:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(95,184,255,0.32) 0%, rgba(10,30,54,0) 60%),
    radial-gradient(circle at 20% 80%, rgba(95,184,255,0.18) 0%, rgba(10,30,54,0) 50%),
    linear-gradient(180deg, #08182d 0%, #0e2949 60%, #0a1e36 100%);
}

/* Lightning bolts as SVG layered */
.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(2px 8px at 10% 20%, rgba(159,220,255,0.5), transparent 60%),
    radial-gradient(2px 8px at 25% 70%, rgba(159,220,255,0.4), transparent 60%),
    radial-gradient(2px 8px at 40% 30%, rgba(159,220,255,0.5), transparent 60%),
    radial-gradient(2px 8px at 60% 80%, rgba(159,220,255,0.4), transparent 60%),
    radial-gradient(2px 8px at 80% 25%, rgba(159,220,255,0.5), transparent 60%),
    radial-gradient(2px 8px at 92% 65%, rgba(159,220,255,0.4), transparent 60%);
  background-size: 200px 200px;
  pointer-events: none;
  opacity: 0.6;
}

.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: 620px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 4px 20px rgba(95,184,255,0.4));
}

.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(255, 201, 74, 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;
}

/* Easter egg: peek-a-boo Psicopato — rises behind the open book as user scrolls */
.synopsis-image { position: relative; overflow: visible; }
.synopsis-image img.synopsis-peek {
  position: absolute;
  left: 42%;
  bottom: 78%;
  width: 105px;
  max-width: none;
  height: auto;
  z-index: 0;
  pointer-events: none;
  transform-origin: bottom center;
  /* tilted left to match the open book; peek 0=hidden, 1=peaked (but only rises ~80% of the way) */
  transform:
    translateX(-50%)
    translateY(calc(26% + (1 - var(--peek, 0)) * 104% + var(--bob, 0px)))
    rotate(-6deg);
  filter: drop-shadow(0 8px 10px rgba(0,0,0,0.3));
  transition: transform 140ms ease-out;
  will-change: transform;
}
.synopsis-image img:not(.synopsis-peek) {
  position: relative;
  z-index: 1;
}
.hero-character-img {
  width: 100%;
  max-width: 680px;
  margin-left: auto;
  display: block;
  filter: drop-shadow(0 30px 50px rgba(0,0,0,0.55)) drop-shadow(0 8px 24px rgba(95,184,255,0.35));
  transform: rotate(-2deg);
  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(95,184,255,0.4) 0%, transparent 60%);
  z-index: -1;
  filter: blur(40px);
  animation: pulse-glow 4s ease-in-out infinite;
  transition: background 700ms ease;
}
body.lights-off .hero-character-glow {
  background: radial-gradient(circle, rgba(255,230,150,0.55) 0%, rgba(95,184,255,0.18) 40%, transparent 70%);
}
@keyframes pulse-glow {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 0.9; transform: scale(1.05); }
}

/* 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(95,184,255,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(159,220,255,0.95)) drop-shadow(0 0 12px rgba(159,220,255,1)) brightness(1.3);
}
body.lights-off .glow-target {
  filter: drop-shadow(0 0 30px rgba(95,184,255,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(159, 220, 255, 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(95, 184, 255, 0.18);
  border-color: var(--lightning);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(95, 184, 255, 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(159,220,255,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(159, 220, 255, 0.8);
}
body.lights-off .hero-lights-cta {
  background: rgba(95, 184, 255, 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 img {
  max-width: 100%;
  width: 100%;
  display: block;
  filter: drop-shadow(0 30px 50px rgba(0,0,0,0.18)) drop-shadow(0 8px 16px rgba(0,0,0,0.12));
  transform: rotate(-1deg);
  transition: transform 500ms ease;
}
.synopsis-image:hover img { transform: rotate(0deg) scale(1.02); }

@media (max-width: 900px) {
  .synopsis-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
    max-width: 760px;
  }
  .synopsis-text { text-align: center; }
  .synopsis-text .eyebrow { justify-content: center; }
}
@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(95,184,255,0.2), transparent 50%),
                    radial-gradient(circle at 10% 80%, rgba(95,184,255,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: #0a1e36;
  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: rgba(255, 255, 255, 0.06);
  border: 2px solid rgba(95, 184, 255, 0.3);
  border-radius: 16px;
  padding: 56px 18px 22px;
  text-align: center;
  overflow: visible;
  transition: all 250ms ease;
}
.mix-card:hover {
  background: rgba(95, 184, 255, 0.15);
  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(95, 184, 255, 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: var(--cream);
  letter-spacing: 0.04em;
}
.mix-card .desc {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.45;
  color: rgba(246, 236, 213, 0.7);
  font-weight: 500;
}

.solution-audience {
  background: rgba(0,0,0,0.25);
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 24px 28px;
}
.solution-audience h4 {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--lightning-bright);
  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;
}
.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(--ink);
  color: var(--cream);
  overflow: hidden;
  position: relative;
}
.proof-section::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(95,184,255,0.18), transparent 40%),
    radial-gradient(circle at 80% 50%, rgba(255,201,74,0.12), transparent 40%);
  pointer-events: none;
}

.proof-hero {
  text-align: center;
  position: relative;
  z-index: 1;
  margin-bottom: 80px;
}
.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(140px, 22vw, 320px);
  line-height: 0.85;
  background: linear-gradient(180deg, var(--accent) 0%, var(--duck-orange) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  white-space: nowrap;
  margin: 16px 0;
  filter: drop-shadow(0 8px 24px rgba(255,201,74,0.3));
}
.proof-number .plus {
  display: inline-block;
  transform: translateY(-0.1em);
  /* Re-apply the gradient — inline-block child doesn't inherit parent's background-clip */
  background: linear-gradient(180deg, var(--accent) 0%, var(--duck-orange) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.proof-label {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 44px);
  color: var(--cream);
  letter-spacing: 0.04em;
}
.proof-context {
  font-size: 20px;
  color: rgba(246,236,213,0.75);
  max-width: 640px;
  margin: 24px auto 0;
  line-height: 1.5;
}
.proof-context strong { color: var(--lightning-bright); font-weight: 900; }

/* 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(95,184,255,0.08); border-color: rgba(95,184,255,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(95,184,255,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(95,184,255,0.9)) drop-shadow(0 0 20px rgba(95,184,255,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(255,201,74,0.4);
}

/* ─── PACKAGES ─── */
.packages-section {
  background: var(--paper);
  color: var(--ink);
}
.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: #fff;
  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(95, 184, 255, 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;
}
.package-price .amount {
  font-family: var(--font-display);
  font-size: 64px;
  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(95,184,255,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); }

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

/* ─── 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; }
  .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; }
  .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; }
  .synopsis-image img.synopsis-peek { width: 60px; }
  /* Bigger open book on mobile — slightly overflows for impact */
  .synopsis-image img:not(.synopsis-peek) {
    width: 122% !important;
    max-width: 122% !important;
    margin-left: -11% !important;
    margin-right: -11% !important;
  }

  /* ─── 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; }
}


/* ─── Mobile-only comic divider strip ─── */
.mobile-divider { display: none; }
@media (max-width: 900px) {
  .mobile-divider {
    display: block;
    overflow: hidden;
    padding: 0;
    background: transparent;
    position: absolute;
    top: 50%;
    left: -20px;
    right: -20px;
    transform: translateY(-50%);
    z-index: 0;
    pointer-events: none;
    margin: 0;
  }
  .solution-image-wrap > .book-container {
    position: relative;
    z-index: 2;
  }
  .mobile-divider-track {
    display: flex;
    gap: 0;
    width: max-content;
    animation: divider-scroll 60s linear infinite;
  }
  .mobile-divider-track img {
    height: 180px;
    width: auto;
    display: block;
    object-fit: cover;
    object-position: top;
    flex-shrink: 0;
  }
  @keyframes divider-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
}


/* ─── 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: tighter gap between open book and the next (solution) section */
@media (max-width: 900px) {
  .story-section { padding-bottom: 0 !important; }
  .synopsis-image { margin-bottom: -140px; position: relative; z-index: 3; }
  /* Extra breathing room above the 3D book + scrolling strip in the solution */
  .solution-section { padding-top: 140px; }
}

/* Free-read CTA (acervo de tirinhas) */
.btn-read-free{background:var(--ink);color:var(--cream);font-size:16px;padding:16px 26px;margin-top:26px;text-transform:none;letter-spacing:.01em;box-shadow:0 6px 0 rgba(0,0,0,.28);text-decoration:none;white-space:normal;max-width:100%;text-align:left;line-height:1.25}
.btn-read-free:hover{background:var(--ink-soft);box-shadow:0 9px 0 rgba(0,0,0,.28)}
.btn-read-free:active{box-shadow:0 3px 0 rgba(0,0,0,.28)}
@media (max-width:640px){.btn-read-free{font-size:14px;padding:14px 20px;margin-top:20px}}
