/* ═══════════════════════════════════════════════════════════════
   MÉTODO SAN 360 — v2
   Brand: Pati San Team (est. 2019) — preto + azul royal #4050F5
   Type system:
     Display — Fraunces (serif alto contraste, única, carismática)
     Body    — Plus Jakarta Sans (geometric humanist, ótima legibilidade)
     Mono    — JetBrains Mono (eyebrows, tags técnicas)
   ═══════════════════════════════════════════════════════════════ */

@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;600&display=swap");

:root {
  /* ─── Ink ── near-black, warm */
  --ink-0:        #09090C;
  --ink-1:        #0E0E12;
  --ink-2:        #14141A;
  --ink-3:        #1C1C24;
  --ink-4:        #272732;

  /* ─── Bone — warm cream for readability on dark */
  --bone:         #F2EFE9;
  --bone-soft:    #DED9CE;
  --bone-mute:    #A8A393;
  --bone-faint:   #6E6B5E;

  /* ─── Accent — Pati San Team royal blue (extracted from logo) */
  --accent:       #4050F5;
  --accent-hot:   #5A6BFF;
  --accent-deep:  #2831A8;
  --accent-glow:  rgba(64,80,245,0.38);
  --accent-soft:  rgba(64,80,245,0.12);

  /* Flash red for urgency ticks (very sparing) */
  --blood:        #E03B3B;

  /* Type families — NEUTRAL / DISCREET */
  --font-display: "Manrope", "Inter", system-ui, sans-serif;
  --font-accent:  "Manrope", sans-serif;
  --font-sans:    "Inter", system-ui, -apple-system, sans-serif;
  --font-mono:    "JetBrains Mono", ui-monospace, monospace;

  --tracking-wide:  0.22em;
  --tracking-mid:   0.12em;
  --tracking-tight: -0.02em;
  --tracking-display: -0.035em;

  --max: 1240px;
  --pad: clamp(20px, 4vw, 40px);
}

/* ─── Base ─────────────────────────────────────────────────── */
* { box-sizing: border-box; min-width: 0; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: clip; }

body {
  background: var(--ink-0);
  color: var(--bone);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01", "cv11";
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

/* ─── Type ─────────────────────────────────────────────────── */
.display, h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 0;
  color: var(--bone);
  text-wrap: balance;
}
.display { font-size: clamp(56px, 8.5vw, 124px); font-weight: 800; letter-spacing: -0.035em; line-height: 1; }
h1       { font-size: clamp(44px, 6.5vw, 96px); font-weight: 800; letter-spacing: -0.035em; line-height: 1; }
h2       { font-size: clamp(34px, 4.6vw, 60px); font-weight: 700; letter-spacing: -0.03em; line-height: 1.05; }
h3       { font-size: clamp(20px, 2.1vw, 28px); font-weight: 700; letter-spacing: -0.018em; line-height: 1.2; }

/* "em" = accent-color emphasis, same weight, no italic */
.display em, h1 em, h2 em, h3 em {
  font-style: normal;
  font-weight: inherit;
  color: var(--accent);
  font-family: var(--font-display);
}

p { margin: 0 0 1em; color: var(--bone-soft); text-wrap: pretty; }
.lead {
  font-size: clamp(18px, 1.35vw, 22px);
  line-height: 1.55;
  color: var(--bone-soft);
  font-weight: 400;
}

.accent-text { color: var(--accent); }
.bone-text   { color: var(--bone); }
.mute-text   { color: var(--bone-mute); }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px; height: 1px;
  background: currentColor;
}

/* ─── Layout ───────────────────────────────────────────────── */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }
section { padding: clamp(80px, 10vw, 140px) 0; position: relative; }

/* ─── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 18px 28px;
  font-family: var(--font-sans);
  font-weight: 700; font-size: 15px;
  letter-spacing: 0.02em;
  transition: transform .3s cubic-bezier(.2,.8,.2,1), background .3s, color .3s, box-shadow .3s;
  position: relative;
  white-space: nowrap;
  border-radius: 2px;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 30px -10px var(--accent-glow), inset 0 1px 0 rgba(255,255,255,0.2);
}
.btn-primary:hover {
  background: var(--accent-hot);
  transform: translateY(-2px);
}
.btn-ghost {
  color: var(--bone);
  border: 1px solid rgba(242,239,233,0.25);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-lg { padding: 22px 36px; font-size: 16px; }

/* ─── Navbar ───────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 16px 0;
  background: rgba(9,9,12,0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(242,239,233,0.06);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.brand {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: 0;
  color: var(--bone);
}
.brand-mark { width: 34px; height: 34px; flex-shrink: 0; }
.brand em {  font-weight: 300; color: var(--accent); }
.nav-links { display: flex; gap: 28px; font-size: 14px; color: var(--bone-mute); font-weight: 500; }
.nav-links a:hover { color: var(--bone); }
@media (max-width: 760px) {
  .nav-links { display: none; }
  .nav .nav-cta { display: none; }
  .brand span:last-child { display: none; }
}

/* ─── Hamburger ──────────────────────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  padding: 4px;
  z-index: 60;
}
.hamburger span {
  display: block;
  width: 100%; height: 2px;
  background: var(--bone);
  transition: transform .3s, opacity .2s;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 760px) {
  .hamburger { display: flex; }
}

/* ─── Mobile menu overlay ────────────────────────────────────── */
.mobile-menu {
  position: fixed; inset: 0;
  z-index: 55;
  background: rgba(9,9,12,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--bone-soft);
  transition: color .2s;
}
.mobile-menu a:hover { color: var(--accent); }
body.menu-open { overflow: hidden; }

/* ─── HERO ─────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  padding-top: 140px;
  padding-bottom: 100px;
  display: flex; align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 70% 55% at 75% 35%, var(--accent-soft), transparent 65%),
    radial-gradient(ellipse 70% 60% at 15% 90%, rgba(64,80,245,0.06), transparent 70%),
    linear-gradient(180deg, #09090C 0%, #0E0E12 100%);
}
.hero-grid {
  position: absolute; inset: 0; z-index: 1;
  background-image:
    linear-gradient(rgba(242,239,233,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242,239,233,0.04) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: radial-gradient(ellipse 60% 55% at 50% 50%, black 40%, transparent 80%);
}
.hero-triskell {
  position: absolute;
  right: -180px; top: 50%;
  transform: translateY(-50%);
  width: 420px; height: 420px;
  opacity: 0.035;
  color: var(--accent);
  pointer-events: none;
  z-index: 1;
  animation: spin 90s linear infinite;
}
@keyframes spin { to { transform: translateY(-50%) rotate(360deg); } }
@media (max-width: 980px) { .hero-triskell { right: -40%; width: 300px; height: 300px; opacity: 0.05; } }

.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 60px; align-items: center; }
@media (max-width: 980px) { .hero-inner { grid-template-columns: 1fr; gap: 40px; } }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 6.2vw, 88px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin: 24px 0 28px;
  text-wrap: balance;
}
.hero-title em {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--accent);
}
.hero-sub { max-width: 560px; margin-bottom: 36px; }

/* First-woman badge — signature credibility marker */
.first-badge {
  display: inline-flex; align-items: center; gap: 12px;
  margin: 18px 0 0;
  padding: 10px 16px 10px 12px;
  background: linear-gradient(90deg, var(--accent-soft), transparent 120%);
  border: 1px solid rgba(64,80,245,0.35);
  border-left: 3px solid var(--accent);
  font-family: var(--font-sans);
  font-size: 13.5px; font-weight: 500;
  color: var(--bone-soft);
  line-height: 1.35;
  max-width: 560px;
  text-wrap: balance;
}
.first-badge svg { width: 20px; height: 20px; color: var(--accent); flex-shrink: 0; }
.first-badge b { color: var(--bone); font-weight: 700; }
@media (max-width: 480px) {
  .first-badge { font-size: 12.5px; padding: 9px 12px 9px 10px; gap: 10px; }
  .first-badge svg { width: 18px; height: 18px; }
}

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-proof {
  margin-top: 32px;
  display: flex; gap: 24px; flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bone-faint);
  font-weight: 500;
}
.hero-proof span { display: inline-flex; align-items: center; gap: 8px; }
.hero-proof span::before { content: ""; width: 5px; height: 5px; background: var(--accent); border-radius: 50%; display: inline-block; }

/* ─── E-book 3D mockup ─────────────────────────────────────── */
.hero-book {
  position: relative;
  aspect-ratio: 5/6;
  display: grid; place-items: center;
  perspective: 2000px;
}
.book-3d {
  position: relative;
  width: 78%;
  aspect-ratio: 2/3;
  transform-style: preserve-3d;
  transform: rotateY(-18deg) rotateX(4deg) rotateZ(-2deg);
  filter: drop-shadow(30px 40px 60px rgba(0,0,0,0.7)) drop-shadow(0 0 80px var(--accent-glow));
  animation: book-float 6s ease-in-out infinite;
}
@keyframes book-float {
  0%,100% { transform: rotateY(-18deg) rotateX(4deg) rotateZ(-2deg) translateY(0); }
  50%     { transform: rotateY(-16deg) rotateX(5deg) rotateZ(-2deg) translateY(-14px); }
}
.book-cover {
  position: absolute; inset: 0;
  background: linear-gradient(145deg, var(--ink-2) 0%, var(--ink-0) 100%);
  border: 1px solid rgba(64,80,245,0.35);
  padding: 28px 26px;
  display: flex; flex-direction: column; justify-content: space-between;
  overflow: hidden;
}
.book-cover::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 0%, rgba(64,80,245,0.28), transparent 55%);
}
.book-triskell {
  position: absolute;
  right: -30%; bottom: -30%;
  width: 140%; height: 140%;
  color: var(--accent);
  opacity: 0.15;
}
.book-cover::after {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0;
  width: 18px;
  background: linear-gradient(90deg, rgba(0,0,0,0.5), transparent);
}
.book-cover > * { position: relative; z-index: 1; }
.book-eyebrow {
  font-family: var(--font-mono); font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--accent);
}
.book-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 0.92;
  letter-spacing: 0;
  margin-top: 8px;
}
.book-title em { font-family: var(--font-display);  font-weight: 300; color: var(--accent); }
.book-num {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(82px, 10vw, 148px);
  line-height: 0.85;
  letter-spacing: 0;
  color: var(--accent);
  text-align: center;
  margin: 8px 0;
}
.book-num sup { font-size: 0.25em; vertical-align: super; color: var(--bone-mute); margin-left: 6px; font-weight: 400; }
.book-author {
  font-family: var(--font-mono); font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--bone-soft);
  border-top: 1px solid rgba(64,80,245,0.3);
  padding-top: 14px;
}
.book-spine {
  position: absolute;
  right: -22px; top: 4px; bottom: 4px;
  width: 22px;
  background: linear-gradient(90deg, var(--ink-3) 0%, var(--ink-1) 100%);
  transform: rotateY(90deg) translateZ(0);
  transform-origin: left;
  border-top: 1px solid rgba(64,80,245,0.2);
  border-bottom: 1px solid rgba(64,80,245,0.2);
}

.hero-badge {
  position: absolute; z-index: 3;
  top: 14%; right: -10px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: grid; place-items: center;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.01em;
  transform: rotate(-12deg);
  box-shadow: 0 10px 40px -10px var(--accent-glow);
  border: 2px solid var(--ink-0);
  animation: stamp-pulse 3s ease-in-out infinite;
}
.hero-badge b { font-size: 26px; display: block; margin-bottom: 2px; font-weight: 600; }
.hero-badge small { font-family: var(--font-mono); font-size: 9px; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; opacity: 0.85; }
@keyframes stamp-pulse {
  0%,100% { transform: rotate(-12deg) scale(1); }
  50%     { transform: rotate(-10deg) scale(1.04); }
}

/* ─── Marquee / logos ──────────────────────────────────────── */
.marquee-section {
  padding: 26px 0;
  border-top: 1px solid rgba(242,239,233,0.06);
  border-bottom: 1px solid rgba(242,239,233,0.06);
  background: var(--ink-1);
  overflow: hidden;
}
.marquee {
  display: flex; gap: 60px;
  animation: marquee 40s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.marquee-item {
  font-family: var(--font-mono);
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bone-faint);
  display: inline-flex; align-items: center; gap: 16px;
}
.marquee-item::after { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); opacity: 0.6; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ─── Section heads ────────────────────────────────────────── */
.section-head {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: end;
  margin-bottom: 80px;
}
@media (max-width: 820px) { .section-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 48px; } }

/* ─── Pain cards ──────────────────────────────────────────── */
.pain-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: rgba(242,239,233,0.08);
  border: 1px solid rgba(242,239,233,0.08);
}
@media (max-width: 820px) { .pain-grid { grid-template-columns: 1fr; } }
.pain-card {
  background: var(--ink-1);
  padding: 48px 36px;
  position: relative;
  transition: background .3s;
}
.pain-card:hover { background: var(--ink-2); }
.pain-num {
  font-family: var(--font-mono); font-size: 12px; font-weight: 500;
  letter-spacing: 0.2em; color: var(--accent);
  margin-bottom: 24px;
}
.pain-card h3 { margin-bottom: 12px; }
.pain-card p { color: var(--bone-mute); font-size: 15.5px; margin: 0; }

/* ─── Method — orbit ──────────────────────────────────────── */
.method {
  background: var(--ink-1);
  border-top: 1px solid rgba(242,239,233,0.06);
  border-bottom: 1px solid rgba(242,239,233,0.06);
  position: relative;
  overflow: hidden;
}
.method-triskell {
  position: absolute;
  left: -10%; top: 50%;
  transform: translateY(-50%);
  width: 360px; height: 360px;
  color: var(--accent);
  opacity: 0.025;
  pointer-events: none;
}
.method-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; position: relative; z-index: 1; }
@media (max-width: 980px) { .method-inner { grid-template-columns: 1fr; gap: 60px; } }

.orbit {
  position: relative;
  aspect-ratio: 1/1;
  max-width: 520px;
  margin: 0 auto;
}
.orbit-ring {
  position: absolute; inset: 0;
  border: 1px dashed rgba(64,80,245,0.4);
  border-radius: 50%;
}
.orbit-ring.inner { inset: 20%; border: 1px solid rgba(64,80,245,0.25); }
.orbit-ring.core  {
  inset: 34%;
  background: radial-gradient(circle, rgba(64,80,245,0.18), transparent 70%);
  border: 1px solid var(--accent);
  display: grid; place-items: center;
  text-align: center;
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1;
  letter-spacing: 0;
  color: var(--bone);
}
.orbit-ring.core span {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.3em;
  color: var(--accent);
  margin-bottom: 6px;
}

.orbit-node {
  position: absolute;
  width: 120px;
  margin-left: -60px; margin-top: -60px;
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
}
.orbit-node .dot {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--ink-0);
  border: 1px solid var(--accent);
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 500;
  color: var(--accent); font-size: 22px;
  margin-bottom: 10px;
  transition: all .3s;
}
.orbit-node:hover .dot { background: var(--accent); color: #fff; transform: scale(1.1); }
.orbit-node .label {
  font-family: var(--font-mono); font-size: 10px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--bone-soft);
}

.orbit-node.n1 { top: 0;    left: 50%; }
.orbit-node.n2 { top: 50%;  left: 100%; }
.orbit-node.n3 { top: 100%; left: 50%; }
.orbit-node.n4 { top: 50%;  left: 0; }

.method-list { list-style: none; padding: 0; margin: 0; }
.method-list li {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(242,239,233,0.08);
}
.method-list li:last-child { border-bottom: 0; }
.method-list .letter {
  font-family: var(--font-display);
  font-weight: 400; font-size: 56px; text-transform: uppercase;
  font-size: 48px;
  color: var(--accent); line-height: 0.85;
  
}
.method-list h4 {
  font-family: var(--font-display); font-weight: 600;
  font-size: 22px; margin: 0 0 6px;
  letter-spacing: -0.015em;
  color: var(--bone);
}
.method-list p { font-size: 15px; color: var(--bone-mute); margin: 0; line-height: 1.55; }
.method-list em { font-family: var(--font-display);  color: var(--accent); font-weight: 300; }

/* ─── Chapters ────────────────────────────────────────────── */
.chapters {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px;
  background: rgba(242,239,233,0.08);
  border: 1px solid rgba(242,239,233,0.08);
}
@media (max-width: 820px) { .chapters { grid-template-columns: 1fr; } }
.chapter {
  background: var(--ink-0);
  padding: 36px 32px;
  display: grid; grid-template-columns: 56px 1fr auto; gap: 20px;
  align-items: start;
  transition: background .3s;
}
.chapter:hover { background: var(--ink-1); }
.chapter .num {
  font-family: var(--font-mono);
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-top: 4px;
}
.chapter h4 {
  font-family: var(--font-display); font-weight: 600;
  font-size: 20px; line-height: 1.2; margin: 0 0 8px;
  letter-spacing: -0.015em;
  color: var(--bone);
}
.chapter p { font-size: 14.5px; color: var(--bone-mute); margin: 0; line-height: 1.5; }
.chapter .pages {
  font-family: var(--font-mono); font-size: 11px; font-weight: 500;
  color: var(--bone-faint); letter-spacing: 0.1em;
  white-space: nowrap;
}

/* ─── Authority ───────────────────────────────────────────── */
.authority {
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 80px; align-items: center;
}
@media (max-width: 980px) { .authority { grid-template-columns: 1fr; gap: 40px; } }
.portrait-frame {
  position: relative; aspect-ratio: 4/5;
  background: linear-gradient(145deg, var(--ink-2), var(--ink-0));
  border: 1px solid rgba(64,80,245,0.3);
  overflow: hidden;
}
.portrait-frame::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 50% 25%, rgba(64,80,245,0.22), transparent 60%);
}
.portrait-triskell {
  position: absolute;
  inset: 0;
  display: grid; place-items: center;
  color: var(--accent);
  opacity: 0.1;
}
.portrait-triskell svg { width: 70%; height: 70%; }
.portrait-placeholder {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  text-align: center;
  font-family: var(--font-mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.25em; color: var(--bone-faint);
  text-transform: uppercase;
}
.portrait-placeholder .silhouette {
  width: 55%; aspect-ratio: 1/1;
  background:
    radial-gradient(circle at 50% 30%, var(--bone-mute) 0 14%, transparent 15%),
    radial-gradient(ellipse at 50% 75%, var(--bone-mute) 0 30%, transparent 32%);
  opacity: 0.5;
  margin-bottom: 16px;
}
.portrait-tag {
  position: absolute; left: 20px; bottom: 20px; right: 20px;
  display: flex; justify-content: space-between; align-items: end; gap: 16px;
  font-family: var(--font-mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.2em; color: var(--bone-mute); text-transform: uppercase;
}
.portrait-tag .name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 28px;
  letter-spacing: 0;
  color: var(--bone);
  text-transform: none;
  line-height: 1;
  
}
.authority h2 em {  font-weight: 300; color: var(--accent); }
.authority-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(242,239,233,0.08);
}
.stat .big {
  font-family: var(--font-display);
  font-weight: 400; font-size: 56px;
  color: var(--accent); line-height: 0.9; letter-spacing: 0;
  margin-bottom: 6px;
}
.stat .label {
  font-family: var(--font-mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--bone-mute);
}

/* ─── Testimonials ────────────────────────────────────────── */
.testimonials {
  background: var(--ink-1);
  border-top: 1px solid rgba(242,239,233,0.06);
  border-bottom: 1px solid rgba(242,239,233,0.06);
}
.test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 820px) { .test-grid { grid-template-columns: 1fr; } }
.test-card {
  background: var(--ink-0);
  border: 1px solid rgba(242,239,233,0.08);
  padding: 36px 32px;
  display: flex; flex-direction: column;
  min-height: 280px;
}
.test-card .quote-mark {
  font-family: "Georgia", "Times New Roman", serif; font-size: 84px; font-weight: 500;
  line-height: 0.4; color: var(--accent);
  margin-bottom: 8px; 
}
.test-card blockquote {
  margin: 0 0 24px;
  font-family: var(--font-sans);
  font-size: 17px; font-weight: 500; font-weight: 400;
  line-height: 1.4;
  color: var(--bone);
  flex: 1;
  letter-spacing: -0.01em;
}
.test-card .author {
  display: flex; align-items: center; gap: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(242,239,233,0.08);
}
.test-card .avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(145deg, var(--accent), var(--accent-deep));
  color: #fff;
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 600;
  font-size: 15px;
}
.test-card .who { font-size: 14px; font-weight: 600; color: var(--bone); line-height: 1.2; font-family: var(--font-sans); }
.test-card .role { font-family: var(--font-mono); font-size: 11px; font-weight: 500; letter-spacing: 0.1em; color: var(--bone-faint); text-transform: uppercase; margin-top: 2px; }

/* ─── OFFER ───────────────────────────────────────────────── */
.offer {
  padding: clamp(80px, 10vw, 140px) 0;
  position: relative;
}
.offer-card {
  max-width: 900px; margin: 0 auto;
  background: linear-gradient(180deg, var(--ink-2) 0%, var(--ink-1) 100%);
  border: 1px solid rgba(64,80,245,0.3);
  position: relative;
  overflow: hidden;
}
.offer-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent) 20%, var(--accent-hot) 50%, var(--accent) 80%, transparent);
}
.offer-head {
  padding: 44px 48px 32px;
  text-align: center;
  border-bottom: 1px dashed rgba(64,80,245,0.25);
}
.offer-head .eyebrow { justify-content: center; }
.offer-head h2 { margin: 16px 0 10px; font-size: clamp(32px, 4vw, 52px); }
.offer-head h2 em {  font-weight: 300; color: var(--accent); }

.offer-body { padding: 40px 48px; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; }
@media (max-width: 820px) { .offer-body { grid-template-columns: 1fr; gap: 32px; padding: 32px 28px; } .offer-head { padding: 32px 28px 24px; } }

.offer-stack h4 {
  font-family: var(--font-mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent); margin: 0 0 20px;
}
.offer-stack ul { list-style: none; padding: 0; margin: 0; }
.offer-stack li {
  display: grid; grid-template-columns: 22px 1fr auto; gap: 14px;
  padding: 14px 0;
  border-bottom: 1px dashed rgba(242,239,233,0.1);
  font-size: 15px;
  color: var(--bone-soft);
  align-items: baseline;
  line-height: 1.4;
}
.offer-stack li:last-child { border-bottom: 0; }
.offer-stack .ok {
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
}
.offer-stack b { color: var(--bone); font-weight: 700; }
.offer-stack .val {
  font-family: var(--font-mono); font-size: 12px; font-weight: 500;
  color: var(--bone-faint); letter-spacing: 0.05em;
}
.offer-stack .val s { color: var(--bone-faint); opacity: 0.7; }

.offer-price {
  text-align: center;
  padding: 36px 24px;
  background: radial-gradient(circle at 50% 0%, rgba(64,80,245,0.16), transparent 70%);
  border: 1px solid rgba(64,80,245,0.25);
}
.offer-price .label {
  font-family: var(--font-mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--bone-mute); margin-bottom: 6px;
}
.offer-price .from {
  font-family: var(--font-mono); font-size: 14px; font-weight: 500;
  color: var(--bone-faint); text-decoration: line-through;
  margin-bottom: 10px;
}
.offer-price .big {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(60px, 8vw, 96px);
  color: var(--accent);
  line-height: 0.9;
  letter-spacing: 0;
  display: inline-flex; align-items: flex-start; gap: 6px;
}
.offer-price .big .currency {
  font-size: 0.4em; margin-top: 0.3em;
  color: var(--bone-soft); font-weight: 500;
}
.offer-price .pix { font-family: var(--font-mono); font-size: 12px; font-weight: 500; color: var(--bone-mute); margin: 10px 0 0; letter-spacing: 0.08em; }
.offer-price .btn { margin-top: 22px; width: 100%; justify-content: center; }
.offer-price .safe {
  margin-top: 18px; font-size: 11px; font-weight: 500;
  color: var(--bone-faint); font-family: var(--font-mono);
  letter-spacing: 0.1em; display: flex; justify-content: center; gap: 14px; flex-wrap: wrap;
}

.countdown {
  padding: 18px 48px;
  background: var(--ink-0);
  display: flex; align-items: center; justify-content: center; gap: 20px;
  border-top: 1px solid rgba(64,80,245,0.2);
  font-family: var(--font-mono);
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--bone-mute);
}
.countdown .blink { color: var(--blood); animation: blink 1.2s infinite; }
@keyframes blink { 50% { opacity: 0.3; } }
.countdown .timer { display: inline-flex; gap: 6px; color: var(--bone); font-weight: 600; font-size: 16px; }
.countdown .timer span { background: var(--ink-2); padding: 6px 10px; border: 1px solid rgba(64,80,245,0.3); }

/* ─── Guarantee ───────────────────────────────────────────── */
.guarantee {
  display: grid; grid-template-columns: 180px 1fr; gap: 40px; align-items: center;
  max-width: 900px; margin: 60px auto 0;
  padding: 32px;
  border: 1px solid rgba(242,239,233,0.08);
  background: var(--ink-1);
}
@media (max-width: 720px) { .guarantee { grid-template-columns: 1fr; gap: 24px; text-align: center; justify-items: center; } }
.guarantee-seal {
  width: 180px; height: 180px;
  border-radius: 50%;
  background:
    radial-gradient(circle, var(--ink-0) 58%, transparent 59%),
    conic-gradient(from 0deg, var(--accent), var(--accent-deep), var(--accent));
  display: grid; place-items: center;
  text-align: center;
  position: relative;
}
.guarantee-seal::after {
  content: ""; position: absolute; inset: 8px;
  border: 2px dashed var(--accent);
  border-radius: 50%;
}
.guarantee-seal .seal-inner {
  position: relative; z-index: 1;
  font-family: var(--font-display); font-weight: 500;
  font-size: 56px; color: var(--accent); line-height: 0.9;
  
}
.guarantee-seal .seal-inner span { display: block; font-family: var(--font-mono); font-size: 9px; font-weight: 500; letter-spacing: 0.2em; color: var(--bone); margin-top: 4px; font-style: normal; }
.guarantee h3 { margin-bottom: 10px; font-size: 28px; font-family: var(--font-display); font-weight: 500; letter-spacing: 0; }
.guarantee h3 em {  font-weight: 300; color: var(--accent); }
.guarantee p { color: var(--bone-mute); margin: 0; font-size: 15.5px; line-height: 1.6; }
.guarantee p em {  color: var(--accent); font-family: var(--font-display); font-weight: 400; }

/* ─── FAQ ─────────────────────────────────────────────────── */
.faq { max-width: 820px; margin: 0 auto; }
.faq details {
  border-top: 1px solid rgba(242,239,233,0.12);
  padding: 26px 0;
}
.faq details:last-of-type { border-bottom: 1px solid rgba(242,239,233,0.12); }
.faq summary {
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; gap: 20px; align-items: center;
  font-family: var(--font-sans); font-weight: 700; font-size: 19px; line-height: 1.3;
  letter-spacing: -0.015em;
  color: var(--bone);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; color: var(--accent); font-size: 28px;
  font-weight: 300; line-height: 1;
  transition: transform .3s;
  font-family: var(--font-sans);
}
.faq details[open] summary::after { content: "−"; }
.faq details p { margin: 16px 0 0; color: var(--bone-mute); font-size: 16px; max-width: 680px; line-height: 1.6; }

/* ─── Final CTA ───────────────────────────────────────────── */
.final {
  text-align: center;
  padding: clamp(100px, 12vw, 180px) 0;
  position: relative;
  overflow: hidden;
}
.final::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 50% 50%, rgba(64,80,245,0.2), transparent 70%);
  pointer-events: none;
}
.final-triskell {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 400px; height: 400px;
  color: var(--accent);
  opacity: 0.05;
  pointer-events: none;
  animation: spin 120s linear infinite reverse;
}
@media (max-width: 820px) { .final-triskell { width: 300px; height: 300px; } }
.final .wrap { position: relative; z-index: 1; }
.final h2 { margin-bottom: 20px; max-width: 860px; margin-left: auto; margin-right: auto; }
.final h2 em {  font-weight: 300; color: var(--accent); }
.final .lead { max-width: 620px; margin: 0 auto 40px; }

/* ─── Footer ──────────────────────────────────────────────── */
footer {
  border-top: 1px solid rgba(242,239,233,0.06);
  padding: 56px 0 36px;
  background: var(--ink-1);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 820px) { .footer-inner { grid-template-columns: 1fr 1fr; } }
.footer-brand {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 14px;
}
.footer-brand-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 0;
  color: var(--bone);
}
.footer-brand-title em {  font-weight: 300; color: var(--accent); }
.footer-col h5 {
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 16px;
}
.footer-col a, .footer-col p {
  display: block;
  font-size: 14px;
  color: var(--bone-mute);
  margin: 0 0 10px;
  line-height: 1.5;
}
.footer-col a:hover { color: var(--bone); }
.footer-legal {
  border-top: 1px solid rgba(242,239,233,0.06);
  padding-top: 24px;
  display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  font-family: var(--font-mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.12em; color: var(--bone-faint);
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════════════
   TWEAKS PANEL
   ═══════════════════════════════════════════════════════════ */
.tweaks-panel {
  position: fixed;
  right: 20px; bottom: 20px;
  z-index: 100;
  width: 320px;
  background: rgba(14,14,18,0.96);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(64,80,245,0.3);
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--bone);
  display: none;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
}
.tweaks-panel.open { display: block; }
.tweaks-header {
  padding: 14px 18px;
  border-bottom: 1px solid rgba(64,80,245,0.2);
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent);
}
.tweaks-body { padding: 16px 18px; }
.tweak-row { margin-bottom: 18px; }
.tweak-row > label {
  display: block; font-family: var(--font-mono);
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--bone-mute); margin-bottom: 8px;
}
.swatches { display: flex; gap: 8px; }
.swatch {
  width: 36px; height: 36px; cursor: pointer;
  border: 2px solid transparent;
  position: relative;
  transition: transform .15s;
}
.swatch:hover { transform: translateY(-2px); }
.swatch.active { border-color: var(--bone); }
.swatch.active::after { content: "✓"; position: absolute; inset: 0; display: grid; place-items: center; color: #fff; font-size: 14px; font-weight: 700; }
.seg { display: flex; border: 1px solid rgba(64,80,245,0.3); }
.seg button { flex: 1; padding: 10px 8px; font-family: var(--font-mono); font-size: 11px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--bone-mute); border-right: 1px solid rgba(64,80,245,0.2); }
.seg button:last-child { border-right: 0; }
.seg button.active { background: var(--accent); color: #fff; font-weight: 600; }
.toggle-row { display: flex; justify-content: space-between; align-items: center; padding: 6px 0; }
.toggle-row label { font-size: 13px; color: var(--bone); font-weight: 500; }
.toggle { width: 40px; height: 22px; background: var(--ink-2); border: 1px solid rgba(64,80,245,0.3); position: relative; cursor: pointer; transition: background .2s; }
.toggle::after { content: ""; position: absolute; top: 2px; left: 2px; width: 16px; height: 16px; background: var(--bone-mute); transition: all .2s; }
.toggle.on { background: var(--accent); }
.toggle.on::after { background: #fff; left: 20px; }

/* Toggle helpers */
body.no-countdown .countdown { display: none; }
body.no-bonuses .bonus-row { display: none; }
body.no-discount .offer-price .from { display: none; }

/* Tweaks toggle button */
.tweaks-toggle {
  position: fixed; right: 20px; bottom: 20px;
  z-index: 99;
  width: 52px; height: 52px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: none;
  align-items: center; justify-content: center;
  font-size: 22px;
  box-shadow: 0 10px 30px -10px var(--accent-glow);
  cursor: pointer;
  transition: transform .2s;
}
.tweaks-toggle.visible { display: flex; }
.tweaks-toggle:hover { transform: scale(1.08); }

/* ═══════════════════════════════════════════════════════════
   E-BOOK PREVIEW PAGES
   ═══════════════════════════════════════════════════════════ */
.ebook-section {
  background: #0B0B0F;
  padding: 100px 0 120px;
  border-top: 1px solid rgba(242,239,233,0.06);
}
.ebook-head { text-align: center; margin-bottom: 60px; }
.ebook-head h2 { margin-bottom: 12px; }
.ebook-head h2 em {  font-weight: 300; color: var(--accent); }
.ebook-head p { max-width: 560px; margin: 0 auto; color: var(--bone-mute); }

.ebook-pages {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  max-width: 1200px; margin: 0 auto;
}
@media (max-width: 980px) { .ebook-pages { grid-template-columns: repeat(2, 1fr); } }

.ebook-page {
  aspect-ratio: 3/4;
  background: var(--bone);
  color: var(--ink-0);
  position: relative;
  font-family: var(--font-sans);
  padding: 20px 18px;
  display: flex; flex-direction: column;
  font-size: 9px; line-height: 1.45;
  box-shadow: 0 20px 50px -20px rgba(0,0,0,0.8);
  overflow: hidden;
  cursor: pointer;
}
/* hover handled in wave effects section below */
.ebook-page .pn {
  position: absolute; bottom: 10px; right: 12px;
  font-family: var(--font-mono);
  font-size: 8px; color: var(--bone-faint);
  letter-spacing: 0.15em; font-weight: 500;
}
.ebook-page .pg-brand {
  position: absolute; bottom: 10px; left: 12px;
  font-family: var(--font-mono);
  font-size: 7px; color: var(--bone-faint);
  letter-spacing: 0.25em; font-weight: 500;
  text-transform: uppercase;
}
.ebook-page .chapter-tag {
  font-family: var(--font-mono);
  font-size: 7px; font-weight: 500;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 10px;
  display: flex; justify-content: space-between;
}

/* Cover pages */
.ebook-page.cover {
  background:
    radial-gradient(circle at 30% 0%, rgba(64,80,245,0.35), transparent 55%),
    linear-gradient(145deg, var(--ink-2) 0%, var(--ink-0) 100%);
  color: var(--bone);
  padding: 20px 16px;
  justify-content: space-between;
  border: 1px solid rgba(64,80,245,0.4);
}
.ebook-page.cover .pn, .ebook-page.cover .pg-brand { color: var(--bone-faint); }
.ebook-page.cover .cover-triskell {
  position: absolute;
  right: -40%; bottom: -40%;
  width: 160%; height: 160%;
  color: var(--accent);
  opacity: 0.12;
  pointer-events: none;
}
.ebook-page.cover > * { position: relative; z-index: 1; }
.ebook-page.cover .cover-brand {
  font-family: var(--font-mono); font-size: 7px; font-weight: 500;
  letter-spacing: 0.3em; color: var(--accent);
  text-transform: uppercase;
}
.ebook-page.cover .cover-title {
  font-family: var(--font-display); font-weight: 500;
  font-size: 24px; line-height: 0.92; letter-spacing: 0;
}
.ebook-page.cover .cover-title em { font-family: var(--font-display);  font-weight: 300; color: var(--accent); }
.ebook-page.cover .cover-num {
  font-family: var(--font-display); font-weight: 400;
  font-size: 68px; line-height: 0.8; color: var(--accent);
  text-align: center; margin: 8px 0; letter-spacing: 0;
}
.ebook-page.cover .cover-author {
  font-family: var(--font-mono); font-size: 8px; font-weight: 500;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--bone-soft);
  border-top: 1px solid rgba(64,80,245,0.4);
  padding-top: 10px;
}

/* Content pages */
.ebook-page .pg-head {
  font-family: var(--font-display); font-weight: 500;
  font-size: 15px; line-height: 1.05;
  letter-spacing: 0;
  margin-bottom: 10px;
  color: var(--ink-0);
  text-wrap: balance;
}
.ebook-page .pg-head em {  font-weight: 300; color: var(--accent); }

.ebook-page .pg-lede {
  font-family: var(--font-display); 
  font-weight: 400;
  font-size: 11px; line-height: 1.35;
  color: var(--ink-3);
  border-left: 2px solid var(--accent);
  padding-left: 10px;
  margin-bottom: 12px;
}

.ebook-page .pg-body { color: var(--ink-3); font-size: 8.5px; line-height: 1.5; font-family: var(--font-sans); }
.ebook-page .pg-body p { margin: 0 0 6px; color: var(--ink-3); font-size: 8.5px; }
.ebook-page .pg-body strong { color: var(--ink-0); font-weight: 700; }
.ebook-page .pg-body em { font-family: var(--font-display);  color: var(--accent-deep); font-weight: 500; }
.ebook-page .pg-body ul { padding-left: 12px; margin: 6px 0; }
.ebook-page .pg-body li { margin-bottom: 3px; }

.ebook-page .mini-diagram {
  margin: 10px 0; padding: 10px;
  background: var(--ink-0); color: var(--bone);
  aspect-ratio: 1/1;
  max-width: 85%;
  margin-left: auto; margin-right: auto;
  position: relative;
  display: grid; place-items: center;
}
.ebook-page .mini-diagram .mini-ring {
  position: absolute; inset: 12px;
  border: 1px dashed rgba(64,80,245,0.5);
  border-radius: 50%;
}
.ebook-page .mini-diagram .mini-core {
  width: 44%; aspect-ratio: 1/1; border-radius: 50%;
  background: var(--accent); color: #fff;
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 500;
  font-size: 10px; line-height: 1;
  text-align: center;
}

.ebook-page.toc { background: #F8F5EE; }
.ebook-page.toc .pg-head { font-size: 13px; margin-bottom: 14px; border-bottom: 1px solid var(--ink-0); padding-bottom: 6px; }
.ebook-page.toc ol { margin: 0; padding: 0; list-style: none; counter-reset: toc; }
.ebook-page.toc li { counter-increment: toc; display: grid; grid-template-columns: 18px 1fr auto; gap: 4px; padding: 3.5px 0; border-bottom: 1px dotted rgba(0,0,0,0.15); font-size: 8.5px; color: var(--ink-3); }
.ebook-page.toc li::before { content: counter(toc, decimal-leading-zero); font-family: var(--font-mono); color: var(--accent-deep); font-weight: 600; }


/* ═══════════════════════════════════════════════════════════
   MOBILE RESPONSIVE — comprehensive pass (≤640 / ≤480)
   ═══════════════════════════════════════════════════════════ */

/* ─── Tablet & small laptop (≤760) ─────────────────────────── */
@media (max-width: 760px) {
  :root { --pad: 20px; }
  section { padding: 72px 0; }

  /* Nav */
  .nav { padding: 12px 0; }
  .brand { font-size: 18px; gap: 10px; }
  .brand-mark { width: 30px; height: 30px; }
  .nav .btn { padding: 11px 16px; font-size: 12.5px; letter-spacing: 0.04em; }

  /* Hero */
  .hero { min-height: auto; padding-top: 110px; padding-bottom: 72px; }
  .hero-title { font-size: clamp(38px, 9.5vw, 56px); margin: 16px 0 20px; line-height: 1.02; }
  .hero-sub { font-size: 16px; margin-bottom: 28px; }
  .hero-ctas { gap: 10px; }
  .hero-ctas .btn { flex: 1 1 auto; justify-content: center; padding: 16px 20px; font-size: 14px; }
  .hero-ctas .btn-lg { padding: 17px 22px; font-size: 14px; }
  .hero-proof { gap: 14px; font-size: 11px; margin-top: 24px; }
  .hero-proof span { gap: 6px; }

  /* Hero book + badge */
  .hero-book { max-width: 320px; margin: 0 auto; }
  .book-3d { width: 72%; }
  .book-title { font-size: 24px; }
  .book-num { font-size: 68px; }
  .book-author { font-size: 9px; padding-top: 10px; }
  .hero-badge {
    width: 88px; height: 88px;
    top: 6%; right: -6px;
  }
  .hero-badge b { font-size: 18px; }
  .hero-badge small { font-size: 7px; letter-spacing: 0.1em; }

  /* Buttons */
  .btn { padding: 15px 22px; font-size: 14px; gap: 8px; }
  .btn-lg { padding: 18px 26px; font-size: 15px; }

  /* Section heads & eyebrows */
  .eyebrow { font-size: 10.5px; gap: 8px; letter-spacing: 0.18em; }
  .eyebrow::before { width: 18px; }
  .section-head { margin-bottom: 36px; }
  h2 { font-size: clamp(28px, 8vw, 42px); }
  h3 { font-size: clamp(19px, 4.5vw, 24px); }

  /* Marquee */
  .marquee { gap: 36px; animation-duration: 28s; }
  .marquee-item { font-size: 11px; letter-spacing: 0.14em; gap: 10px; }
  .marquee-item::after { width: 6px; height: 6px; }

  /* Pain cards */
  .pain-card { padding: 32px 24px; }
  .pain-card p { font-size: 14.5px; }

  /* Method */
  .method-inner { gap: 44px; }
  .orbit { max-width: 340px; }
  .orbit-node { width: 92px; margin-left: -46px; margin-top: -46px; }
  .orbit-node .dot { width: 44px; height: 44px; font-size: 17px; margin-bottom: 7px; }
  .orbit-node .label { font-size: 8.5px; letter-spacing: 0.15em; line-height: 1.25; }
  .orbit-ring.core { font-size: 17px; }
  .orbit-ring.core span { font-size: 8.5px; letter-spacing: 0.22em; }

  .method-list li { grid-template-columns: 52px 1fr; gap: 14px; padding: 20px 0; }
  .method-list .letter { font-size: 38px; }
  .method-list h4 { font-size: 18px; }
  .method-list p { font-size: 14.5px; }

  /* Chapters — stack num/title/pages vertically within card */
  .chapter {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "num pages"
      "body body";
    padding: 28px 22px;
    gap: 6px 14px;
  }
  .chapter .num { grid-area: num; margin-top: 0; }
  .chapter .pages { grid-area: pages; text-align: right; }
  .chapter > h4, .chapter > p { grid-column: 1 / -1; }
  .chapter h4 { font-size: 18px; margin-top: 8px; }
  .chapter p { font-size: 14px; }

  /* Authority */
  .authority-stats { gap: 14px; margin-top: 28px; padding-top: 22px; }
  .stat .big { font-size: 40px; }
  .stat .label { font-size: 9.5px; letter-spacing: 0.12em; }
  .portrait-tag { left: 14px; right: 14px; bottom: 14px; }
  .portrait-tag .name { font-size: 22px; }

  /* Testimonials */
  .test-card { padding: 28px 22px; min-height: 0; }
  .test-card blockquote { font-size: 16.5px; margin-bottom: 18px; }
  .test-card .quote-mark { font-size: 64px; margin-bottom: 2px; }

  /* Offer */
  .offer-head h2 { font-size: clamp(26px, 7vw, 34px); }
  .offer-stack li { font-size: 14px; padding: 12px 0; grid-template-columns: 18px 1fr; gap: 10px; }
  .offer-stack .val { grid-column: 2; font-size: 11px; margin-top: 2px; }
  .offer-price { padding: 28px 18px; }
  .offer-price .big { font-size: 68px; }
  .offer-price .btn { padding: 16px 20px; font-size: 14px; }
  .countdown {
    padding: 14px 18px; gap: 12px;
    flex-wrap: wrap;
    font-size: 10.5px; letter-spacing: 0.1em;
  }
  .countdown .timer { font-size: 14px; gap: 4px; }
  .countdown .timer span { padding: 5px 8px; }

  /* Guarantee */
  .guarantee { padding: 26px 22px; }
  .guarantee-seal { width: 140px; height: 140px; }
  .guarantee-seal .seal-inner { font-size: 44px; }
  .guarantee-seal .seal-inner span { font-size: 8px; }
  .guarantee h3 { font-size: 22px; }
  .guarantee p { font-size: 14.5px; }

  /* FAQ */
  .faq summary { font-size: 17.5px; gap: 14px; }
  .faq summary::after { font-size: 24px; }
  .faq details { padding: 20px 0; }
  .faq details p { font-size: 14.5px; margin-top: 12px; }

  /* Final CTA */
  .final { padding: 80px 0; }
  .final-triskell { width: 520px; height: 520px; }
  .final .lead { margin-bottom: 28px; font-size: 16px; }

  /* Footer */
  footer { padding: 44px 0 28px; }
  .footer-inner { gap: 28px; margin-bottom: 28px; }
  .footer-brand-title { font-size: 19px; }
  .footer-col h5 { font-size: 10px; margin-bottom: 12px; }
  .footer-col a, .footer-col p { font-size: 13px; margin-bottom: 8px; }
  .footer-legal {
    padding-top: 18px;
    flex-direction: column;
    gap: 8px;
    font-size: 10px;
    letter-spacing: 0.1em;
  }

  /* E-book preview grid — still 2-up but breathable */
  .ebook-section { padding: 72px 0 88px; }
  .ebook-head { margin-bottom: 40px; }
  .ebook-pages { gap: 16px; }

  /* Tweaks panel — full-width sheet from bottom */
  .tweaks-panel {
    right: 12px; left: 12px; bottom: 12px;
    width: auto; max-width: none;
    max-height: 70vh;
  }
  .tweaks-toggle { right: 14px; bottom: 14px; width: 46px; height: 46px; font-size: 19px; }
}

/* ─── Small phone (≤480) ──────────────────────────────────── */
@media (max-width: 480px) {
  :root { --pad: 16px; }
  section { padding: 60px 0; }

  body { font-size: 15.5px; }

  /* Nav: hide secondary brand text already handled at 760; also shrink CTA label */
  .nav-inner { gap: 10px; }
  .nav .btn { padding: 10px 14px; font-size: 11.5px; }

  /* Hero */
  .hero { padding-top: 96px; padding-bottom: 56px; }
  .hero-title { font-size: clamp(34px, 10vw, 44px); margin: 12px 0 18px; }
  .hero-sub { font-size: 15.5px; line-height: 1.5; margin-bottom: 22px; }
  .hero-ctas { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero-ctas .btn { width: 100%; }
  .hero-proof { flex-direction: column; gap: 8px; margin-top: 20px; align-items: flex-start; }

  /* Hero book */
  .hero-book { max-width: 260px; }
  .book-3d { transform: rotateY(-12deg) rotateX(3deg) rotateZ(-1deg); }
  @keyframes book-float {
    0%,100% { transform: rotateY(-12deg) rotateX(3deg) rotateZ(-1deg) translateY(0); }
    50%     { transform: rotateY(-10deg) rotateX(4deg) rotateZ(-1deg) translateY(-10px); }
  }
  .book-cover { padding: 20px 18px; }
  .book-title { font-size: 20px; }
  .book-num { font-size: 56px; margin: 4px 0; }
  .book-eyebrow { font-size: 9px; letter-spacing: 0.22em; }
  .book-author { font-size: 8.5px; padding-top: 8px; letter-spacing: 0.18em; }
  .hero-badge { width: 74px; height: 74px; top: 4%; right: -4px; }
  .hero-badge b { font-size: 15px; }
  .hero-badge small { font-size: 6.5px; }

  /* Type */
  h2 { font-size: clamp(26px, 8.5vw, 34px); letter-spacing: -0.025em; }

  /* Method orbit — smaller & tighter nodes */
  .orbit { max-width: 280px; }
  .orbit-node { width: 78px; margin-left: -39px; margin-top: -39px; }
  .orbit-node .dot { width: 40px; height: 40px; font-size: 15px; margin-bottom: 6px; }
  .orbit-node .label { font-size: 8px; }
  .orbit-ring.core { font-size: 15px; }
  .orbit-ring.core span { font-size: 8px; }

  /* Pain */
  .pain-card { padding: 26px 20px; }

  /* Chapter */
  .chapter { padding: 24px 18px; }
  .chapter h4 { font-size: 17px; }

  /* Authority stats — 1 row, smaller */
  .authority-stats { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .stat .big { font-size: 32px; }
  .stat .label { font-size: 8.5px; letter-spacing: 0.08em; }

  /* Offer */
  .offer-card { border-left: 0; border-right: 0; }
  .offer-head { padding: 28px 20px 22px; }
  .offer-body { padding: 26px 20px; }
  .offer-price { padding: 24px 16px; }
  .offer-price .big { font-size: 58px; }
  .offer-price .safe { font-size: 9.5px; gap: 10px; }
  .countdown { padding: 12px 14px; font-size: 9.5px; }
  .countdown .timer { font-size: 13px; }
  .countdown .timer span { padding: 4px 6px; }

  /* Guarantee */
  .guarantee { padding: 22px 18px; }
  .guarantee-seal { width: 120px; height: 120px; }
  .guarantee-seal .seal-inner { font-size: 38px; }

  /* FAQ */
  .faq summary { font-size: 16px; }
  .faq summary::after { font-size: 22px; }

  /* Final CTA */
  .final { padding: 64px 0; }
  .final-triskell { width: 400px; height: 400px; }

  /* Footer — single column */
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }

  /* E-book preview — still 2-col but centered & slightly larger text */
  .ebook-page { padding: 16px 14px; font-size: 8.5px; }
  .ebook-page .pg-head { font-size: 13px; }
  .ebook-page .pg-lede { font-size: 10px; padding-left: 8px; }
  .ebook-page .pg-body, .ebook-page .pg-body p { font-size: 8px; }
  .ebook-page.cover .cover-title { font-size: 19px; }
  .ebook-page.cover .cover-num { font-size: 54px; }
}

/* ─── Extra-small (≤360) — Galaxy Fold / small Androids ────── */
@media (max-width: 360px) {
  .hero-title { font-size: 32px; }
  .book-num { font-size: 48px; }
  .offer-price .big { font-size: 50px; }
  .stat .big { font-size: 28px; }
  .orbit { max-width: 240px; }
  .orbit-node { width: 68px; margin-left: -34px; margin-top: -34px; }
  .orbit-node .dot { width: 34px; height: 34px; font-size: 13px; }
}

/* ─── Landscape phone — avoid hero eating the viewport ─────── */
@media (max-width: 900px) and (orientation: landscape) and (max-height: 500px) {
  .hero { min-height: auto; padding-top: 96px; padding-bottom: 48px; }
  .hero-book { max-width: 240px; }
}

/* ═══════════════════════════════════════════════════════════════
   WAVE / RIPPLE / HOVER EFFECTS
   ═══════════════════════════════════════════════════════════════ */

/* ─── Ripple effect on buttons ───────────────────────────────── */
.btn { position: relative; overflow: hidden; }
.btn .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  transform: scale(0);
  animation: ripple-anim .6s ease-out;
  pointer-events: none;
}
@keyframes ripple-anim {
  to { transform: scale(4); opacity: 0; }
}

/* ─── Magnetic hover on CTA buttons ─────────────────────────── */
.btn-primary {
  transition: transform .4s cubic-bezier(.2,.8,.2,1), background .3s, box-shadow .4s;
}
.btn-primary:hover {
  box-shadow:
    0 18px 50px -12px var(--accent-glow),
    0 0 0 1px var(--accent-hot),
    inset 0 1px 0 rgba(255,255,255,0.25);
}
.btn-primary:active { transform: translateY(0) scale(0.98); }

/* ─── Card wave / tilt on hover ──────────────────────────────── */
.pain-card,
.test-card,
.chapter,
.method-list li {
  transition: transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s, background .3s;
}
.pain-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -15px rgba(0,0,0,0.4), 0 0 0 1px var(--accent-soft);
}
.test-card:hover {
  transform: translateY(-6px) rotateX(2deg);
  box-shadow: 0 24px 48px -16px rgba(0,0,0,0.5), 0 0 60px -20px var(--accent-glow);
}
.chapter:hover {
  transform: translateX(6px);
  background: var(--ink-2);
  box-shadow: -4px 0 0 0 var(--accent);
}
.method-list li:hover {
  transform: translateX(8px);
}

/* ─── Glow pulse on offer card ───────────────────────────────── */
.offer-card {
  transition: box-shadow .5s;
}
.offer-card:hover {
  box-shadow:
    0 0 80px -20px var(--accent-glow),
    0 30px 60px -20px rgba(0,0,0,0.5),
    inset 0 0 0 1px var(--accent);
}

/* ─── Orbit pulse on hover ───────────────────────────────────── */
.orbit:hover .orbit-ring { border-color: rgba(64,80,245,0.6); }
.orbit:hover .orbit-ring.core { background: radial-gradient(circle, rgba(64,80,245,0.3), transparent 70%); }
.orbit:hover .orbit-node .dot {
  transform: scale(1.15);
  box-shadow: 0 0 20px var(--accent-glow);
}
.orbit-ring { transition: border-color .5s; }
.orbit-ring.core { transition: background .5s; }
.orbit-node .dot { transition: transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s; }

/* ─── FAQ shimmer on open ────────────────────────────────────── */
.faq details[open] summary {
  background: linear-gradient(90deg, var(--accent-soft), transparent 60%);
}
.faq details[open] {
  border-color: var(--accent);
  box-shadow: 0 0 30px -10px var(--accent-glow);
}
.faq details { transition: border-color .3s, box-shadow .3s; }

/* ─── Guarantee seal spin on hover ───────────────────────────── */
.guarantee:hover .guarantee-seal {
  transform: rotate(8deg) scale(1.05);
}
.guarantee-seal { transition: transform .5s cubic-bezier(.2,.8,.2,1); }

/* ─── Hero badge bounce on hover ─────────────────────────────── */
.hero-badge:hover {
  transform: rotate(-6deg) scale(1.12);
  box-shadow: 0 16px 50px -8px var(--accent-glow);
}
.hero-badge { transition: transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s; }

/* ─── Ebook page lift ────────────────────────────────────────── */
.ebook-page {
  transition: transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s;
}
.ebook-page:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 24px 48px -12px rgba(0,0,0,0.6), 0 0 40px -10px var(--accent-glow);
  z-index: 2;
}

/* ─── Eyebrow line grow on scroll-in ─────────────────────────── */
.eyebrow::before {
  transition: width .6s cubic-bezier(.2,.8,.2,1);
}

/* ─── Avatar glow ────────────────────────────────────────────── */
.test-card:hover .avatar {
  box-shadow: 0 0 20px var(--accent-glow);
  border-color: var(--accent);
}
.avatar { transition: box-shadow .4s, border-color .3s; }

/* ─── Letter badge pop ───────────────────────────────────────── */
.method-list li:hover .letter {
  transform: scale(1.15) rotate(-4deg);
  box-shadow: 0 0 24px var(--accent-glow);
}
.letter { transition: transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s; }

/* ─── Stat number glow ───────────────────────────────────────── */
.stat:hover .big {
  text-shadow: 0 0 30px var(--accent-glow);
  color: var(--accent);
}
.stat .big { transition: text-shadow .4s, color .4s; }

/* ═══════════════════════════════════════════════════════════════
   STICKY CTA MOBILE
   ═══════════════════════════════════════════════════════════════ */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 40;
  background: rgba(9,9,12,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(64,80,245,0.3);
  padding: 14px 16px;
  padding-bottom: calc(14px + env(safe-area-inset-bottom, 0px));
  display: none;
  align-items: center;
  justify-content: center;
  gap: 14px;
  transform: translateY(100%);
  transition: transform .4s cubic-bezier(.2,.8,.2,1), opacity .3s;
  opacity: 0;
}
.sticky-cta.visible { transform: translateY(0); opacity: 1; }
.sticky-cta .sticky-price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--bone);
  white-space: nowrap;
}
.sticky-cta .sticky-price small {
  font-size: 12px;
  font-weight: 400;
  color: var(--bone-mute);
  display: block;
  font-family: var(--font-mono);
  letter-spacing: 0.08em;
}
.sticky-cta .btn { flex: 1; max-width: 280px; text-align: center; justify-content: center; }
@media (max-width: 760px) {
  .sticky-cta { display: flex; }
  footer { padding-bottom: 90px; }
  .final { padding-bottom: 120px; }
}

/* ═══════════════════════════════════════════════════════════════
   WHATSAPP FLOATING BUTTON
   ═══════════════════════════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 20px;
  z-index: 41;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s, bottom .4s cubic-bezier(.2,.8,.2,1);
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 32px rgba(37,211,102,0.5);
}
.whatsapp-float svg { width: 28px; height: 28px; }
@media (max-width: 760px) {
  /* Sit above the sticky CTA bar (~60px + padding) */
  .whatsapp-float { bottom: 80px; right: 16px; width: 52px; height: 52px; }
  .whatsapp-float svg { width: 26px; height: 26px; }
}
@media (min-width: 761px) {
  .whatsapp-float { bottom: 28px; right: 28px; }
}

/* ═══════════════════════════════════════════════════════════════
   "PARA QUEM É" SECTION
   ═══════════════════════════════════════════════════════════════ */
.for-who {
  background: var(--ink-1);
  border-top: 1px solid rgba(242,239,233,0.06);
  border-bottom: 1px solid rgba(242,239,233,0.06);
}
.for-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(242,239,233,0.06);
}
@media (max-width: 760px) { .for-grid { grid-template-columns: 1fr; } }
.for-col {
  background: var(--ink-1);
  padding: 48px 40px;
}
.for-col h3 {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 28px;
}
.for-col h3 .icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 18px; font-weight: 700;
  flex-shrink: 0;
}
.for-col.yes h3 .icon { background: var(--accent); color: #fff; }
.for-col.no h3 .icon { background: rgba(224,59,59,0.2); color: var(--blood); }
.for-col ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 16px;
}
.for-col li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15.5px; color: var(--bone-soft); line-height: 1.5;
}
.for-col.yes li::before {
  content: "✓"; color: var(--accent); font-weight: 700;
  flex-shrink: 0; margin-top: 1px;
}
.for-col.no li::before {
  content: "✕"; color: var(--blood); font-weight: 700;
  flex-shrink: 0; margin-top: 1px;
}
@media (max-width: 480px) {
  .for-col { padding: 32px 20px; }
}

/* ═══════════════════════════════════════════════════════════════
   INLINE CTA BETWEEN SECTIONS
   ═══════════════════════════════════════════════════════════════ */
.inline-cta {
  text-align: center;
  padding: 48px var(--pad);
  background: linear-gradient(180deg, transparent, var(--accent-soft) 50%, transparent);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.inline-cta .btn {
  margin: 0 auto;
}
.inline-cta p {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bone-faint);
  margin: 12px 0 0;
}
@media (max-width: 760px) {
  .inline-cta { padding: 36px var(--pad); }
  .inline-cta .btn { width: 100%; max-width: 340px; justify-content: center; }
}

/* ═══════════════════════════════════════════════════════════════
   VIDEO PLACEHOLDER
   ═══════════════════════════════════════════════════════════════ */
.video-placeholder {
  position: relative;
  aspect-ratio: 16/9;
  max-width: 720px;
  margin: 40px auto 0;
  background: var(--ink-2);
  border: 1px solid rgba(64,80,245,0.25);
  display: grid;
  place-items: center;
  overflow: hidden;
  cursor: pointer;
  transition: border-color .3s, box-shadow .4s;
}
.video-placeholder:hover {
  border-color: var(--accent);
  box-shadow: 0 0 60px -15px var(--accent-glow);
}
.video-placeholder .play-btn {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: grid; place-items: center;
  font-size: 32px;
  box-shadow: 0 12px 40px -8px var(--accent-glow);
  transition: transform .3s cubic-bezier(.2,.8,.2,1);
  z-index: 1;
}
.video-placeholder:hover .play-btn { transform: scale(1.12); }
.video-placeholder .video-label {
  position: absolute;
  bottom: 16px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bone-faint);
  white-space: nowrap;
}
.video-placeholder::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 50% 50%, var(--accent-soft), transparent 60%);
  opacity: 0.5;
}
@media (max-width: 760px) {
  .video-placeholder { max-width: 100%; margin: 28px auto 0; }
  .video-placeholder .play-btn { width: 64px; height: 64px; font-size: 26px; }
  .video-placeholder .video-label { font-size: 10px; bottom: 12px; }
}
@media (max-width: 480px) {
  .video-placeholder .play-btn { width: 52px; height: 52px; font-size: 22px; }
  .video-placeholder .video-label { font-size: 9px; bottom: 8px; letter-spacing: 0.1em; }
}

/* ═══════════════════════════════════════════════════════════════
   SCROLL REVEAL — subtle fade-up on viewport entry
   ═══════════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s cubic-bezier(.2,.8,.2,1), transform .7s cubic-bezier(.2,.8,.2,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children for grid/list sections */
.reveal-stagger > .reveal:nth-child(2) { transition-delay: .1s; }
.reveal-stagger > .reveal:nth-child(3) { transition-delay: .2s; }
.reveal-stagger > .reveal:nth-child(4) { transition-delay: .3s; }
.reveal-stagger > .reveal:nth-child(5) { transition-delay: .4s; }
.reveal-stagger > .reveal:nth-child(6) { transition-delay: .5s; }

/* ═══════════════════════════════════════════════════════════════
   WAITLIST FORM
   ═══════════════════════════════════════════════════════════════ */
.waitlist {
  background: linear-gradient(180deg, var(--ink-0) 0%, var(--ink-1) 50%, var(--ink-0) 100%);
  position: relative;
}
.waitlist::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 60% at 50% 40%, var(--accent-soft), transparent 70%);
  pointer-events: none;
}
.waitlist-form {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}
@media (max-width: 760px) {
  .form-grid { grid-template-columns: 1fr; }
}
.form-field {
  text-align: left;
}
.form-field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bone-mute);
  margin-bottom: 8px;
}
.form-field input {
  width: 100%;
  padding: 14px 16px;
  background: var(--ink-2);
  border: 1px solid rgba(242,239,233,0.1);
  color: var(--bone);
  font-family: var(--font-sans);
  font-size: 15px;
  outline: none;
  transition: border-color .3s, box-shadow .3s;
  border-radius: 2px;
}
.form-field input::placeholder { color: var(--bone-faint); }
.form-field input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft), 0 0 20px -5px var(--accent-glow);
}
.waitlist-btn {
  margin-top: 8px;
}
.waitlist-disclaimer {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--bone-faint);
  margin-top: 16px;
  text-transform: uppercase;
}
.waitlist-success {
  text-align: center;
  padding: 40px 0;
}
.waitlist-success .success-check {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  box-shadow: 0 12px 40px -8px var(--accent-glow);
}
.waitlist-success h3 {
  margin-bottom: 12px;
}
.waitlist-success p {
  max-width: 400px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════════════
   REAL TESTIMONIALS (with screenshots)
   ═══════════════════════════════════════════════════════════════ */
.real-testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 980px) { .real-testimonials { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; } }

.real-testimonials .test-card {
  background: var(--ink-1);
  border: 1px solid rgba(242,239,233,0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.test-screenshot {
  position: relative;
  overflow: hidden;
  max-height: 280px;
}
.test-screenshot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform .5s cubic-bezier(.2,.8,.2,1);
}
.test-card:hover .test-screenshot img {
  transform: scale(1.03);
}
.test-content {
  padding: 24px 28px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.test-content blockquote {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--bone-soft);
  margin: 0 0 auto;
  padding-bottom: 20px;
  font-style: italic;
}
.test-content blockquote::before {
  content: "\201C";
  font-size: 32px;
  line-height: 1;
  color: var(--accent);
  font-family: Georgia, serif;
  display: block;
  margin-bottom: 8px;
}
.test-content .author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(242,239,233,0.06);
}
.author-info .who {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--bone);
}
.author-info .role {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--bone-faint);
  margin-top: 4px;
}
.insta-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(242,239,233,0.06);
  color: var(--bone-mute);
  transition: background .3s, color .3s, transform .3s;
  flex-shrink: 0;
}
.insta-link:hover {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
  transform: scale(1.1);
}
.insta-link svg { width: 18px; height: 18px; }

/* ═══════════════════════════════════════════════════════════════
   WHATSAPP GROUP SECTION
   ═══════════════════════════════════════════════════════════════ */
.whatsapp-group {
  background: var(--ink-1);
  border-top: 1px solid rgba(242,239,233,0.06);
  border-bottom: 1px solid rgba(242,239,233,0.06);
  padding: 80px 0;
}
.wag-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: center;
  background: var(--ink-2);
  border: 1px solid rgba(37,211,102,0.2);
  padding: 40px;
  max-width: 580px;
  margin: 0 auto;
  transition: border-color .3s, box-shadow .4s;
}
.wag-card:hover {
  border-color: rgba(37,211,102,0.5);
  box-shadow: 0 0 60px -15px rgba(37,211,102,0.2);
}
@media (max-width: 560px) {
  .wag-card { grid-template-columns: 1fr; gap: 24px; text-align: center; padding: 28px 20px; }
  .wag-qr { margin: 0 auto; }
  .wag-info { display: flex; flex-direction: column; align-items: center; }
  .wag-name { justify-content: center; }
}
.wag-qr {
  width: 220px;
  flex-shrink: 0;
  border: 2px solid rgba(37,211,102,0.3);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  padding: 8px;
}
.wag-qr img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
}
.wag-name {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--bone);
}
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: #25D366;
  color: #fff;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 15px;
  border-radius: 2px;
  transition: background .3s, transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s;
  white-space: nowrap;
}
.btn-whatsapp:hover {
  background: #1ebe57;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px -8px rgba(37,211,102,0.4);
}

/* ─── Reduced motion ──────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .book-3d, .hero-triskell, .final-triskell, .hero-badge, .marquee {
    animation: none !important;
  }
  .ebook-page { transition: none; }
  .btn .ripple { display: none; }
  .pain-card, .test-card, .chapter, .method-list li,
  .offer-card, .ebook-page { transition: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .sticky-cta { transition: none; }
}
