/* ============================================================
   GISELE MACHADO — Método Influência Notável™
   Direção: Editorial Noir Dourado
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --noir:        #0B0908;
  --noir-2:      #100C09;
  --surface:     #16110B;
  --surface-2:   #1D1710;
  --line:        rgba(201, 163, 91, 0.16);
  --line-soft:   rgba(245, 239, 227, 0.08);

  --gold-1:      #F0D79A;
  --gold-2:      #C9A35B;
  --gold-3:      #9B7838;
  --gold-brand:  #7C5D2D;
  --gold-grad:   linear-gradient(135deg, #F0D79A 0%, #C9A35B 42%, #9B7838 100%);

  --cream:       #F5EFE3;
  --cream-soft:  #D9D1C2;
  --muted:       #908778;
  --muted-2:     #6E665A;
  --rouge:       #B11E2F;

  --ff-display: "Fraunces", Georgia, serif;
  --ff-body:    "Hanken Grotesk", -apple-system, system-ui, sans-serif;

  --maxw: 1240px;
  --pad: clamp(20px, 5vw, 80px);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-2: cubic-bezier(0.65, 0.05, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

body {
  font-family: var(--ff-body);
  background: var(--noir);
  color: var(--cream-soft);
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--gold-2); color: var(--noir); }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); }

/* ---------- Typography helpers ---------- */
.gold-text {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.eyebrow, .section-eyebrow {
  font-family: var(--ff-body);
  font-size: 0.74rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-2);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.8em;
}
.eyebrow sup { font-size: 0.55em; top: -0.6em; }
.eyebrow__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold-grad);
  box-shadow: 0 0 12px rgba(201,163,91,0.7);
}
.section-eyebrow::before {
  content: ""; width: 32px; height: 1px;
  background: linear-gradient(90deg, var(--gold-2), transparent);
}
.section-title {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(2.2rem, 5.2vw, 4rem);
  line-height: 1.04;
  letter-spacing: -0.01em;
  color: var(--cream);
}

/* ============================================================
   Grain, cursor, preloader, progress
   ============================================================ */
.grain {
  position: fixed; inset: -50%;
  width: 200%; height: 200%;
  pointer-events: none; z-index: 9990;
  opacity: 0.04; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grainShift 8s steps(6) infinite;
}
@keyframes grainShift {
  0%,100% { transform: translate(0,0); }
  20% { transform: translate(-6%, 4%); }
  40% { transform: translate(4%, -6%); }
  60% { transform: translate(-4%, 2%); }
  80% { transform: translate(6%, 6%); }
}

.scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0;
  background: var(--gold-grad); z-index: 9995;
  box-shadow: 0 0 14px rgba(201,163,91,0.6);
}

.preloader {
  position: fixed; inset: 0; z-index: 9998;
  background: var(--noir);
  display: grid; place-items: center;
  transition: opacity .8s var(--ease), visibility .8s;
}
.preloader.is-done { opacity: 0; visibility: hidden; }
.preloader__inner { display: flex; flex-direction: column; align-items: center; gap: 26px; }
.preloader__logo { width: 150px; opacity: 0.92; animation: floaty 3s ease-in-out infinite; }
.preloader__bar { width: 160px; height: 2px; background: var(--line-soft); overflow: hidden; }
.preloader__bar span { display: block; height: 100%; width: 0; background: var(--gold-grad); animation: loadbar 1.4s var(--ease) forwards; }
@keyframes loadbar { to { width: 100%; } }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  position: relative;
  display: inline-flex; align-items: center; gap: 0.65em;
  font-family: var(--ff-body);
  font-weight: 600; font-size: 0.92rem;
  letter-spacing: 0.01em;
  padding: 0.95em 1.7em;
  border-radius: 100px;
  cursor: pointer;
  transition: transform .4s var(--ease), color .4s var(--ease), box-shadow .4s var(--ease);
  white-space: nowrap;
  will-change: transform;
}
.btn span { position: relative; z-index: 2; }
.btn svg { position: relative; z-index: 2; transition: transform .4s var(--ease); }
.btn--lg { padding: 1.1em 2.1em; font-size: 1rem; }

.btn--gold {
  color: var(--noir);
  background: var(--gold-grad);
  box-shadow: 0 8px 30px -8px rgba(201,163,91,0.5), inset 0 0 0 1px rgba(255,255,255,0.18);
}
.btn--gold::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  background: linear-gradient(135deg, #FCEBC0, #E0BC72);
  opacity: 0; transition: opacity .4s var(--ease); z-index: 1;
}
.btn--gold:hover { box-shadow: 0 14px 44px -8px rgba(201,163,91,0.7), inset 0 0 0 1px rgba(255,255,255,0.35); }
.btn--gold:hover::before { opacity: 1; }
.btn--gold:hover svg { transform: translateX(4px); }

.btn--ghost {
  color: var(--cream);
  border: 1px solid var(--line);
  background: rgba(245,239,227,0.015);
  backdrop-filter: blur(4px);
}
.btn--ghost::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  background: rgba(201,163,91,0.10); opacity: 0;
  transition: opacity .4s var(--ease); z-index: 1;
}
.btn--ghost:hover { border-color: var(--gold-2); color: var(--gold-1); }
.btn--ghost:hover::before { opacity: 1; }

/* ============================================================
   Navigation
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: background .5s var(--ease), border-color .5s, backdrop-filter .5s, padding .5s var(--ease);
  border-bottom: 1px solid transparent;
  padding: 14px 0;
}
.nav.is-scrolled {
  background: rgba(11,9,8,0.72);
  backdrop-filter: blur(18px) saturate(140%);
  border-bottom-color: var(--line-soft);
  padding: 8px 0;
}
.nav__inner {
  max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav__brand img { height: 30px; width: auto; transition: opacity .3s; }
.nav__brand:hover img { opacity: 0.7; }
.nav__links { display: flex; gap: 34px; }
.nav__links a {
  position: relative;
  font-size: 0.86rem; font-weight: 500; letter-spacing: 0.02em;
  color: var(--cream-soft); cursor: pointer;
  transition: color .3s;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  width: 0; height: 1px; background: var(--gold-grad);
  transition: width .4s var(--ease);
}
.nav__links a:hover, .nav__links a.is-active { color: var(--gold-1); }
.nav__links a:hover::after, .nav__links a.is-active::after { width: 100%; }
.nav__cta { font-size: 0.84rem; padding: 0.7em 1.4em; }

.nav__burger {
  display: none; flex-direction: column; gap: 6px;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.nav__burger span { width: 26px; height: 1.6px; background: var(--cream); transition: transform .4s var(--ease), opacity .3s; }
.nav__burger.is-open span:nth-child(1) { transform: translateY(3.8px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { transform: translateY(-3.8px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 999;
  background: var(--noir-2);
  display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 8px;
  opacity: 0; visibility: hidden; transform: translateY(-12px);
  transition: opacity .5s var(--ease), visibility .5s, transform .5s var(--ease);
  padding: var(--pad);
}
.mobile-menu.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
.mobile-menu nav { display: flex; flex-direction: column; align-items: center; gap: 4px; margin-bottom: 28px; }
.mobile-menu nav a {
  font-family: var(--ff-display); font-size: 2rem; font-weight: 400; color: var(--cream);
  padding: 8px 0; transition: color .3s;
}
.mobile-menu nav a:hover { color: var(--gold-1); }
.mobile-menu__social { display: flex; gap: 24px; margin-top: 28px; }
.mobile-menu__social a { font-size: 0.82rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-2); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 40px;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 140px var(--pad) 80px;
  overflow: hidden;
}
.hero__aura {
  position: absolute; z-index: 0;
  width: 60vw; height: 60vw; max-width: 760px; max-height: 760px;
  right: -8%; top: 50%; transform: translateY(-50%);
  background: radial-gradient(circle, rgba(201,163,91,0.20) 0%, rgba(155,120,56,0.06) 38%, transparent 68%);
  filter: blur(18px);
  pointer-events: none;
  animation: pulseAura 9s ease-in-out infinite;
}
@keyframes pulseAura { 0%,100% { opacity: 0.85; transform: translateY(-50%) scale(1); } 50% { opacity: 1; transform: translateY(-50%) scale(1.06); } }
.hero__grid-lines {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(var(--line-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
  background-size: 100% 25%, 25% 100%;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, #000 30%, transparent 80%);
  opacity: 0.5;
}

.hero__content { position: relative; z-index: 3; }
.eyebrow { margin-bottom: 28px; }

.hero__title {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(2.7rem, 7vw, 5.6rem);
  line-height: 1.0;
  letter-spacing: -0.022em;
  color: var(--cream);
  margin-bottom: 32px;
}
.hero__title .line { display: block; overflow: hidden; }
.hero__title .line > span { display: block; }

.hero__lead {
  font-size: clamp(1.02rem, 1.5vw, 1.22rem);
  color: var(--cream-soft);
  max-width: 30em;
  margin-bottom: 38px;
  line-height: 1.65;
}
.hero__lead strong { color: var(--cream); font-weight: 600; }

.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 30px; }
.hero__note {
  font-size: 0.82rem; letter-spacing: 0.04em; color: var(--muted);
  display: flex; align-items: center; gap: 10px;
}
.hero__note::before { content: ""; width: 24px; height: 1px; background: var(--gold-3); }

/* Hero visual */
.hero__visual { position: relative; z-index: 2; display: flex; justify-content: center; align-items: center; }
.hero__frame {
  position: relative;
  width: min(420px, 80%);
  aspect-ratio: 564 / 740;
  will-change: transform;
}
.hero__frame-ring {
  position: absolute; inset: -22px;
  border: 1px solid var(--line);
  border-radius: 280px 280px 14px 14px;
  pointer-events: none;
}
.hero__frame-ring::after {
  content: ""; position: absolute; inset: 12px;
  border: 1px solid var(--line-soft);
  border-radius: 260px 260px 8px 8px;
}
.hero__photo {
  position: relative; width: 100%; height: 100%;
  border-radius: 270px 270px 10px 10px;
  overflow: hidden;
  background: linear-gradient(180deg, #1a1611, #0b0908);
  box-shadow: 0 50px 90px -40px rgba(0,0,0,0.9);
}
.hero__photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: 50% 22%;
  -webkit-mask-image: radial-gradient(140% 120% at 50% 30%, #000 62%, transparent 100%);
  mask-image: radial-gradient(140% 120% at 50% 30%, #000 62%, transparent 100%);
}
.hero__photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(11,9,8,0.85) 100%);
}
.hero__caption {
  position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%);
  font-family: var(--ff-display); font-style: italic; font-size: 1.15rem;
  color: var(--gold-1); letter-spacing: 0.02em; z-index: 2;
  text-shadow: 0 2px 18px rgba(0,0,0,0.8);
}
.hero__sidetext {
  position: absolute; right: -14px; top: 50%;
  transform: translateY(-50%) rotate(90deg); transform-origin: right center;
  font-size: 0.7rem; letter-spacing: 0.5em; text-transform: uppercase;
  color: var(--muted-2); white-space: nowrap;
}

.hero__scroll {
  position: absolute; bottom: 34px; left: var(--pad); z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: 0.66rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--muted);
  cursor: pointer;
}
.hero__scroll-line { width: 1px; height: 46px; background: linear-gradient(var(--gold-2), transparent); position: relative; overflow: hidden; }
.hero__scroll-line::after { content: ""; position: absolute; top: -50%; left: 0; width: 100%; height: 50%; background: var(--gold-1); animation: scrollDrop 2s var(--ease) infinite; }
@keyframes scrollDrop { 0% { top: -50%; } 60%,100% { top: 100%; } }

/* ============================================================
   Marquee
   ============================================================ */
.marquee {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  padding: 22px 0; overflow: hidden;
  background: var(--noir-2);
}
.marquee__track { display: flex; align-items: center; gap: 40px; width: max-content; animation: marquee 32s linear infinite; }
.marquee__track span {
  font-family: var(--ff-display); font-size: clamp(1.4rem, 3vw, 2.4rem);
  font-weight: 400; color: var(--cream); white-space: nowrap; font-style: italic;
}
.marquee__track .dot { color: var(--gold-2); font-style: normal; font-size: 1rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   Manifesto
   ============================================================ */
.manifesto { padding: clamp(90px, 14vh, 170px) 0; }
.manifesto .section-eyebrow { margin-bottom: 38px; }
.manifesto__statement {
  font-family: var(--ff-display); font-weight: 300;
  font-size: clamp(2.4rem, 7vw, 5.6rem);
  line-height: 1.03; letter-spacing: -0.02em; color: var(--cream);
  margin-bottom: 64px;
}
.manifesto__statement em { font-style: italic; font-weight: 400; }
.manifesto__statement .reveal-line { display: block; }
.manifesto__cols {
  display: grid; grid-template-columns: 1.3fr 0.9fr; gap: clamp(40px, 6vw, 100px);
  align-items: start; padding-top: 30px; border-top: 1px solid var(--line-soft);
}
.manifesto__text { font-size: clamp(1.05rem, 1.5vw, 1.3rem); line-height: 1.7; color: var(--cream-soft); }
.manifesto__text strong { color: var(--gold-1); font-weight: 600; }
.painlist { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.painlist li {
  display: flex; align-items: baseline; gap: 16px;
  padding: 16px 0; border-bottom: 1px solid var(--line-soft);
  font-size: 1rem; color: var(--cream-soft);
  transition: color .35s, padding-left .35s var(--ease);
}
.painlist li span { font-family: var(--ff-display); font-size: 0.82rem; color: var(--gold-3); font-style: italic; }
.painlist li:hover { color: var(--cream); padding-left: 8px; }

/* ============================================================
   Method
   ============================================================ */
.method { position: relative; padding: clamp(90px, 14vh, 170px) 0; overflow: hidden; }
.method__bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(circle at 12% 30%, rgba(124,93,45,0.12), transparent 42%),
    radial-gradient(circle at 88% 78%, rgba(201,163,91,0.10), transparent 46%);
}
.method__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(40px, 7vw, 110px); align-items: start; }
.method__head { position: sticky; top: 120px; }
.method__title {
  font-family: var(--ff-display); font-weight: 400;
  font-size: clamp(2rem, 4.4vw, 3.4rem); line-height: 1.08; color: var(--cream);
  margin-top: 24px; letter-spacing: -0.01em;
}
.method__body p { font-size: clamp(1.05rem, 1.5vw, 1.32rem); line-height: 1.75; color: var(--cream-soft); margin-bottom: 30px; }
.method__body strong { color: var(--gold-1); font-weight: 600; }
.method__pull {
  font-family: var(--ff-display) !important; font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.3rem) !important; line-height: 1.3 !important;
  color: var(--cream) !important; padding: 34px 0 8px;
  border-top: 1px solid var(--line); margin-top: 14px;
}
.method__pull em { color: var(--gold-1); }

/* ============================================================
   Pillars
   ============================================================ */
.pillars { padding: clamp(90px, 14vh, 170px) 0; }
.pillars__head { display: flex; flex-direction: column; gap: 22px; margin-bottom: 70px; }
.pillars__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pillar {
  position: relative;
  padding: 44px 34px 50px;
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  background: linear-gradient(165deg, var(--surface), var(--noir-2));
  overflow: hidden;
  transition: transform .5s var(--ease), border-color .5s, box-shadow .5s;
}
.pillar::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(420px circle at var(--mx,50%) var(--my,0%), rgba(201,163,91,0.14), transparent 60%);
  opacity: 0; transition: opacity .5s; pointer-events: none;
}
.pillar:hover { transform: translateY(-8px); border-color: var(--line); box-shadow: 0 30px 60px -30px rgba(0,0,0,0.8); }
.pillar:hover::before { opacity: 1; }
.pillar__num {
  font-family: var(--ff-display); font-style: italic; font-weight: 400;
  font-size: 3.4rem; line-height: 1;
  background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent;
  display: block; margin-bottom: 26px;
}
.pillar h3 {
  font-family: var(--ff-display); font-weight: 500;
  font-size: 1.65rem; line-height: 1.12; color: var(--cream);
  margin-bottom: 18px; letter-spacing: -0.01em;
}
.pillar p { font-size: 0.97rem; line-height: 1.65; color: var(--muted); }
.pillar__line { position: absolute; left: 34px; bottom: 0; height: 2px; width: 0; background: var(--gold-grad); transition: width .6s var(--ease); }
.pillar:hover .pillar__line { width: calc(100% - 68px); }

/* ============================================================
   About / Trajetória
   ============================================================ */
.about { padding: clamp(90px, 14vh, 170px) 0; background: var(--noir-2); }
.about__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(40px, 7vw, 110px); align-items: center; }
.about__media { position: relative; }
.about__photo {
  position: relative; aspect-ratio: 564/700; max-width: 440px; margin: 0 auto;
  border-radius: 16px; overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 40px 80px -40px rgba(0,0,0,0.9);
}
.about__photo::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(11,9,8,0.0) 50%, rgba(11,9,8,0.5) 100%),
              radial-gradient(120% 80% at 50% 0%, transparent 55%, rgba(124,93,45,0.18) 100%);
}
.about__photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 18%; }
.about__badge {
  position: absolute; bottom: -26px; right: 6%;
  width: 96px; height: 96px; border-radius: 50%;
  background: var(--noir); border: 1px solid var(--line);
  display: grid; place-items: center; padding: 18px;
  box-shadow: 0 20px 50px -20px rgba(0,0,0,0.9);
  animation: floaty 5s ease-in-out infinite;
}
.about__badge img { width: 100%; opacity: 0.9; }
.about__content .section-title { margin: 18px 0 26px; }
.about__content p { font-size: 1.05rem; line-height: 1.72; color: var(--cream-soft); margin-bottom: 22px; max-width: 34em; }
.about__stats { list-style: none; display: flex; flex-wrap: wrap; gap: 40px; margin-top: 40px; padding-top: 34px; border-top: 1px solid var(--line-soft); }
.about__stats li { display: flex; flex-direction: column; gap: 6px; }
.about__stats strong {
  font-family: var(--ff-display); font-weight: 400; font-size: clamp(2.2rem, 4vw, 3rem); line-height: 1;
  background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.about__stats span { font-size: 0.78rem; letter-spacing: 0.08em; color: var(--muted); text-transform: uppercase; max-width: 12em; }

/* ============================================================
   Audience
   ============================================================ */
.audience { padding: clamp(90px, 14vh, 170px) 0; }
.audience__head { display: flex; flex-direction: column; gap: 22px; margin-bottom: 60px; max-width: 18em; }
.audience__grid { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line-soft); border-left: 1px solid var(--line-soft); }
.audience__grid li {
  position: relative;
  padding: 46px 30px;
  border-right: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  font-family: var(--ff-display); font-weight: 400;
  font-size: clamp(1.3rem, 2.2vw, 1.9rem); line-height: 1.15; color: var(--cream-soft);
  transition: color .4s, background .4s;
  overflow: hidden;
}
.audience__grid li::before {
  content: "↗"; position: absolute; top: 24px; right: 24px;
  font-family: var(--ff-body); font-size: 1rem; color: var(--gold-2);
  opacity: 0; transform: translate(-6px, 6px); transition: opacity .4s, transform .4s var(--ease);
}
.audience__grid li:hover { color: var(--cream); background: var(--surface); }
.audience__grid li:hover::before { opacity: 1; transform: translate(0,0); }

/* ============================================================
   Results
   ============================================================ */
.results { padding: clamp(90px, 14vh, 170px) 0; background: var(--noir-2); }
.results__inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 7vw, 110px); align-items: start; }
.results__head { position: sticky; top: 120px; }
.results__head .section-title { margin: 22px 0 28px; }
.results__lead { font-size: 1.05rem; line-height: 1.7; color: var(--muted); max-width: 30em; }
.results__list { list-style: none; display: flex; flex-direction: column; }
.results__list li {
  display: flex; align-items: center; gap: 22px;
  padding: 26px 0; border-bottom: 1px solid var(--line-soft);
  font-family: var(--ff-display); font-weight: 400;
  font-size: clamp(1.25rem, 2.4vw, 1.75rem); color: var(--cream);
  transition: gap .4s var(--ease), color .4s;
}
.results__list li:first-child { border-top: 1px solid var(--line-soft); }
.results__mark { position: relative; flex: 0 0 auto; width: 26px; height: 26px; }
.results__mark::before, .results__mark::after { content: ""; position: absolute; background: var(--gold-grad); border-radius: 2px; }
.results__mark::before { left: 2px; bottom: 8px; width: 9px; height: 2px; transform: rotate(45deg); }
.results__mark::after { left: 7px; bottom: 5px; width: 16px; height: 2px; transform: rotate(-50deg); }
.results__list li:hover { gap: 30px; color: var(--gold-1); }

/* ============================================================
   CTA
   ============================================================ */
.cta { position: relative; padding: clamp(110px, 18vh, 220px) 0; overflow: hidden; text-align: center; }
.cta__aura {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
  width: 90vw; height: 90vw; max-width: 1000px; max-height: 1000px;
  background: radial-gradient(circle, rgba(201,163,91,0.16) 0%, transparent 60%);
  pointer-events: none; animation: pulseAura 10s ease-in-out infinite;
}
.cta__inner { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; }
.cta__title {
  font-family: var(--ff-display); font-weight: 400;
  font-size: clamp(2.2rem, 6vw, 4.6rem); line-height: 1.08; letter-spacing: -0.02em;
  color: var(--cream); margin: 28px auto 24px; max-width: 16em;
}
.cta__lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--cream-soft); max-width: 32em; margin-bottom: 44px; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

/* ============================================================
   Footer
   ============================================================ */
.footer { border-top: 1px solid var(--line-soft); padding: 80px 0 36px; background: var(--noir); }
.footer__inner { display: grid; grid-template-columns: 1.3fr 1fr; gap: 60px; padding-bottom: 60px; border-bottom: 1px solid var(--line-soft); }
.footer__brand img { height: 34px; margin-bottom: 24px; }
.footer__brand p { font-size: 0.95rem; color: var(--muted); max-width: 32em; line-height: 1.7; }
.footer__cols { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; }
.footer__col h4 { font-size: 0.72rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold-2); margin-bottom: 20px; font-weight: 600; }
.footer__col a { display: block; font-size: 0.95rem; color: var(--cream-soft); padding: 7px 0; transition: color .3s, transform .3s var(--ease); }
.footer__col a:hover { color: var(--gold-1); transform: translateX(4px); }
.footer__bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; padding-top: 28px; font-size: 0.8rem; color: var(--muted-2); letter-spacing: 0.02em; }

/* ============================================================
   Floating WhatsApp
   ============================================================ */
.wa-float {
  position: fixed; right: 26px; bottom: 26px; z-index: 900;
  width: 58px; height: 58px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--gold-grad); color: var(--noir);
  box-shadow: 0 12px 34px -8px rgba(201,163,91,0.6), inset 0 0 0 1px rgba(255,255,255,0.25);
  cursor: pointer;
  transition: transform .4s var(--ease), box-shadow .4s;
  animation: waPop .6s var(--ease) 1.6s both;
}
.wa-float::after {
  content: ""; position: absolute; inset: -6px; border-radius: 50%;
  border: 1px solid var(--gold-2); opacity: 0.6;
  animation: waRing 2.4s ease-out infinite;
}
@keyframes waRing { 0% { transform: scale(0.9); opacity: 0.7; } 100% { transform: scale(1.45); opacity: 0; } }
@keyframes waPop { from { transform: scale(0) rotate(-40deg); opacity: 0; } to { transform: scale(1) rotate(0); opacity: 1; } }
.wa-float:hover { transform: scale(1.08); box-shadow: 0 18px 44px -8px rgba(201,163,91,0.8); }

/* ============================================================
   Reveal animations
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.is-in { opacity: 1; transform: translateY(0); }

.reveal-mask > span { transform: translateY(110%); transition: transform 1.1s var(--ease); display: block; }
.reveal-mask.is-in > span { transform: translateY(0); }

.reveal-line { opacity: 0; transform: translateY(120%); transition: opacity 1s var(--ease), transform 1.1s var(--ease); }
.reveal-line.is-in { opacity: 1; transform: translateY(0); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1080px) {
  .method__inner, .results__inner { grid-template-columns: 1fr; }
  .method__head, .results__head { position: static; }
  .pillars__grid { grid-template-columns: 1fr; max-width: 520px; }
  .about__grid { grid-template-columns: 1fr; }
  .about__media { max-width: 440px; margin: 0 auto; }
}

@media (max-width: 900px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .hero {
    grid-template-columns: 1fr;
    text-align: left;
    padding-top: 120px;
    gap: 56px;
  }
  .hero__visual { order: -1; }
  .hero__sidetext { display: none; }
  .hero__scroll { display: none; }
  .manifesto__cols { grid-template-columns: 1fr; gap: 40px; }
  .footer__inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 640px) {
  :root { --pad: 22px; }
  .audience__grid { grid-template-columns: 1fr 1fr; }
  .footer__cols { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; }
  .hero__frame { width: min(330px, 86%); }
  .btn--lg { width: 100%; justify-content: center; }
  .hero__actions, .cta__actions { width: 100%; }
}

@media (max-width: 420px) {
  .audience__grid { grid-template-columns: 1fr; }
}
