:root {
  --color-ink: #151312;
  --color-ink-soft: #332d28;
  --color-paper: #fffaf0;
  --color-cream: #f7efe2;
  --color-blush: #efd7cc;
  --color-sage: #71806a;
  --color-clay: #a86f4f;
  --color-honey: #f7c600;
  --color-red: #d51f1f;
  --color-white: #ffffff;
  --color-honey-bright: #ffdf3f;
  --color-border: rgba(21, 19, 18, 0.16);
  --shadow-soft: 0 24px 70px rgba(21, 19, 18, 0.14);
  --shadow-strong: 0 34px 90px rgba(21, 19, 18, 0.32);
  --shadow-card: 0 18px 48px -12px rgba(21, 19, 18, 0.22);
  --shadow-float: 0 40px 120px -32px rgba(21, 19, 18, 0.5);
  --glow-honey: rgba(247, 198, 0, 0.5);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --font-display: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
  --font-body: "Inter", Arial, sans-serif;
  --fs-hero: clamp(2.2rem, 1.1rem + 5.4vw, 3.95rem);
  --fs-h2: clamp(1.95rem, 1.25rem + 3vw, 2.75rem);
  --fs-h3: clamp(1.6rem, 1.2rem + 1.8vw, 2.05rem);
  --ticker-height: 40px;
  --rotate-x: 8deg;
  --rotate-y: -18deg;
  --rotate-z: -4deg;
  --float-y: 0px;
  --guide-y: 0px;
  --guide-rx: 16deg;
  --guide-ry: -10deg;
  --guide-rz: 4deg;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: clip;
  max-width: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-ink);
  background: var(--color-paper);
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

section {
  scroll-margin-top: calc(var(--ticker-height) + 24px);
}

.scroll-progress {
  position: fixed;
  inset: var(--ticker-height) 0 auto 0;
  z-index: 30;
  height: 4px;
  pointer-events: none;
  background: transparent;
}

.scroll-progress span {
  display: block;
  width: calc(var(--scroll-progress, 0) * 100%);
  height: 100%;
  background: var(--color-honey);
  box-shadow: 0 0 18px rgba(247, 198, 0, 0.55);
}

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

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--color-honey);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 20;
  transform: translateY(-160%);
  opacity: 0;
  pointer-events: none;
  padding: 12px 16px;
  border-radius: 6px;
  background: var(--color-honey);
  color: var(--color-ink);
  font-weight: 800;
}

.skip-link:focus-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.launch-ticker {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 40;
  height: var(--ticker-height);
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(215, 31, 31, 0.2);
  background: #fff5e8;
  color: var(--color-red);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.ticker-track {
  display: inline-flex;
  align-items: center;
  gap: 34px;
  min-width: max-content;
  animation: ticker-scroll 22s linear infinite;
  will-change: transform;
}

.ticker-track span {
  position: relative;
  white-space: nowrap;
}

.ticker-track span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -20px;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: currentColor;
  transform: translateY(-50%);
}

@keyframes ticker-scroll {
  to {
    transform: translateX(-50%);
  }
}

.site-header {
  position: absolute;
  inset: var(--ticker-height) 0 auto 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1120px, calc(100% - 48px));
  min-height: 72px;
  margin: 0 auto;
  color: var(--color-white);
}

.brand-mark {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  position: relative;
  padding: 8px 12px 9px 16px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  line-height: 0.9;
  color: var(--color-white);
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.32);
  transform: rotate(-1.4deg);
}

.brand-mark::before {
  content: "";
  position: absolute;
  inset: 5px auto 5px 0;
  width: 4px;
  border-radius: 999px;
  background: var(--color-honey);
  box-shadow: 5px 6px 0 rgba(215, 31, 31, 0.25);
}

.brand-mark::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 10px;
  bottom: 5px;
  height: 8px;
  z-index: -1;
  background: rgba(247, 198, 0, 0.78);
  transform: rotate(-1deg);
}

.brand-mark span,
.brand-mark strong {
  position: relative;
  z-index: 1;
}

.brand-mark strong {
  color: var(--color-ink);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.82);
}

.header-nav a,
.header-cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.header-nav a {
  min-width: 44px;
  justify-content: center;
}

.header-nav a:hover,
.header-cta:hover,
.header-nav a[aria-current="true"] {
  color: var(--color-honey);
}

.header-cta {
  justify-content: center;
  min-width: 164px;
  padding: 0 20px;
  border: 1px solid var(--color-honey);
  border-radius: 6px;
  background: var(--color-honey);
  color: var(--color-ink);
  font-weight: 800;
  transition: background-color 220ms ease, color 220ms ease, border-color 220ms ease;
}

.header-cta:hover {
  border-color: #ffdf3f;
  background: #ffdf3f;
  color: var(--color-ink);
}

.hero {
  position: relative;
  min-height: 84svh;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 70% 16%, rgba(247, 198, 0, 0.12), transparent 30%),
    linear-gradient(90deg, var(--color-ink) 0%, #1f1a16 52%, #2d241f 100%);
}

.hero-bg {
  display: none;
  position: absolute;
  inset: 0;
  z-index: -3;
  background-color: var(--color-ink);
  background-image: url("assets/vanessa-hero-hq.webp");
  background-size: min(84vw, 1120px) auto;
  background-position: right 4% top 6%;
  background-repeat: no-repeat;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--color-ink) 0%, rgba(21, 19, 18, 0.94) 18%, rgba(21, 19, 18, 0.48) 35%, rgba(21, 19, 18, 0) 58%),
    linear-gradient(0deg, var(--color-ink) 0%, rgba(21, 19, 18, 0) 26%);
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(0deg, rgba(21, 19, 18, 0.72) 0%, rgba(21, 19, 18, 0) 34%),
    linear-gradient(90deg, rgba(21, 19, 18, 0.55) 0%, rgba(21, 19, 18, 0.06) 52%, rgba(21, 19, 18, 0.32) 100%);
}

.hero-inner {
  width: min(1120px, calc(100% - 48px));
  min-height: 84svh;
  margin: 0 auto;
  padding: 142px 0 48px;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(340px, 1.04fr);
  align-items: center;
  gap: 64px;
  color: var(--color-white);
}

.hero-copy-panel {
  position: relative;
  z-index: 2;
}

.hero-media {
  position: relative;
  height: min(68svh, 640px);
  min-height: 540px;
  align-self: end;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
  background: rgba(255, 255, 255, 0.04);
}

.hero-media::before,
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.hero-media::before {
  background:
    linear-gradient(90deg, var(--color-ink) 0%, rgba(21, 19, 18, 0.44) 18%, rgba(21, 19, 18, 0) 42%),
    linear-gradient(0deg, var(--color-ink) 0%, rgba(21, 19, 18, 0) 28%);
}

.hero-media::after {
  inset: auto -4px 0 -4px;
  height: 34%;
  background: linear-gradient(0deg, var(--color-ink), rgba(21, 19, 18, 0));
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 14%;
}

.eyebrow {
  margin: 0 0 16px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.3;
  color: var(--color-clay);
  text-transform: uppercase;
  letter-spacing: 0;
}

.eyebrow-dark {
  color: var(--color-honey);
}

.hero h1,
section h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 560px;
  font-size: 62px;
}

.hero-copy {
  max-width: 560px;
  margin: 20px 0 0;
  font-size: 20px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
}

.button {
  position: relative;
  overflow: hidden;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, background-color 220ms ease, color 220ms ease, border-color 220ms ease;
}

.button-ripple {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.46);
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0);
  animation: ripple 560ms ease-out forwards;
}

@keyframes ripple {
  to {
    opacity: 0;
    transform: translate(-50%, -50%) scale(18);
  }
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--color-honey);
  color: var(--color-ink);
  border-color: var(--color-honey);
}

.button-primary:hover {
  background: #ffda30;
  border-color: #ffda30;
}

.button-secondary {
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
}

.button-secondary:hover {
  border-color: var(--color-white);
  background: rgba(255, 255, 255, 0.14);
}

.section-shell {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.section-lead {
  max-width: 620px;
  margin: 20px 0 0;
  color: rgba(21, 19, 18, 0.72);
  font-size: 17px;
  line-height: 1.65;
}

.section-lead.light {
  color: rgba(255, 255, 255, 0.72);
}

.title-slope {
  display: inline-block;
  padding: 0 10px 4px;
  background: var(--color-honey);
  color: var(--color-ink);
  line-height: 0.95;
  transform: rotate(-2.5deg);
  transform-origin: center;
  box-shadow: 7px 8px 0 rgba(215, 31, 31, 0.28);
}

.title-slope-dark {
  box-shadow: 7px 8px 0 rgba(255, 255, 255, 0.14);
}

.text-nowrap {
  white-space: nowrap;
}

.js .reveal {
  opacity: 0;
  transform: translate3d(0, 34px, 0);
  transition: opacity 520ms ease, transform 520ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.tilt-card {
  transform-style: preserve-3d;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
  will-change: transform;
}

.tilt-card:hover {
  border-color: rgba(247, 198, 0, 0.45);
  box-shadow: 0 26px 70px rgba(21, 19, 18, 0.14);
}

.pain-section {
  background: var(--color-ink);
  color: var(--color-white);
  padding: 86px 0 94px;
}

.pain-layout,
.values-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 56px;
  align-items: start;
}

.values-grid {
  grid-template-columns: 1fr;
  gap: 38px;
}

.values-grid > div:first-child {
  max-width: 760px;
}

.pain-layout {
  grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1.14fr);
}

.pain-intro {
  position: sticky;
  top: calc(var(--ticker-height) + 84px);
}

.pain-section h2,
.values-section h2 {
  font-size: 44px;
}

.pain-stack {
  display: grid;
  gap: 32px;
  padding-bottom: 12px;
}

.pain-card,
.deliverables article,
.offer-card {
  border-radius: 8px;
}

.pain-card {
  position: relative;
  min-height: 264px;
  padding: 34px 34px 32px;
  border: 1px solid rgba(247, 198, 0, 0.34);
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.7), rgba(255, 250, 240, 0.9)),
    radial-gradient(circle at 92% 18%, rgba(247, 198, 0, 0.18), transparent 24%),
    var(--color-paper);
  color: var(--color-ink);
  overflow: hidden;
  box-shadow: 0 26px 74px rgba(0, 0, 0, 0.2);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.pain-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: var(--color-honey);
}

.pain-card::after {
  content: "";
  position: absolute;
  right: 24px;
  bottom: 20px;
  width: 72px;
  height: 72px;
  border: 1px solid rgba(21, 19, 18, 0.08);
  transform: rotate(-12deg);
}

.stack-card {
  position: sticky;
  top: calc(var(--ticker-height) + 82px);
  z-index: calc(4 + var(--card-index));
  transform: translateY(calc(var(--card-index) * 10px));
}

.stack-card:nth-child(2) {
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.62), rgba(255, 240, 191, 0.92)),
    #fff0bf;
}

.stack-card:nth-child(3) {
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.66), rgba(245, 234, 216, 0.94)),
    #f5ead8;
}

.stack-card:nth-child(4) {
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.68), rgba(255, 249, 233, 0.94)),
    #fff9e9;
}

.pain-card:hover {
  border-color: rgba(247, 198, 0, 0.7);
  box-shadow: 0 38px 100px rgba(0, 0, 0, 0.28);
  transform: translateY(-2px);
}

.card-kicker {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  margin-bottom: 24px;
  padding: 0 11px;
  border-radius: 6px;
  background: var(--color-ink);
  color: var(--color-honey);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  transform: rotate(-2deg);
  transform-origin: left center;
}

.pain-card h3,
.deliverables h3,
.method-list h3,
.offer-card h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.2;
}

.pain-card p,
.section-heading p,
.ebook-copy p,
.deliverables p,
.method-list li,
.values-section p,
.whatsapp-box p {
  font-size: 17px;
  line-height: 1.7;
}

.pain-card p {
  margin: 16px 0 0;
  color: rgba(21, 19, 18, 0.72);
}

.pain-card strong {
  display: block;
  margin-top: 26px;
  color: var(--color-ink);
  font-size: 18px;
  line-height: 1.45;
}

.testimonials-section {
  padding: 78px 0 68px;
  background: linear-gradient(180deg, var(--color-paper) 0%, var(--color-cream) 100%);
  overflow: hidden;
}

.section-heading {
  margin-bottom: 42px;
}

.section-heading.narrow {
  max-width: 760px;
}

.section-heading h2,
.ebook-copy h2,
.whatsapp-box h2 {
  font-size: 44px;
}

.section-heading p,
.ebook-copy p,
.values-section p,
.whatsapp-box p {
  margin: 20px 0 0;
  color: rgba(21, 19, 18, 0.72);
}

.testimonial-marquee {
  width: 100%;
  overflow-x: hidden;
  overflow-y: visible;
  display: grid;
  gap: 10px;
  padding: 6px 0 12px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.testimonial-track {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  width: max-content;
  animation: testimonial-scroll 46s linear infinite;
  will-change: transform;
}

.testimonial-track-reverse {
  animation-name: testimonial-scroll-reverse;
  animation-duration: 52s;
}

.testimonial-shot {
  width: min(72vw, 278px);
  height: auto;
  margin: 0;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  padding: 10px;
  border: 1px solid rgba(21, 19, 18, 0.08);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 250, 240, 0.86)),
    var(--color-white);
  box-shadow: 0 14px 34px rgba(21, 19, 18, 0.07);
}

.testimonial-shot img {
  width: 100%;
  height: auto;
  max-height: 320px;
  object-fit: contain;
  border-radius: 8px;
  background: var(--color-white);
}

.testimonial-shot-long {
  width: min(72vw, 300px);
}

.testimonial-shot-portrait {
  width: min(70vw, 300px);
}

.testimonial-shot-square {
  width: min(72vw, 286px);
}

.testimonial-shot-wide {
  width: min(80vw, 340px);
}

.testimonial-shot-portrait img {
  max-height: 340px;
}

.testimonial-shot-square img {
  max-height: 280px;
}

.testimonial-shot-wide img {
  max-height: 176px;
}

.testimonial-shot figcaption {
  margin-top: 10px;
  color: rgba(21, 19, 18, 0.66);
  font-size: 14px;
  font-weight: 800;
}

@keyframes testimonial-scroll {
  to {
    transform: translateX(-50%);
  }
}

@keyframes testimonial-scroll-reverse {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

.ebook-section {
  padding: 92px 0;
  background: var(--color-paper);
}

.ebook-flow {
  display: grid;
  gap: 42px;
}

.ebook-flow > .section-heading {
  margin-bottom: 0;
}

.ebook-copy p {
  max-width: 640px;
}

.ebook-details {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: 34px;
  align-items: start;
}

.ebook-details > .eyebrow,
.ebook-details > h3,
.ebook-details > p {
  grid-column: 1;
}

.ebook-details h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 42px;
  line-height: 1.05;
}

.ebook-details .deliverables {
  grid-column: 2;
  grid-row: 1 / span 3;
  margin-top: 0;
}

.deliverables {
  display: grid;
  gap: 16px;
  margin-top: 34px;
}

.deliverables article {
  padding: 24px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
}

.deliverables article.guide-note {
  background: linear-gradient(135deg, rgba(247, 198, 0, 0.16), rgba(255, 255, 255, 0.94));
}

.deliverables p {
  margin: 12px 0 0;
  color: rgba(21, 19, 18, 0.7);
}

.product-motion {
  position: relative;
  display: grid;
  gap: 22px;
  width: min(100%, 880px);
  min-height: auto;
  margin: 0 auto;
  align-content: center;
  perspective: 1300px;
  contain: layout paint style;
}

.motion-stage {
  position: relative;
  min-height: 580px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background:
    radial-gradient(circle at 46% 44%, rgba(247, 198, 0, 0.16), transparent 28%),
    linear-gradient(145deg, rgba(255, 250, 240, 0.96), rgba(247, 239, 226, 0.64)),
    linear-gradient(25deg, rgba(113, 128, 106, 0.12), rgba(247, 198, 0, 0.16));
  overflow: hidden;
  isolation: isolate;
  transform: translateZ(0);
}

.motion-stage::before {
  content: "";
  position: absolute;
  inset: 12% 16%;
  border: 1px solid rgba(21, 19, 18, 0.08);
  transform: rotate(-7deg) skewX(-4deg);
}

.motion-stage::after {
  content: "";
  position: absolute;
  left: 24%;
  right: 24%;
  bottom: 10%;
  height: 42px;
  z-index: 1;
  border-radius: 50%;
  background: rgba(21, 19, 18, 0.18);
  filter: blur(22px);
}

.rotating-book {
  position: relative;
  z-index: 2;
  width: min(40%, 330px);
  transform-style: preserve-3d;
  transform-origin: center center;
  transform:
    translate3d(0, var(--float-y), 0)
    rotateX(var(--rotate-x))
    rotateY(var(--rotate-y))
    rotateZ(var(--rotate-z));
  transition: none;
  will-change: transform;
  backface-visibility: hidden;
  filter: drop-shadow(0 26px 34px rgba(21, 19, 18, 0.2));
}

.rotating-book::before,
.rotating-book::after {
  content: "";
  position: absolute;
  pointer-events: none;
  backface-visibility: hidden;
}

.rotating-book::before {
  top: 3.4%;
  right: -17px;
  bottom: 2.2%;
  width: 25px;
  z-index: 1;
  border-radius: 0 7px 7px 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(226, 221, 208, 0.98)),
    repeating-linear-gradient(180deg, rgba(21, 19, 18, 0.08) 0 1px, transparent 1px 6px);
  transform: rotateY(76deg) translateZ(-3px);
  transform-origin: left center;
  box-shadow: 10px 16px 24px rgba(21, 19, 18, 0.12);
}

.rotating-book::after {
  left: 6%;
  right: -14px;
  bottom: -20px;
  height: 28px;
  z-index: 0;
  border-radius: 0 0 9px 9px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(224, 220, 210, 0.98)),
    repeating-linear-gradient(90deg, rgba(21, 19, 18, 0.06) 0 1px, transparent 1px 7px);
  transform: rotateX(-72deg) translateZ(-4px);
  transform-origin: top center;
}

.rotating-book img {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  aspect-ratio: 2812 / 3977;
  object-fit: contain;
  border-radius: 7px;
  background: #f7c600;
  box-shadow:
    0 0 0 1px rgba(21, 19, 18, 0.08),
    12px 14px 0 rgba(255, 255, 255, 0.76),
    var(--shadow-strong);
  transform: translateZ(22px);
}

.book-spine {
  position: absolute;
  inset: 1.2% auto 1.2% -15px;
  width: 25px;
  border-radius: 6px 0 0 6px;
  background: linear-gradient(90deg, #2a251b 0%, #f7c600 35%, #a87e00 100%);
  transform: rotateY(-82deg) translateZ(12px);
  transform-origin: right center;
  box-shadow: -8px 18px 34px rgba(21, 19, 18, 0.2);
}

.guide-floating {
  position: absolute;
  right: 7%;
  bottom: 7%;
  z-index: 3;
  width: min(23%, 150px);
  perspective: 900px;
  transform-style: preserve-3d;
  transform:
    translate3d(0, var(--guide-y), 0)
    rotateX(var(--guide-rx))
    rotateY(var(--guide-ry))
    rotateZ(var(--guide-rz));
  transform-origin: center center;
  transition: none;
  will-change: transform;
  filter: drop-shadow(0 18px 20px rgba(21, 19, 18, 0.2));
}

.guide-floating::before,
.guide-floating::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.guide-floating::before {
  top: 4%;
  right: -11px;
  bottom: 3%;
  width: 16px;
  z-index: 1;
  border-radius: 0 5px 5px 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(223, 219, 207, 0.96)),
    repeating-linear-gradient(180deg, rgba(21, 19, 18, 0.08) 0 1px, transparent 1px 5px);
  transform: rotateY(74deg) translateZ(-2px);
  transform-origin: left center;
}

.guide-floating::after {
  left: 8%;
  right: -9px;
  bottom: -12px;
  height: 17px;
  z-index: 0;
  border-radius: 0 0 6px 6px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(222, 218, 206, 0.98));
  transform: rotateX(-72deg) translateZ(-2px);
  transform-origin: top center;
}

.guide-floating img {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  aspect-ratio: 1191 / 1685;
  object-fit: contain;
  border-radius: 5px;
  background: #f7c600;
  box-shadow:
    0 0 0 1px rgba(21, 19, 18, 0.08),
    7px 9px 0 rgba(255, 255, 255, 0.82);
  transform: translateZ(14px);
  backface-visibility: hidden;
}

.method-strip {
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
  margin-top: 68px;
  padding: 36px;
  border: 1px solid var(--color-border);
  background: var(--color-cream);
}

.method-photo {
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 4 / 5;
}

.method-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.method-list h3 {
  font-family: var(--font-display);
  font-size: 42px;
  line-height: 1.05;
}

.method-list ul,
.offer-card ul {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.method-list li,
.offer-card li {
  position: relative;
  padding-left: 26px;
}

.method-list li + li,
.offer-card li + li {
  margin-top: 14px;
}

.method-list li::before,
.offer-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-sage);
}

.values-section {
  padding: 92px 0;
  background:
    radial-gradient(circle at 18% 8%, rgba(247, 198, 0, 0.16), transparent 28%),
    var(--color-ink);
  color: var(--color-white);
}

.values-section p {
  color: rgba(255, 255, 255, 0.74);
}

.pricing-cards {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: 18px;
  align-items: stretch;
}

.offer-card {
  position: relative;
  padding: 26px;
  background: var(--color-paper);
  color: var(--color-ink);
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.24);
  overflow: hidden;
}

.offer-card .offer-label {
  margin: 0 0 12px;
  color: var(--color-clay);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.offer-card h3 {
  font-family: var(--font-display);
  font-size: 34px;
  line-height: 1;
}

.offer-card li {
  line-height: 1.6;
  color: rgba(21, 19, 18, 0.72);
}

.offer-summary {
  margin: 14px 0 0;
  color: rgba(21, 19, 18, 0.72) !important;
  font-size: 15px !important;
  line-height: 1.55 !important;
}

.offer-card-featured {
  border: 2px solid var(--color-honey);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(255, 250, 240, 0.96)),
    var(--color-paper);
  transform: translateY(-12px);
}

.offer-card-featured::before {
  content: "Mais escolhido";
  position: absolute;
  top: 16px;
  right: -30px;
  width: 172px;
  padding: 7px 0;
  background: var(--color-honey);
  color: var(--color-ink);
  font-size: 10px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(32deg);
}

.price-block {
  display: grid;
  gap: 6px;
  margin: 24px 0 18px;
  padding: 20px;
  border: 1px solid rgba(21, 19, 18, 0.14);
  border-radius: 8px;
  background: var(--color-white);
}

.anchor-box {
  display: grid;
  gap: 4px;
  margin: 20px 0 0;
  padding: 16px;
  border: 1px dashed rgba(21, 19, 18, 0.28);
  border-radius: 8px;
  background: rgba(247, 198, 0, 0.14);
}

.anchor-box span {
  color: var(--color-clay);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.anchor-box strong {
  font-size: 18px;
}

.price-block span {
  font-size: 14px;
  font-weight: 800;
  color: var(--color-clay);
}

.price-block strong {
  font-size: 32px;
}

.price-block em {
  color: var(--color-sage);
  font-size: 14px;
  font-style: normal;
  font-weight: 800;
}

.offer-card .button-secondary {
  border-color: rgba(21, 19, 18, 0.24);
  background: rgba(21, 19, 18, 0.05);
  color: var(--color-ink);
}

.offer-card .button-secondary:hover {
  border-color: rgba(21, 19, 18, 0.44);
  background: rgba(21, 19, 18, 0.08);
}

.checkout-link[data-checkout-placeholder]::after {
  content: attr(data-checkout-placeholder);
  position: absolute;
  inset: auto 12px 5px;
  color: rgba(21, 19, 18, 0.58);
  font-size: 9px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.offer-card .button-primary.checkout-link::after {
  color: rgba(21, 19, 18, 0.68);
}

.button-full {
  width: 100%;
}

.whatsapp-section {
  padding: 90px 0;
  background: var(--color-honey);
}

.whatsapp-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

.whatsapp-box h2 {
  max-width: 720px;
}

.button-whatsapp {
  min-width: 220px;
  gap: 10px;
  background: var(--color-ink);
  color: var(--color-white);
  border-color: var(--color-ink);
}

.button-icon {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  fill: currentColor;
}

.button-whatsapp:hover {
  background: var(--color-ink-soft);
  border-color: var(--color-ink-soft);
}

/* ---- Grupo Núcleo TPM CTA ---- */
.group-cta {
  padding: clamp(40px, 7vw, 88px) 0;
  background: var(--color-ink);
}

.group-cta-box {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
  padding: clamp(36px, 6vw, 66px) clamp(22px, 5vw, 56px);
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.16), rgba(21, 19, 18, 0.4));
  border: 1px solid rgba(37, 211, 102, 0.34);
  box-shadow: var(--shadow-float);
}

.group-cta-glow {
  position: absolute;
  top: -32%;
  left: 50%;
  transform: translateX(-50%);
  width: 72%;
  height: 72%;
  background: radial-gradient(circle, rgba(37, 211, 102, 0.42), transparent 70%);
  filter: blur(64px);
  pointer-events: none;
}

.group-cta-copy {
  position: relative;
  max-width: 640px;
}

.group-cta-copy .eyebrow {
  color: #25d366;
}

.group-cta-copy h2 {
  color: var(--color-white);
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  margin-bottom: 16px;
}

.group-cta-copy p {
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(15px, 2vw, 17px);
  line-height: 1.62;
}

.button-group-cta {
  position: relative;
  min-width: 240px;
  gap: 10px;
  background: linear-gradient(135deg, #1faf54, #25d366);
  color: #052b13;
  border-color: #25d366;
  box-shadow: 0 20px 50px -16px rgba(37, 211, 102, 0.7);
}

.button-group-cta:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #25d366, #34e07a);
  border-color: #34e07a;
}

.site-footer {
  position: relative;
  padding: 34px 0 38px;
  background:
    radial-gradient(circle at 18% 0%, rgba(247, 198, 0, 0.16), transparent 34%),
    linear-gradient(135deg, #151312 0%, #211b16 100%);
  color: rgba(255, 255, 255, 0.72);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--color-honey), #ffdf3f, rgba(247, 198, 0, 0.18));
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) minmax(220px, auto);
  align-items: center;
  gap: 24px;
  font-size: 14px;
}

.footer-brand {
  display: grid;
  gap: 8px;
  position: relative;
  padding-left: 18px;
}

.footer-brand::before {
  content: "";
  position: absolute;
  inset: 2px auto 2px 0;
  width: 4px;
  border-radius: 999px;
  background: var(--color-honey);
}

.footer-brand strong {
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1;
  color: var(--color-white);
}

.footer-rights {
  justify-self: end;
  text-align: right;
  color: rgba(255, 255, 255, 0.66);
}

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

  .js .reveal {
    opacity: 1;
    transform: none;
  }

  .rotating-book,
  .guide-floating {
    transform: none;
    filter: none;
    transition: none;
  }

  .ticker-track,
  .testimonial-track,
  .testimonial-track-reverse {
    animation: none;
  }

  .button-ripple {
    display: none;
  }
}

@media (max-width: 980px) {
  .site-header {
    width: min(100% - 32px, 720px);
  }

  .header-nav {
    display: none;
  }

  .hero {
    min-height: 86svh;
  }

  .hero-bg {
    display: block;
    background-position: 62% 16%;
  }

  .hero-media {
    display: none;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(21, 19, 18, 0.92) 0%, rgba(21, 19, 18, 0.72) 58%, rgba(21, 19, 18, 0.24) 100%),
      linear-gradient(0deg, rgba(21, 19, 18, 0.44), rgba(21, 19, 18, 0.1) 55%);
  }

  .hero-inner {
    min-height: 86svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 126px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero-copy {
    font-size: 19px;
  }

  .pain-layout,
  .values-grid,
  .method-strip {
    grid-template-columns: 1fr;
  }

  .pricing-cards {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .pain-intro {
    position: static;
  }

  .pain-section h2,
  .section-heading h2,
  .ebook-copy h2,
  .values-section h2,
  .whatsapp-box h2 {
    font-size: 38px;
  }

  .ebook-details {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .ebook-details > .eyebrow,
  .ebook-details > h3,
  .ebook-details > p,
  .ebook-details .deliverables {
    grid-column: auto;
    grid-row: auto;
  }

  .ebook-details h3 {
    font-size: 36px;
  }

  .motion-stage {
    min-height: 500px;
  }

  .rotating-book {
    width: min(42%, 300px);
  }

  .guide-floating {
    right: 6%;
    bottom: 7%;
    width: min(22%, 136px);
  }

  .whatsapp-box {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  :root {
    --ticker-height: 38px;
  }

  .site-header,
  .section-shell,
  .hero-inner {
    width: calc(100% - 32px);
  }

  .site-header {
    min-height: 70px;
  }

  .brand-mark {
    padding-left: 14px;
    font-size: 15px;
  }

  .header-cta {
    min-width: 150px;
    padding: 0 14px;
    font-size: 14px;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-bg {
    display: block;
    background-color: var(--color-ink);
    background-size: 100% auto;
    background-position: center top;
  }

  .hero-media {
    display: none;
  }

  .hero-bg::after {
    display: none;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(21, 19, 18, 0.02) 0%, rgba(21, 19, 18, 0.08) 28%, rgba(21, 19, 18, 0.42) 42%, rgba(21, 19, 18, 0.82) 54%, rgba(21, 19, 18, 0.97) 66%, #151312 82%, #151312 100%),
      linear-gradient(90deg, rgba(21, 19, 18, 0.32), rgba(21, 19, 18, 0.08) 38%, rgba(21, 19, 18, 0.36));
  }

  .hero-inner {
    min-height: 100svh;
    padding: 300px 0 36px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    text-align: center;
  }

  .hero .eyebrow {
    margin-bottom: 10px;
    color: var(--color-honey);
    font-size: 12px;
  }

  .hero h1 {
    max-width: 356px;
    font-size: 34px;
    line-height: 1.04;
  }

  .hero h1 .title-slope {
    padding: 0 8px 3px;
    box-shadow: 5px 6px 0 rgba(215, 31, 31, 0.28);
    transform: rotate(-2deg);
  }

  .hero-copy {
    max-width: 356px;
    margin-top: 16px;
    font-size: 17px;
    line-height: 1.5;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    width: 100%;
    margin-top: 24px;
  }

  .button {
    width: 100%;
    min-height: 52px;
    text-align: center;
  }

  .pain-section,
  .testimonials-section,
  .ebook-section,
  .values-section,
  .whatsapp-section {
    padding: 74px 0;
  }

  .testimonials-section {
    padding: 64px 0 54px;
  }

  .pain-layout,
  .values-grid {
    gap: 34px;
  }

  .pain-section h2,
  .section-heading h2,
  .ebook-copy h2,
  .values-section h2,
  .whatsapp-box h2 {
    font-size: 32px;
    line-height: 1.06;
  }

  .pain-card {
    min-height: 230px;
    padding: 24px 22px 24px 26px;
  }

  .pain-card::after {
    width: 52px;
    height: 52px;
  }

  .stack-card {
    top: calc(var(--ticker-height) + 20px);
    transform: translateY(calc(var(--card-index) * 9px));
  }

  .testimonial-marquee {
    gap: 12px;
    padding: 6px 0 14px;
  }

  .testimonial-track {
    gap: 12px;
    animation-duration: 52s;
  }

  .testimonial-track-reverse {
    animation-duration: 58s;
  }

  .testimonial-shot {
    padding: 7px;
  }

  .testimonial-shot-long {
    width: min(78vw, 260px);
  }

  .testimonial-shot-portrait {
    width: min(78vw, 255px);
  }

  .testimonial-shot-square {
    width: min(74vw, 238px);
  }

  .testimonial-shot-wide {
    width: min(80vw, 270px);
  }

  .testimonial-shot-long img {
    max-height: 520px;
  }

  .testimonial-shot-portrait img {
    max-height: 430px;
  }

  .testimonial-shot-square img {
    max-height: 236px;
  }

  .testimonial-shot-wide img {
    max-height: 158px;
  }

  .product-motion {
    gap: 16px;
  }

  .motion-stage {
    min-height: 390px;
  }

  .rotating-book {
    width: min(56%, 214px);
  }

  .guide-floating {
    right: 3%;
    bottom: 8%;
    width: min(23%, 88px);
  }

  .motion-stage::after {
    height: 28px;
    filter: blur(16px);
  }

  .rotating-book {
    filter: drop-shadow(0 18px 24px rgba(21, 19, 18, 0.18));
  }

  .guide-floating {
    filter: drop-shadow(0 10px 14px rgba(21, 19, 18, 0.18));
  }

  .ebook-flow {
    gap: 32px;
  }

  .ebook-details {
    gap: 18px;
  }

  .ebook-details h3 {
    font-size: 30px;
    line-height: 1.08;
  }

  .method-strip {
    margin-top: 42px;
    padding: 18px;
    gap: 28px;
  }

  .method-list h3,
  .offer-card h3 {
    font-size: 30px;
  }

  .pricing-cards {
    grid-template-columns: 1fr;
  }

  .offer-card {
    padding: 22px;
  }

  .offer-card-featured {
    transform: none;
  }

  .offer-card ul {
    margin-top: 18px;
  }

  .offer-card li + li {
    margin-top: 10px;
  }

  .price-block {
    margin: 18px 0 14px;
    padding: 16px;
  }

  .price-block strong {
    font-size: 28px;
  }

  .checkout-link[data-checkout-placeholder] {
    padding-bottom: 12px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  .footer-rights {
    justify-self: start;
    text-align: left;
  }
}

/* =========================================================
   ELEVATION LAYER — atmosphere, motion & conversion polish
   ========================================================= */

/* Fluid typography (overrides fixed sizes; clamp handles mobile) */
.hero h1 {
  font-size: var(--fs-hero);
  letter-spacing: -0.015em;
}

.pain-section h2,
.values-section h2,
.section-heading h2,
.ebook-copy h2,
.whatsapp-box h2,
.authority-copy h2,
.faq-heading h2 {
  font-size: var(--fs-h2);
  letter-spacing: -0.01em;
}

.ebook-details h3,
.method-list h3 {
  font-size: var(--fs-h3);
}

.eyebrow {
  letter-spacing: 0.14em;
}

/* Film-grain + vignette atmosphere over the whole page */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9;
  pointer-events: none;
  opacity: 0.28;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.45'/%3E%3C/svg%3E");
}

/* Soft animated auras for dark sections */
.hero::before,
.values-section::before,
.pain-section::before {
  content: "";
  position: absolute;
  z-index: 0;
  width: 60vw;
  max-width: 760px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, var(--glow-honey), transparent 62%);
  filter: blur(28px);
  opacity: 0.5;
  pointer-events: none;
  animation: aura-drift 16s var(--ease-out) infinite alternate;
}

.hero::before {
  top: -14%;
  right: -8%;
}

.hero-inner {
  position: relative;
  z-index: 1;
}

.values-section::before {
  bottom: -18%;
  left: -10%;
  opacity: 0.4;
}

.pain-section::before {
  top: 8%;
  left: 50%;
  opacity: 0.28;
  animation-duration: 21s;
}

@keyframes aura-drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(-4%, 6%, 0) scale(1.12); }
}

.pain-section,
.values-section {
  position: relative;
  isolation: isolate;
}

.values-section {
  overflow: hidden;
}

.pain-section .section-shell,
.values-section .section-shell {
  position: relative;
  z-index: 1;
}

/* ---- Hero polish ---- */
.eyebrow.eyebrow-glow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 17px;
  border: 1px solid rgba(247, 198, 0, 0.22);
  border-radius: 999px;
  background: rgba(247, 198, 0, 0.07);
  color: #f1ce7c;
  font-weight: 600;
  letter-spacing: 0.08em;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

.eyebrow-spark {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  fill: #f1ce7c;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 20px;
  margin-top: 26px;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 600;
}

.hero-trust li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-trust svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  stroke: var(--color-honey);
  fill: none;
  stroke-width: 2;
}

.hero-media img {
  transform: translate3d(0, var(--hero-parallax, 0px), 0) scale(1.12);
  transition: transform 120ms linear;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 22px;
  z-index: 3;
  display: grid;
  justify-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transform: translateX(-50%);
  animation: cue-bob 2.6s ease-in-out infinite;
}

.scroll-cue span {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  position: relative;
}

.scroll-cue span::after {
  content: "";
  position: absolute;
  top: 7px;
  left: 50%;
  width: 4px;
  height: 8px;
  border-radius: 999px;
  background: var(--color-honey);
  transform: translateX(-50%);
  animation: cue-dot 2.6s ease-in-out infinite;
}

@keyframes cue-bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

@keyframes cue-dot {
  0%, 100% { opacity: 0; transform: translate(-50%, 0); }
  40% { opacity: 1; transform: translate(-50%, 9px); }
}

/* ---- Pointer spotlight for cards ---- */
.pain-card,
.offer-card,
.faq-item {
  --mx: 50%;
  --my: 50%;
}

.pain-card::before {
  z-index: 0;
}

.pain-card > *,
.offer-card > * {
  position: relative;
  z-index: 1;
}

.pain-card .spotlight,
.offer-card .spotlight {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  opacity: 0;
  pointer-events: none;
  background: radial-gradient(220px circle at var(--mx) var(--my), rgba(247, 198, 0, 0.22), transparent 65%);
  transition: opacity 260ms ease;
}

.pain-card:hover .spotlight,
.offer-card:hover .spotlight {
  opacity: 1;
}

/* ---- Buttons: sheen + magnetism ---- */
.button {
  --mag-x: 0px;
  --mag-y: 0px;
  transition: transform 240ms var(--ease-spring), background-color 220ms ease, color 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.button:hover {
  transform: translate3d(var(--mag-x), calc(var(--mag-y) - 2px), 0);
}

.button-primary {
  box-shadow: 0 14px 30px -10px rgba(247, 198, 0, 0.7);
}

.button-primary:hover {
  box-shadow: 0 20px 44px -10px rgba(247, 198, 0, 0.85);
}

.button-primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: skewX(-18deg);
  transition: left 620ms var(--ease-out);
  pointer-events: none;
}

.button-primary:hover::after {
  left: 130%;
}

/* ---- Authority / Sobre a Vanessa (full-bleed photo + glass card) ---- */
.authority-section {
  position: relative;
  display: flex;
  align-items: center;
  min-height: min(760px, 94vh);
  padding: clamp(72px, 10vw, 130px) 0;
  overflow: hidden;
  isolation: isolate;
  background: var(--color-ink);
}

.authority-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("assets/vanessa-portrait-hq.webp") center 18% / cover no-repeat;
}

.authority-scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(21, 19, 18, 0.82) 0%, rgba(21, 19, 18, 0.5) 44%, rgba(21, 19, 18, 0.05) 72%),
    linear-gradient(0deg, rgba(21, 19, 18, 0.62), rgba(21, 19, 18, 0) 46%);
}

.authority-inner {
  display: flex;
  justify-content: flex-start;
  width: min(1120px, calc(100% - 48px));
}

.authority-glass {
  max-width: 540px;
  padding: clamp(26px, 3.4vw, 44px);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(18, 15, 12, 0.62);
  -webkit-backdrop-filter: blur(18px) saturate(1.25);
  backdrop-filter: blur(18px) saturate(1.25);
  box-shadow: 0 34px 90px -32px rgba(0, 0, 0, 0.78);
  color: #fff;
}

.authority-glass h2 {
  color: #fff;
}

.authority-glass p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: 17px;
  line-height: 1.7;
}

.authority-glass .signature {
  margin-top: 22px;
  font-family: var(--font-display);
  font-size: 22px;
  font-style: italic;
  color: var(--color-honey);
}

.authority-quote {
  margin: 24px 0 0;
  padding: 18px 22px;
  border-left: 4px solid var(--color-honey);
  border-radius: 0 10px 10px 0;
  background: rgba(255, 255, 255, 0.1);
  font-family: var(--font-display);
  font-size: 19px;
  line-height: 1.45;
  color: #fff;
}

/* ---- Trust badges row (near pricing) ---- */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 28px;
  margin: 34px auto 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 600;
}

.trust-badges li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.trust-badges svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  stroke: var(--color-honey);
  fill: none;
  stroke-width: 1.9;
}

/* ---- FAQ accordion ---- */
.faq-section {
  padding: 92px 0;
  background: var(--color-paper);
}

.faq-heading {
  max-width: 720px;
  margin: 0 auto 40px;
  text-align: center;
}

.faq-heading p {
  margin: 18px 0 0;
  color: rgba(21, 19, 18, 0.7);
  font-size: 17px;
  line-height: 1.65;
}

.faq-list {
  display: grid;
  gap: 14px;
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  position: relative;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  background: var(--color-white);
  overflow: hidden;
  transition: border-color 220ms ease, box-shadow 220ms ease;
}

.faq-item[open] {
  border-color: rgba(247, 198, 0, 0.6);
  box-shadow: var(--shadow-card);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--color-ink);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "";
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
  border-right: 2.4px solid var(--color-clay);
  border-bottom: 2.4px solid var(--color-clay);
  transform: rotate(45deg);
  transition: transform 260ms var(--ease-out);
}

.faq-item[open] summary::after {
  transform: rotate(-135deg);
}

.faq-answer {
  padding: 0 24px 24px;
}

.faq-item[open] .faq-answer {
  animation: faq-reveal 340ms var(--ease-out);
}

@keyframes faq-reveal {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.faq-answer p {
  margin: 0;
  color: rgba(21, 19, 18, 0.74);
  font-size: 16px;
  line-height: 1.7;
}

/* ---- Sticky mobile buy bar ---- */
.mobile-cta {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 45;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(21, 19, 18, 0.94);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(247, 198, 0, 0.3);
  transform: translateY(110%);
  transition: transform 320ms var(--ease-out);
}

.mobile-cta.is-visible {
  transform: translateY(0);
}

.mobile-cta .mobile-cta-info {
  display: grid;
  gap: 2px;
  color: var(--color-white);
  line-height: 1.1;
}

.mobile-cta .mobile-cta-info span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-honey);
}

.mobile-cta .mobile-cta-info strong {
  font-size: 19px;
}

.mobile-cta .button {
  min-height: 48px;
  width: auto;
  flex: 0 0 auto;
  padding: 0 20px;
}

/* ---- Reveal refinement (blur-in + spring) ---- */
.js .reveal {
  transform: translate3d(0, 38px, 0);
  filter: blur(6px);
  transition: opacity 640ms var(--ease-out), transform 700ms var(--ease-out), filter 640ms var(--ease-out);
}

.js .reveal.is-visible {
  filter: blur(0);
}

/* ---- Marquee: pause on hover ---- */
.testimonial-marquee:hover .testimonial-track {
  animation-play-state: paused;
}

/* ---- 3D book stage (three.js) ---- */
.product-motion {
  perspective: none;
  contain: none;
}

.book-stage {
  position: relative;
  width: 100%;
  height: clamp(420px, 50vw, 600px);
  border-radius: 16px;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 38%, rgba(247, 198, 0, 0.2), transparent 56%),
    linear-gradient(160deg, rgba(255, 250, 240, 0.95), rgba(247, 239, 226, 0.5));
  box-shadow: inset 0 0 130px rgba(21, 19, 18, 0.07);
}

.book-stage::after {
  content: "";
  position: absolute;
  left: 22%;
  right: 22%;
  bottom: 9%;
  height: 40px;
  border-radius: 50%;
  background: rgba(21, 19, 18, 0.22);
  filter: blur(26px);
  pointer-events: none;
}

#book3d-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100% !important;
  height: 100% !important;
  display: block;
  opacity: 0;
  transition: opacity 700ms var(--ease-out);
  touch-action: pan-y;
}

.book-fallback {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  place-items: center;
  transition: opacity 600ms ease;
}

.book-fallback-main {
  width: min(46%, 270px);
  border-radius: 8px;
  box-shadow: var(--shadow-strong);
  transform: rotate(-3deg);
}

.book-fallback-guide {
  position: absolute;
  right: 14%;
  bottom: 12%;
  width: min(23%, 124px);
  border-radius: 6px;
  box-shadow: var(--shadow-card);
  transform: rotate(5deg);
}

.book-hint {
  margin: 16px 0 0;
  text-align: center;
  color: var(--color-clay);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* ---- Reduced-motion guards for new effects ---- */
@media (prefers-reduced-motion: reduce) {
  body::after,
  .hero::before,
  .values-section::before,
  .pain-section::before,
  .eyebrow.eyebrow-glow::before,
  .scroll-cue,
  .button-primary::after {
    animation: none !important;
  }

  .hero-media img {
    transform: scale(1.04) !important;
  }

  .js .reveal {
    filter: none;
  }
}

/* ---- Responsive for new components ---- */
@media (max-width: 980px) {
  .authority-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .authority-photo {
    max-height: 480px;
    aspect-ratio: 16 / 12;
  }
}

@media (max-width: 640px) {
  .authority-section,
  .faq-section {
    padding: 72px 0;
  }

  .scroll-cue {
    display: none;
  }

  .mobile-cta {
    display: flex;
  }

  .faq-item summary {
    font-size: 17px;
    padding: 18px 18px;
  }

  .authority-quote {
    font-size: 19px;
  }

  .hero-trust {
    gap: 8px 16px;
    font-size: 13px;
  }
}

/* =========================================================
   ROUND 2 — logo fix, pricing, testimonials, whatsapp motion
   ========================================================= */

/* ---- Brand wordmark: legible "Soares" highlight (fixes mobile overlap) ---- */
.brand-mark::after {
  display: none;
}

.brand-mark strong {
  color: var(--color-ink);
  padding: 1px 7px 2px;
  border-radius: 4px;
  background: var(--color-honey);
  box-shadow: 0 2px 0 rgba(215, 31, 31, 0.22);
}

/* ---- Pricing: clearer, more magnetic cards ---- */
.offer-card {
  border: 1px solid var(--color-border);
  border-radius: 16px;
  transition: transform 320ms var(--ease-out), box-shadow 320ms var(--ease-out), border-color 280ms ease;
}

.offer-card:not(.offer-card-featured):hover {
  transform: translateY(-6px);
  border-color: rgba(247, 198, 0, 0.5);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.32);
}

.offer-card-featured {
  border: 2px solid var(--color-honey);
  border-radius: 18px;
  transform: translateY(-14px) scale(1.015);
  box-shadow: 0 26px 72px rgba(0, 0, 0, 0.34), 0 0 54px -14px rgba(247, 198, 0, 0.5);
  animation: featured-glow 3.8s ease-in-out infinite;
}

.offer-card-featured:hover {
  transform: translateY(-18px) scale(1.025);
}

@keyframes featured-glow {
  0%, 100% { box-shadow: 0 26px 72px rgba(0, 0, 0, 0.34), 0 0 48px -16px rgba(247, 198, 0, 0.42); }
  50% { box-shadow: 0 26px 72px rgba(0, 0, 0, 0.34), 0 0 82px -6px rgba(247, 198, 0, 0.72); }
}

/* Refined "most chosen" badge */
.offer-card-featured::before {
  content: "Mais escolhido";
  top: 18px;
  right: -34px;
  width: 180px;
  padding: 8px 0;
  font-size: 11px;
  letter-spacing: 0.06em;
  background: linear-gradient(135deg, var(--color-honey), #ffd84d);
  box-shadow: 0 6px 16px rgba(21, 19, 18, 0.22);
}

/* Hide the dev checkout-url placeholder text (kept in href for replacement) */
.checkout-link[data-checkout-placeholder]::after {
  content: none;
}

.checkout-link[data-checkout-placeholder] {
  padding-bottom: 0;
}

.price-block {
  border-radius: 12px;
}

.price-block strong {
  font-size: 38px;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}

.price-row s {
  color: var(--color-clay);
  font-size: 19px;
  font-weight: 700;
  text-decoration-thickness: 2px;
}

.price-row strong {
  font-size: 44px;
  line-height: 1;
}

.save-pill {
  display: inline-block;
  margin-top: 12px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(213, 31, 31, 0.12);
  color: var(--color-red) !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  font-style: normal !important;
}

.price-block-combo {
  background: linear-gradient(135deg, #fffdf6, var(--color-white));
}

/* ---- Testimonials: uniform, tidy chat cards ---- */
.testimonials-section {
  background: linear-gradient(180deg, var(--color-paper) 0%, var(--color-cream) 100%);
}

.testimonial-track {
  gap: 18px;
  align-items: stretch;
}

.testimonial-shot,
.testimonial-shot-square,
.testimonial-shot-portrait,
.testimonial-shot-wide,
.testimonial-shot-long {
  position: relative;
  width: 300px;
  height: 360px;
  padding: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(21, 19, 18, 0.08);
  background: var(--color-white);
  box-shadow: 0 20px 46px -20px rgba(21, 19, 18, 0.34);
}

.testimonial-shot img,
.testimonial-shot-square img,
.testimonial-shot-portrait img,
.testimonial-shot-wide img,
.testimonial-shot-long img {
  width: 100% !important;
  height: 100% !important;
  max-height: none !important;
  object-fit: cover;
  object-position: top center;
  border-radius: 0;
  background: var(--color-white);
}

/* fade at the bottom to signal the message continues */
.testimonial-shot::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 64px;
  pointer-events: none;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.92), transparent);
}

/* small "real message" badge */
.testimonial-shot::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #25d366 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M19.05 4.94A9.86 9.86 0 0 0 12.03 2 9.97 9.97 0 0 0 2.1 11.96c0 1.75.46 3.45 1.33 4.96L2 22l5.2-1.36a9.96 9.96 0 0 0 4.83 1.23 9.97 9.97 0 0 0 7.01-16.93Zm-2.49 8.06c-.25-.13-1.46-.72-1.68-.8-.23-.08-.4-.13-.56.12-.17.25-.64.8-.78.97-.14.16-.29.18-.54.06-.25-.13-1.05-.39-2-1.24-.74-.66-1.24-1.48-1.38-1.73-.15-.25-.02-.38.11-.51.11-.11.25-.29.37-.43.13-.14.17-.25.25-.41.08-.17.04-.31-.02-.43-.06-.13-.56-1.36-.77-1.86-.2-.49-.41-.42-.56-.43h-.48c-.17 0-.43.06-.66.31-.23.25-.87.85-.87 2.07 0 1.22.89 2.4 1.01 2.57.12.16 1.75 2.67 4.24 3.75.59.26 1.05.41 1.41.52.59.19 1.13.16 1.56.1.48-.07 1.46-.6 1.67-1.18.21-.58.21-1.08.14-1.18Z'/%3E%3C/svg%3E") center / 16px no-repeat;
  box-shadow: 0 4px 10px rgba(21, 19, 18, 0.22);
}

/* ---- WhatsApp section: scroll-traveling motion ---- */
.whatsapp-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.whatsapp-marquee {
  position: absolute;
  left: 0;
  z-index: 0;
  display: flex;
  width: max-content;
  pointer-events: none;
  font-family: var(--font-display);
  font-weight: 800;
  white-space: nowrap;
  -webkit-text-stroke: 2px rgba(21, 19, 18, 0.16);
  color: transparent;
  user-select: none;
}

.whatsapp-marquee-top {
  top: 8%;
  font-size: clamp(48px, 11vw, 130px);
  transform: translateX(var(--wa-shift, 0px));
}

.whatsapp-marquee-bottom {
  bottom: 6%;
  font-size: clamp(40px, 9vw, 108px);
  -webkit-text-stroke-color: rgba(21, 19, 18, 0.1);
  transform: translateX(calc(var(--wa-shift, 0px) * -1 - 240px));
}

.whatsapp-marquee span {
  padding-right: 0.4em;
}

.whatsapp-box {
  position: relative;
  z-index: 1;
}

.whatsapp-bubble {
  position: absolute;
  z-index: 0;
  border-radius: 50% 50% 50% 4px;
  background: rgba(21, 19, 18, 0.06);
  pointer-events: none;
}

/* ---- Reduced motion for round 2 ---- */
@media (prefers-reduced-motion: reduce) {
  .offer-card-featured,
  .whatsapp-marquee {
    animation: none !important;
  }

  .whatsapp-marquee-top,
  .whatsapp-marquee-bottom {
    transform: none;
  }
}

/* ---- Responsive (mobile-first focus) ---- */
@media (max-width: 980px) {
  .testimonial-shot,
  .testimonial-shot-square,
  .testimonial-shot-portrait,
  .testimonial-shot-wide,
  .testimonial-shot-long {
    width: 268px;
    height: 348px;
  }
}

@media (max-width: 640px) {
  .offer-card-featured {
    transform: none;
    margin-top: 8px;
  }

  .offer-card-featured:hover {
    transform: translateY(-4px);
  }

  .price-row strong {
    font-size: 38px;
  }

  .testimonial-track {
    gap: 14px;
  }

  .testimonial-shot,
  .testimonial-shot-square,
  .testimonial-shot-portrait,
  .testimonial-shot-wide,
  .testimonial-shot-long {
    width: 230px;
    height: 320px;
  }

  /* keep the page clear of the sticky mobile buy bar */
  .site-footer {
    padding-bottom: 96px;
  }

  .whatsapp-marquee-top {
    top: 4%;
  }

  .whatsapp-marquee-bottom {
    bottom: 3%;
  }
}

/* =========================================================
   ROUND 3 — masonry testimonials, glass mobile, cta & wa fixes
   ========================================================= */

/* Testimonials masonry — never crops; short ones stack naturally */
.testimonial-source {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 16px 0 0 !important;
  color: var(--color-sage) !important;
  font-size: 14px !important;
  font-weight: 700;
}

.wa-dot {
  width: 11px;
  height: 11px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.18);
}

.testimonial-masonry {
  column-count: 4;
  column-gap: 16px;
  margin-top: 10px;
}

.t-shot {
  break-inside: avoid;
  margin: 0 0 16px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(21, 19, 18, 0.08);
  background: var(--color-white);
  box-shadow: 0 14px 34px -16px rgba(21, 19, 18, 0.3);
  transition: transform 280ms var(--ease-out), box-shadow 280ms var(--ease-out);
}

.t-shot:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 60px -22px rgba(21, 19, 18, 0.42);
}

.t-shot img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 1024px) {
  .testimonial-masonry { column-count: 3; }
}

@media (max-width: 680px) {
  .testimonial-masonry { column-count: 2; column-gap: 12px; }
  .t-shot { margin-bottom: 12px; }
}

/* Mobile sticky buy bar — fit on narrow screens */
.mobile-cta {
  gap: 10px;
}

.mobile-cta .mobile-cta-info {
  min-width: 0;
}

.mobile-cta .mobile-cta-info strong {
  font-size: 16px;
  white-space: nowrap;
}

.mobile-cta .button {
  min-height: 46px;
  padding: 0 16px;
  font-size: 14px;
  white-space: nowrap;
}

@media (max-width: 360px) {
  .mobile-cta .mobile-cta-info span { font-size: 10px; }
  .mobile-cta .mobile-cta-info strong { font-size: 15px; }
  .mobile-cta .button { padding: 0 13px; font-size: 13px; }
}

/* WhatsApp background text — lighter / less busy + responsive */
.whatsapp-marquee-top {
  -webkit-text-stroke-width: 1.5px;
  -webkit-text-stroke-color: rgba(21, 19, 18, 0.09);
}

.whatsapp-marquee-bottom {
  -webkit-text-stroke-color: rgba(21, 19, 18, 0.06);
}

.whatsapp-box {
  gap: 28px;
}

@media (max-width: 640px) {
  .whatsapp-marquee-top {
    font-size: clamp(38px, 15vw, 70px);
    -webkit-text-stroke-color: rgba(21, 19, 18, 0.07);
  }

  .whatsapp-marquee-bottom {
    display: none;
  }
}

/* Authority glass — center the card over the photo on mobile */
@media (max-width: 760px) {
  .authority-bg {
    background-position: center 12%;
  }

  .authority-inner {
    justify-content: center;
  }

  .authority-glass {
    max-width: 100%;
  }

  .authority-scrim {
    background: linear-gradient(0deg, rgba(21, 19, 18, 0.78) 0%, rgba(21, 19, 18, 0.34) 50%, rgba(21, 19, 18, 0.58) 100%);
  }
}

/* =========================================================
   ROUND 4 — method-strip, buy-bar hardening, authority split
   ========================================================= */

/* Desktop: small breathing space between heading and body inside the glass */
.authority-body {
  margin-top: 6px;
}

/* Method strip — shorter, tighter on phones */
@media (max-width: 640px) {
  .method-strip {
    margin-top: 34px;
    padding: 18px;
    gap: 18px;
  }

  .method-photo {
    aspect-ratio: 16 / 11;
    max-height: 224px;
  }

  .method-photo img {
    object-position: center 32%;
  }

  .method-list ul {
    margin-top: 14px;
  }

  .method-list li {
    font-size: 16px;
    line-height: 1.55;
  }

  .method-list li + li {
    margin-top: 10px;
  }
}

/* Mobile buy bar — guarantee the CTA never clips */
.mobile-cta .button {
  width: auto;
  flex: 0 0 auto;
}

.mobile-cta .mobile-cta-info strong {
  font-size: 17px;
}

/* Authority — split on mobile: heading over the photo, glass body below her face */
@media (max-width: 760px) {
  .authority-section {
    display: block;
    min-height: 100svh;
    padding: 0;
  }

  .authority-bg {
    background-position: center 12%;
  }

  .authority-inner {
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: clamp(86px, 16vw, 116px) 20px 36px;
  }

  .authority-glass {
    display: block;
    width: 100%;
    max-width: 100%;
    padding: 0;
    border: none;
    background: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    box-shadow: none;
  }

  .authority-head {
    margin: 0 0 40vh;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.66);
  }

  .authority-head h2 {
    font-size: clamp(1.55rem, 6.4vw, 2rem);
  }

  .authority-body {
    margin-top: 0;
    padding: 22px 20px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(16, 13, 10, 0.82);
    -webkit-backdrop-filter: blur(18px) saturate(1.2);
    backdrop-filter: blur(18px) saturate(1.2);
    box-shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.8);
  }

  .authority-body p {
    font-size: 15.5px;
    line-height: 1.62;
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.94);
  }

  .authority-quote {
    font-size: 16px;
    line-height: 1.4;
    padding: 14px 16px;
    margin-top: 14px;
  }

  .authority-glass .signature {
    font-size: 18px;
    margin-top: 14px;
  }

  .authority-scrim {
    background: linear-gradient(180deg, rgba(21, 19, 18, 0.74) 0%, rgba(21, 19, 18, 0.28) 24%, rgba(21, 19, 18, 0.05) 44%, rgba(21, 19, 18, 0.05) 60%, rgba(21, 19, 18, 0.2) 100%);
  }
}

/* =========================================================
   ROUND 5 — floating WhatsApp contact button (discreet, on-theme)
   ========================================================= */
.wa-fab {
  position: fixed;
  right: 22px;
  bottom: 24px;
  z-index: 44;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--color-ink);
  color: var(--color-honey);
  border: 1px solid rgba(247, 198, 0, 0.4);
  box-shadow: 0 10px 24px -10px rgba(21, 19, 18, 0.55);
  opacity: 0.92;
  transition: opacity 380ms var(--ease-out), transform 320ms var(--ease-out), visibility 380ms, border-color 240ms ease;
}

.wa-fab svg {
  width: 27px;
  height: 27px;
  fill: var(--color-honey);
}

.wa-fab:hover {
  opacity: 1;
  transform: translateY(-2px);
  border-color: var(--color-honey);
}

.wa-fab.is-hidden {
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.85);
  pointer-events: none;
}

@media (max-width: 640px) {
  .wa-fab {
    right: 16px;
    bottom: calc(18px + env(safe-area-inset-bottom));
    width: 50px;
    height: 50px;
  }

  /* lift above the sticky buy bar only while it is on screen */
  .wa-fab.above-bar {
    bottom: calc(80px + env(safe-area-inset-bottom));
  }

  .wa-fab svg {
    width: 25px;
    height: 25px;
  }
}

/* =========================================================
   ROUND 6 — Android rendering, centered hero, authority title
   ========================================================= */

/* Glass fallback where backdrop-filter isn't supported (some Android WebViews) */
@supports not ((backdrop-filter: blur(2px)) or (-webkit-backdrop-filter: blur(2px))) {
  .authority-body,
  .authority-glass {
    background: rgba(20, 17, 14, 0.88);
  }

  .eyebrow.eyebrow-glow {
    background: rgba(58, 48, 20, 0.55);
  }

  .mobile-cta {
    background: rgba(21, 19, 18, 0.98);
  }
}

/* Fully center the hero content on tablet + mobile */
@media (max-width: 980px) {
  .hero-inner {
    align-items: center;
    text-align: center;
  }

  .hero-copy-panel {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero h1,
  .hero-copy {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-trust {
    width: 100%;
    justify-content: center;
  }

  .hero-actions {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: clamp(1.9rem, 8.4vw, 2.3rem);
  }
}

/* Authority heading centered over the photo on mobile */
@media (max-width: 760px) {
  .authority-head {
    text-align: center;
  }
}

/* Film grain off on phones — it can read as noisy text on some Android screens */
@media (max-width: 640px) {
  body::after {
    display: none;
  }
}

/* =========================================================
   ROUND 7 — deliverables full-width after heading removal
   ========================================================= */
.ebook-details {
  display: block;
}

.ebook-details .deliverables {
  grid-column: auto;
  grid-row: auto;
  grid-template-columns: 1fr 1fr;
  margin-top: 0;
}

@media (max-width: 640px) {
  .ebook-details .deliverables {
    grid-template-columns: 1fr;
  }
}
