:root {
  --bg: #fbf8fc;
  --bg-soft: #f4edf7;
  --bg-lilac: #eee3f4;
  --white: #ffffff;
  --ink: #2f2633;
  --muted: #756b7c;
  --plum-950: #24152c;
  --plum-900: #33203d;
  --plum-800: #452755;
  --plum-700: #60408a;
  --plum-600: #7652a0;
  --pink: #d9329d;
  --pink-soft: #ee8bc8;
  --line: rgba(73, 43, 85, .12);
  --line-strong: rgba(73, 43, 85, .22);
  --shadow-sm: 0 12px 30px rgba(75, 42, 88, .08);
  --shadow-md: 0 20px 55px rgba(75, 42, 88, .12);
  --shadow-lg: 0 30px 80px rgba(75, 42, 88, .16);
  --container: 1200px;
  --header-height: 82px;
  --ease-out: cubic-bezier(.22, .8, .2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--bg);
  font-family: "Inter", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.page-progress {
  position: fixed;
  inset: 0 0 auto 0;
  height: 3px;
  z-index: 500;
  background: rgba(255,255,255,.28);
}
.page-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--pink), var(--plum-600));
  box-shadow: 0 0 18px rgba(217,50,157,.45);
}

.site-header {
  position: fixed;
  inset: 14px 0 auto;
  z-index: 350;
  width: min(calc(100% - 42px), 1360px);
  min-height: var(--header-height);
  margin-inline: auto;
  padding: 12px 18px 12px 24px;
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  gap: 22px;
  border: 1px solid rgba(91,57,107,.11);
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(18px) saturate(140%);
  box-shadow: 0 10px 30px rgba(76,44,88,.08);
  transition: min-height .3s ease, transform .3s ease, background .3s ease, box-shadow .3s ease;
}
.site-header.scrolled {
  min-height: 68px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 14px 36px rgba(76,44,88,.12);
}
.brand {
  display: inline-flex;
  width: max-content;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}
.brand strong {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.9rem, 2.4vw, 2.45rem);
  font-weight: 500;
  color: var(--plum-700);
  letter-spacing: -.035em;
}
.brand small {
  margin-top: 1px;
  color: var(--plum-600);
  font-size: 9px;
  letter-spacing: .52em;
  text-transform: lowercase;
  transform: translateX(.22em);
}
.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  color: #453c49;
  font-size: 13px;
  font-weight: 600;
}
.site-nav a {
  position: relative;
  padding: 12px 0;
  transition: color .25s ease, transform .25s ease;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: 6px;
  height: 1px;
  background: linear-gradient(90deg, var(--pink), var(--plum-600));
  transition: left .25s ease, right .25s ease;
}
.site-nav a:hover { color: var(--plum-700); transform: translateY(-1px); }
.site-nav a:hover::after { left: 0; right: 0; }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255,255,255,.7);
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 21px;
  height: 2px;
  margin: 5px auto;
  border-radius: 99px;
  background: var(--plum-700);
  transition: transform .25s ease, opacity .2s ease;
}
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.button {
  position: relative;
  min-height: 50px;
  padding: 13px 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
  overflow: hidden;
  cursor: pointer;
  transform: translate3d(0,0,0);
  transition: transform .24s var(--ease-out), box-shadow .24s ease, border-color .24s ease, background .24s ease;
}
.button::before {
  content: "";
  position: absolute;
  inset: -2px auto -2px -35%;
  width: 28%;
  transform: skewX(-22deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.32), transparent);
  opacity: 0;
  pointer-events: none;
}
.button:hover::before { animation: buttonShine .75s ease; }
.button:hover { transform: translateY(-2px); box-shadow: 0 15px 30px rgba(86,45,105,.18); }
.button:active { transform: scale(.975); }
.button span { transition: transform .24s ease; }
.button:hover span { transform: translateX(4px); }
.button-primary {
  color: #fff;
  background: linear-gradient(135deg, #5d3b8d, #44235f 68%, #321744);
  box-shadow: 0 14px 30px rgba(78,39,105,.22);
}
.button-secondary {
  color: var(--plum-800);
  background: rgba(255,255,255,.66);
  border-color: var(--line-strong);
  backdrop-filter: blur(10px);
}
.button-block { width: 100%; }
@keyframes buttonShine {
  0% { left: -35%; opacity: 0; }
  20% { opacity: 1; }
  100% { left: 120%; opacity: 0; }
}

/* HERO */
.hero-scroll {
  position: relative;
  height: 155svh;
  background: linear-gradient(180deg, #fcfafd 0%, #f8f1fa 100%);
}
.hero-sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-height) + 48px);
  isolation: isolate;
}
.hero-sticky::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 13% 84%, rgba(235,132,198,.17), transparent 26%),
    radial-gradient(circle at 86% 17%, rgba(111,76,159,.14), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,.55), rgba(255,255,255,.04));
  z-index: -4;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(56px);
  opacity: .6;
  pointer-events: none;
  animation: orbFloat 11s ease-in-out infinite alternate;
}
.orb-a {
  width: 280px;
  height: 280px;
  left: -80px;
  bottom: 5%;
  background: rgba(238,116,194,.24);
}
.orb-b {
  width: 390px;
  height: 390px;
  right: -120px;
  top: 12%;
  background: rgba(104,69,149,.17);
  animation-duration: 15s;
}
@keyframes orbFloat {
  from { transform: translate3d(0,0,0) scale(1); }
  to { transform: translate3d(24px,-22px,0) scale(1.08); }
}
.hero-ribbon {
  position: absolute;
  width: 740px;
  height: 150px;
  border: 2px solid rgba(150,102,184,.12);
  border-radius: 50%;
  pointer-events: none;
  z-index: -2;
}
.ribbon-a {
  right: -180px;
  bottom: 2%;
  transform: rotate(-12deg);
  animation: ribbonFloat 14s ease-in-out infinite alternate;
}
.ribbon-b {
  right: -100px;
  bottom: -4%;
  transform: rotate(7deg);
  animation: ribbonFloat 17s ease-in-out infinite alternate-reverse;
}
@keyframes ribbonFloat {
  from { translate: 0 0; scale: 1; }
  to { translate: -34px -12px; scale: 1.04; }
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  align-items: center;
  gap: clamp(24px, 4vw, 64px);
  min-height: calc(100svh - var(--header-height) - 80px);
}
.hero-copy {
  position: relative;
  z-index: 5;
  max-width: 660px;
  will-change: transform, opacity;
}
.hero-kicker {
  display: inline-flex;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(109,76,150,.08);
}
.hero-kicker span {
  display: block;
  padding: 9px 14px;
  color: var(--plum-700);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
  animation: heroReveal .7s var(--ease-out) .06s both;
}
.hero-copy h1 {
  margin: 18px 0 0;
  color: #28252a;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(4.35rem, 5.45vw, 6.7rem);
  font-weight: 500;
  line-height: .88;
  letter-spacing: -.045em;
}
.hero-line {
  display: block;
  overflow: hidden;
}
.hero-line > span {
  display: block;
  animation: heroReveal .9s var(--ease-out) both;
}
.hero-line:nth-child(1) > span { animation-delay: .1s; }
.hero-line:nth-child(2) > span { animation-delay: .18s; }
.hero-line:nth-child(3) > span { animation-delay: .26s; }
.hero-copy h1 em {
  color: var(--plum-600);
  font-style: italic;
  font-weight: 500;
}
@keyframes heroReveal {
  from { transform: translateY(110%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.hero-text {
  max-width: 520px;
  margin: 26px 0 0;
  color: #5f5964;
  font-size: 16px;
  line-height: 1.72;
  animation: fadeUp .65s ease .37s both;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 27px;
  animation: fadeUp .65s ease .46s both;
}
.hero-primary { min-width: 215px; }
.price-pill,
.access-pill {
  padding: 10px 15px;
  border: 1px solid rgba(91,57,107,.15);
  border-radius: 999px;
  color: var(--plum-600);
  background: rgba(255,255,255,.54);
  font-size: 12px;
  font-weight: 700;
  backdrop-filter: blur(8px);
}
.hero-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 34px;
  animation: fadeUp .65s ease .54s both;
}
.hero-benefits article {
  display: grid;
  grid-template-columns: 46px 1fr;
  align-items: center;
  gap: 12px;
}
.benefit-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(113,76,155,.08);
  color: var(--plum-600);
  font-size: 11px;
  font-weight: 800;
  transition: transform .3s ease, background .3s ease;
}
.hero-benefits article:hover .benefit-icon {
  transform: rotate(7deg) scale(1.08);
  background: rgba(113,76,155,.14);
}
.hero-benefits strong,
.hero-benefits small { display: block; }
.hero-benefits strong { margin-bottom: 4px; color: #48404e; font-size: 13px; }
.hero-benefits small { color: var(--muted); font-size: 11px; line-height: 1.45; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-visual {
  position: relative;
  z-index: 3;
  align-self: end;
  height: min(76svh, 760px);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  transform-origin: center bottom;
  will-change: transform, opacity;
  animation: visualIn 1s var(--ease-out) .12s both;
  perspective: 1200px;
}
.hero-visual picture {
  position: relative;
  width: min(100%, 850px);
  height: 100%;
  display: block;
  filter: drop-shadow(0 26px 38px rgba(80,42,90,.12));
  will-change: transform;
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  mask-image: linear-gradient(90deg, transparent 0, rgba(0,0,0,.72) 4%, #000 13%, #000 100%);
  border-radius: 48% 12% 0 0 / 24% 12% 0 0;
  transform-origin: center bottom;
  will-change: transform;
}
.hero-visual-glow {
  position: absolute;
  right: 4%;
  bottom: 5%;
  width: 64%;
  height: 35%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(220,96,178,.25), transparent 68%);
  filter: blur(26px);
  z-index: -1;
}
.hero-visual-shine {
  position: absolute;
  inset: 8% -15% 8% auto;
  width: 28%;
  transform: rotate(13deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.28), transparent);
  filter: blur(7px);
  animation: heroShine 8s ease-in-out infinite;
  pointer-events: none;
}
@keyframes visualIn {
  from { opacity: 0; transform: translate3d(34px, 18px, 0) scale(.97); }
  to { opacity: 1; transform: translate3d(0,0,0) scale(1); }
}
@keyframes heroShine {
  0%, 22% { right: -32%; opacity: 0; }
  34% { opacity: .8; }
  56% { right: 105%; opacity: .15; }
  100% { right: 105%; opacity: 0; }
}
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--plum-600);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
  transform: translateX(-50%);
}
.scroll-cue i {
  width: 38px;
  height: 1px;
  background: linear-gradient(90deg, var(--pink), transparent);
  animation: cuePulse 1.8s ease-in-out infinite;
}
@keyframes cuePulse {
  0%,100% { transform: scaleX(.65); opacity: .45; }
  50% { transform: scaleX(1); opacity: 1; }
}

/* SHARED SECTIONS */
.section {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
}
.section-orb {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
}
.section-orb-a { left: -150px; top: 10%; background: rgba(193,115,178,.12); }
.section-orb-b { right: -150px; bottom: 2%; background: rgba(111,76,159,.11); }
.eyebrow {
  display: inline-flex;
  margin-bottom: 17px;
  padding: 8px 13px;
  border-radius: 999px;
  color: var(--plum-700);
  background: rgba(109,76,150,.08);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.eyebrow-dark {
  color: #eadcf1;
  background: rgba(255,255,255,.08);
}
.section h2 {
  margin: 0;
  color: var(--plum-950);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 5vw, 5.4rem);
  font-weight: 600;
  line-height: .95;
  letter-spacing: -.035em;
}
.section p { color: var(--muted); line-height: 1.75; }

.trust-strip {
  position: relative;
  z-index: 5;
  padding: 26px 0 38px;
  background: linear-gradient(180deg, #f8f1fa 0%, #fff 100%);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.trust-grid article {
  padding: 23px 24px;
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 15px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,255,255,.75);
  box-shadow: var(--shadow-sm);
}
.trust-grid article > span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--plum-700);
  background: rgba(109,76,150,.08);
  font-weight: 800;
  font-size: 12px;
}
.trust-grid strong,
.trust-grid small { display: block; }
.trust-grid strong { margin-bottom: 5px; color: var(--plum-900); }
.trust-grid small { color: var(--muted); font-size: 12px; }

.experience-section {
  color: #fff;
  background: linear-gradient(145deg, #492454 0%, #32163c 58%, #27102f 100%);
}
.experience-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, transparent 0 62%, rgba(255,255,255,.035) 62% 63%, transparent 63%);
  pointer-events: none;
}
.experience-grid,
.content-grid,
.about-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(42px, 7vw, 90px);
}
.cinema-frame {
  position: relative;
  padding: 11px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 30px;
  background: rgba(255,255,255,.07);
  box-shadow: 0 32px 80px rgba(0,0,0,.28);
  overflow: hidden;
}
.cinema-frame video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 22px;
  filter: brightness(1.04) contrast(1.04) saturate(1.03);
}
.video-label {
  position: absolute;
  left: 28px;
  bottom: 28px;
  padding: 10px 13px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  color: #fff;
  background: rgba(43,20,51,.72);
  backdrop-filter: blur(12px);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
}
.video-label span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ef7cca;
  box-shadow: 0 0 0 0 rgba(239,124,202,.55);
  animation: recordingPulse 2s ease infinite;
}
@keyframes recordingPulse {
  0% { box-shadow: 0 0 0 0 rgba(239,124,202,.55); }
  75% { box-shadow: 0 0 0 12px rgba(239,124,202,0); }
  100% { box-shadow: 0 0 0 0 rgba(239,124,202,0); }
}
.experience-section h2 { color: #fff; }
.experience-section p { color: rgba(255,255,255,.72); }
.step-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}
.step-card {
  padding: 19px 20px;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 21px;
  background: rgba(255,255,255,.055);
  backdrop-filter: blur(12px);
}
.step-card small {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #f1b6d9;
  background: rgba(255,255,255,.07);
  font-weight: 800;
}
.step-card h3 { margin: 0 0 6px; color: #fff; }
.step-card p { margin: 0; font-size: 13px; line-height: 1.6; }

.content-section {
  background: linear-gradient(180deg, #fff 0%, #fbf8fc 100%);
}
.content-media {
  position: relative;
  min-height: 610px;
  display: grid;
  place-items: center;
}
.phone-frame {
  position: relative;
  width: min(330px, 72%);
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 36px;
  background: rgba(255,255,255,.9);
  box-shadow: var(--shadow-lg);
  z-index: 2;
  overflow: hidden;
}
.phone-frame video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: 27px;
}
.phone-reflection,
.media-shine {
  position: absolute;
  inset: -30% auto -30% -50%;
  width: 34%;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.32), transparent);
  filter: blur(5px);
  opacity: 0;
  pointer-events: none;
}
.motion-card:hover .phone-reflection,
.motion-card:hover .media-shine { animation: mediaShine .9s ease; }
@keyframes mediaShine {
  0% { left: -50%; opacity: 0; }
  25% { opacity: .9; }
  100% { left: 125%; opacity: 0; }
}
.media-orbit {
  position: absolute;
  border: 1px solid rgba(113,76,155,.16);
  border-radius: 50%;
  animation: orbitRotate 18s linear infinite;
}
.orbit-a { width: 450px; height: 450px; }
.orbit-b { width: 530px; height: 260px; transform: rotate(24deg); animation-direction: reverse; animation-duration: 23s; }
@keyframes orbitRotate { to { rotate: 360deg; } }
.content-copy h2,
.about-copy h2 { margin-bottom: 20px; }
.content-copy > p,
.about-copy > p { margin: 0; max-width: 600px; }
.bullet-stack {
  display: grid;
  gap: 13px;
  margin-top: 28px;
}
.bullet-card {
  padding: 17px 18px;
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 15px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255,255,255,.76);
  box-shadow: 0 12px 28px rgba(76,44,88,.055);
}
.bullet-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--plum-700);
  background: rgba(109,76,150,.08);
  font-size: 11px;
  font-weight: 800;
}
.bullet-card strong,
.bullet-card small { display: block; }
.bullet-card strong { margin-bottom: 5px; color: var(--plum-900); }
.bullet-card small { color: var(--muted); line-height: 1.5; }

.about-section {
  background: linear-gradient(180deg, #f6eef8 0%, #fbf8fc 100%);
}
.about-photo {
  position: relative;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255,255,255,.7);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.about-photo img {
  width: 100%;
  border-radius: 22px;
  object-fit: cover;
}
.about-photo-detail {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 74px;
  height: 74px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 50%;
  backdrop-filter: blur(12px);
  background: rgba(255,255,255,.16);
}
.about-copy blockquote {
  margin: 27px 0 0;
  padding: 22px 24px;
  border: 1px solid rgba(109,76,150,.1);
  border-radius: 22px;
  color: var(--plum-800);
  background: rgba(109,76,150,.06);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.55rem;
  line-height: 1.28;
}

.pricing-section {
  background: linear-gradient(180deg, #f5edf8 0%, #fbf8fc 100%);
}
.pricing-light {
  position: absolute;
  left: 50%;
  top: 20%;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(222,106,181,.15), transparent 67%);
  transform: translateX(-50%);
  filter: blur(24px);
}
.pricing-head {
  position: relative;
  z-index: 2;
  max-width: 760px;
  text-align: center;
}
.pricing-head .eyebrow { margin-inline: auto; }
.pricing-head p { margin: 15px 0 0; }
.pricing-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 390px));
  justify-content: center;
  gap: 24px;
  margin-top: 42px;
}
.price-card {
  position: relative;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255,255,255,.78);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(12px);
}
.price-card.featured {
  transform: translateY(-10px);
  background: linear-gradient(180deg, rgba(255,255,255,.97), rgba(248,238,250,.96));
  border-color: rgba(109,76,150,.2);
}
.price-tag {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--plum-700);
  background: rgba(109,76,150,.08);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.featured-tag { color: #b12380; background: rgba(217,50,157,.09); }
.price-card h3 { margin: 22px 0 12px; color: var(--plum-900); font-size: 1.35rem; }
.price-line {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  color: var(--plum-800);
}
.price-line span { margin-top: 10px; font-weight: 700; }
.price-line strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 4.6rem;
  font-weight: 600;
  line-height: .9;
}
.price-card ul {
  list-style: none;
  padding: 0;
  margin: 25px 0 28px;
  display: grid;
  gap: 12px;
}
.price-card li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
}
.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--plum-600));
}
.guarantee {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin-top: 26px;
  padding: 21px 24px;
  display: grid;
  gap: 7px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,.68);
}
.guarantee strong { color: var(--plum-900); }
.guarantee span { color: var(--muted); font-size: 13px; }

.faq-section { background: #fff; }
.faq-wrap {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: clamp(34px, 7vw, 88px);
  align-items: start;
}
.faq-list { display: grid; gap: 13px; }
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(251,248,252,.8);
  overflow: hidden;
  transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.faq-list details:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-sm);
}
.faq-list summary {
  position: relative;
  padding: 20px 54px 20px 21px;
  cursor: pointer;
  list-style: none;
  color: var(--plum-900);
  font-weight: 750;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 21px;
  top: 50%;
  color: var(--plum-600);
  font-size: 1.45rem;
  transform: translateY(-50%);
  transition: transform .25s ease;
}
.faq-list details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-list p { margin: 0; padding: 0 21px 21px; }

/* MOTION SYSTEM */
.reveal,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity .72s ease, transform .82s var(--ease-out), filter .72s ease;
}
.reveal { transform: translateY(28px); }
.reveal-left { transform: translateX(-34px); }
.reveal-right { transform: translateX(34px); }
.reveal.in-view,
.reveal-left.in-view,
.reveal-right.in-view {
  opacity: 1;
  transform: translate3d(0,0,0);
  filter: blur(0);
}
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
.motion-card {
  --rx: 0deg;
  --ry: 0deg;
  --lift: 0px;
  transform: perspective(900px) rotateX(var(--rx)) rotateY(var(--ry)) translateY(var(--lift));
  transform-style: preserve-3d;
  transition: transform .26s var(--ease-out), box-shadow .26s ease, border-color .26s ease, background .26s ease;
  will-change: transform;
}
.motion-card:hover {
  --lift: -5px;
  box-shadow: 0 22px 50px rgba(74,42,87,.14);
}
.parallax-media { will-change: transform; }

.mobile-cta {
  display: none;
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 360;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #68459a, #3c1d53);
  box-shadow: 0 18px 36px rgba(64,31,81,.24);
  font-weight: 800;
  transform: translateY(90px);
  opacity: 0;
  transition: transform .35s var(--ease-out), opacity .35s ease;
}
.mobile-cta.visible { transform: translateY(0); opacity: 1; }

@media (max-width: 1080px) {
  .site-header { grid-template-columns: 190px 1fr auto; }
  .site-nav { gap: 18px; }
  .hero-grid { grid-template-columns: 1fr 1fr; }
  .hero-copy h1 { font-size: clamp(3.8rem, 6vw, 5.3rem); }
  .hero-benefits { gap: 10px; }
  .hero-benefits article { grid-template-columns: 38px 1fr; gap: 9px; }
  .benefit-icon { width: 38px; height: 38px; }
}

@media (max-width: 820px) {
  :root { --header-height: 70px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .site-header {
    inset: 10px 12px auto;
    width: auto;
    min-height: var(--header-height);
    padding: 8px 10px 8px 18px;
    grid-template-columns: 1fr auto;
    border-radius: 27px;
  }
  .site-header.scrolled { min-height: 62px; }
  .brand { align-items: flex-start; }
  .brand strong { font-size: 2rem; }
  .brand small { margin-left: 42px; }
  .header-cta { display: none; }
  .menu-toggle { display: block; }
  .site-nav {
    position: absolute;
    top: calc(100% + 9px);
    left: 0;
    right: 0;
    display: grid;
    gap: 2px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255,255,255,.94);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow-md);
    opacity: 0;
    transform: translateY(-8px) scale(.98);
    pointer-events: none;
    transition: opacity .25s ease, transform .25s ease;
  }
  .site-nav.open { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
  .site-nav a { padding: 12px 14px; border-radius: 14px; }
  .site-nav a:hover { background: rgba(109,76,150,.06); transform: none; }
  .site-nav a::after { display: none; }

  .hero-scroll { height: 130svh; }
  .hero-sticky {
    padding-top: calc(var(--header-height) + 24px);
    align-items: flex-start;
  }
  .hero-grid {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0;
    min-height: calc(100svh - var(--header-height) - 24px);
    padding-top: 6px;
  }
  .hero-copy {
    width: 100%;
    max-width: none;
    text-align: center;
  }
  .hero-kicker { margin-inline: auto; }
  .hero-kicker span { padding: 8px 12px; font-size: 10px; }
  .hero-copy h1 {
    margin-top: 12px;
    font-size: clamp(2.75rem, 12.5vw, 4.1rem);
    line-height: .9;
  }
  .hero-line:nth-child(2) > span,
  .hero-line:nth-child(3) > span { color: var(--plum-600); }
  .hero-copy h1 em { color: var(--plum-600); }
  .hero-text {
    max-width: 520px;
    margin: 14px auto 0;
    font-size: 14px;
    line-height: 1.55;
  }
  .hero-actions {
    justify-content: center;
    gap: 9px;
    margin-top: 16px;
  }
  .hero-primary { width: min(100%, 360px); min-width: 0; }
  .hero-secondary { display: none; }
  .price-pill,
  .access-pill { display: none; }
  .hero-benefits {
    width: 100%;
    grid-template-columns: repeat(3, 1fr);
    gap: 7px;
    margin-top: 15px;
  }
  .hero-benefits article {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 5px;
    text-align: center;
  }
  .benefit-icon { width: 33px; height: 33px; font-size: 9px; }
  .hero-benefits strong { font-size: 10px; }
  .hero-benefits small { display: none; }
  .hero-visual {
    position: relative;
    width: calc(100% + 28px);
    height: min(45svh, 430px);
    min-height: 270px;
    margin: 8px -14px 0;
    align-self: center;
    overflow: hidden;
  }
  .hero-visual picture { width: 100%; height: 100%; }
  .hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    mask-image: linear-gradient(180deg, transparent 0%, rgba(0,0,0,.82) 6%, #000 14%, #000 100%);
    border-radius: 0;
  }
  .hero-visual-glow { width: 88%; height: 36%; right: 6%; bottom: 2%; }
  .scroll-cue { display: none; }
  .hero-ribbon { width: 480px; height: 100px; opacity: .55; }
  .orb-a { width: 190px; height: 190px; }
  .orb-b { width: 240px; height: 240px; }

  .trust-strip { padding: 24px 0 32px; }
  .trust-grid { grid-template-columns: 1fr; gap: 12px; }
  .trust-grid article { padding: 18px; border-radius: 20px; }

  .section { padding: 78px 0; }
  .experience-grid,
  .content-grid,
  .about-grid,
  .faq-wrap { grid-template-columns: 1fr; gap: 38px; }
  .section h2 { font-size: clamp(2.85rem, 12vw, 4.2rem); }
  .experience-media,
  .content-media,
  .about-photo { order: 1; }
  .experience-copy,
  .content-copy,
  .about-copy { order: 2; }
  .content-media { min-height: 520px; }
  .phone-frame { width: min(310px, 76%); }
  .orbit-a { width: 390px; height: 390px; }
  .orbit-b { width: 430px; height: 220px; }
  .price-card.featured { transform: none; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 520px; }
  .faq-wrap { gap: 28px; }
  .mobile-cta { display: flex; }
  body { padding-bottom: 84px; }
}

@media (max-width: 480px) {
  .container { width: min(calc(100% - 22px), var(--container)); }
  .site-header { inset-inline: 9px; }
  .brand strong { font-size: 1.9rem; }
  .hero-scroll { height: 126svh; }
  .hero-sticky { padding-top: calc(var(--header-height) + 19px); }
  .hero-copy h1 { font-size: clamp(2.55rem, 12vw, 3.5rem); }
  .hero-text {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-width: 330px;
  }
  .hero-primary { min-height: 52px; }
  .hero-visual {
    width: calc(100% + 22px);
    margin-inline: -11px;
    height: min(43svh, 400px);
  }
  .hero-benefits { margin-top: 12px; }
  .hero-benefits strong { font-size: 9px; }
  .section { padding: 70px 0; }
  .section h2 { font-size: 2.85rem; }
  .cinema-frame { border-radius: 24px; }
  .cinema-frame video { border-radius: 18px; }
  .video-label { left: 20px; bottom: 20px; }
  .step-card,
  .bullet-card,
  .trust-grid article,
  .faq-list details { border-radius: 18px; }
  .content-media { min-height: 460px; }
  .orbit-a { width: 330px; height: 330px; }
  .orbit-b { width: 350px; height: 190px; }
  .about-copy blockquote { font-size: 1.35rem; }
  .price-card { padding: 24px; border-radius: 25px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .hero-scroll { height: auto; }
  .hero-sticky { position: relative; min-height: 100svh; }
  .reveal,
  .reveal-left,
  .reveal-right { opacity: 1; transform: none; }
}
.touch-active { transform: scale(.985) !important; }


/* HERO V2 — composição aprovada, sem zoom e sem cortes */
.site-header {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-18px);
  transition: opacity .28s ease, transform .28s ease, min-height .3s ease, background .3s ease, box-shadow .3s ease;
}
.site-header.after-hero {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.hero-poster {
  position: relative;
  width: 100%;
  overflow: clip;
  background: #fbf8fc;
}
.hero-poster-picture,
.hero-poster-picture img {
  display: block;
  width: 100%;
}
.hero-poster-picture img {
  height: auto;
  object-fit: contain;
  object-position: center top;
  transform: none !important;
  filter: none;
  image-rendering: auto;
  backface-visibility: hidden;
}
.hero-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 30%, rgba(118,82,158,.055) 48%, transparent 66%);
  transform: translateX(-130%);
  animation: posterSheen 10s ease-in-out 1.4s infinite;
  opacity: .24;
}
@keyframes posterSheen {
  0%, 72% { transform: translateX(-130%); opacity: 0; }
  78% { opacity: .4; }
  92% { transform: translateX(130%); opacity: .08; }
  100% { transform: translateX(130%); opacity: 0; }
}
.hero-hotspot {
  position: absolute;
  z-index: 5;
  display: block;
  border-radius: 999px;
  background: transparent;
}
.hero-hotspot:focus-visible {
  outline: 3px solid rgba(96,64,138,.55);
  outline-offset: 3px;
}
.hero-hotspot-main {
  left: 10.3%;
  top: 64.8%;
  width: 15.2%;
  height: 8.2%;
}
.hero-hotspot-header-cta {
  left: 80.2%;
  top: 2.4%;
  width: 13.4%;
  height: 7.8%;
}
.hero-hotspot-metodo { left: 43.5%; top: 2.6%; width: 6.8%; height: 6.5%; }
.hero-hotspot-sobre { left: 51.8%; top: 2.6%; width: 7%; height: 6.5%; }
.hero-hotspot-depoimentos { left: 60.2%; top: 2.6%; width: 8%; height: 6.5%; }
.hero-hotspot-aulas { left: 69.5%; top: 2.6%; width: 8%; height: 6.5%; }

@media (max-width: 820px) {
  .hero-poster-picture img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
  .hero-hotspot-main {
    left: 20.2%;
    top: 86.1%;
    width: 57.7%;
    height: 7.2%;
  }
  .hero-hotspot-header-cta,
  .hero-hotspot-metodo,
  .hero-hotspot-sobre,
  .hero-hotspot-depoimentos,
  .hero-hotspot-aulas { display: none; }
  .hero-poster::after { animation-duration: 12s; opacity: .18; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-poster::after { display: none; }
}

.page-progress {
  opacity: 0;
  transition: opacity .25s ease;
}
.page-progress.after-hero { opacity: 1; }

/* HERO V4 — motion clean, sem zoom */
.hero-poster {
  --hero-pointer-x: 72%;
  --hero-pointer-y: 28%;
  isolation: isolate;
}

/* Luz ambiente suave: apenas o acabamento reage, a imagem nunca aumenta. */
.hero-poster::before {
  content: "";
  position: absolute;
  inset: -8%;
  z-index: 2;
  pointer-events: none;
  opacity: .2;
  background:
    radial-gradient(circle at var(--hero-pointer-x) var(--hero-pointer-y), rgba(142, 93, 177, .18), transparent 18%),
    radial-gradient(circle at 10% 82%, rgba(230, 102, 184, .12), transparent 23%),
    linear-gradient(115deg, transparent 34%, rgba(255,255,255,.16) 49%, transparent 65%);
  background-size: 100% 100%, 100% 100%, 145% 100%;
  background-position: center, center, -120% center;
  mix-blend-mode: soft-light;
  animation: heroAmbientLight 9s ease-in-out infinite alternate;
  transition: opacity .35s ease, background-position .25s ease;
}

.hero-poster-picture {
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translate3d(0, 12px, 0);
  filter: blur(3px);
  transition:
    opacity .72s cubic-bezier(.2,.75,.25,1),
    transform .72s cubic-bezier(.2,.75,.25,1),
    filter .72s cubic-bezier(.2,.75,.25,1);
}

.hero-poster.hero-ready .hero-poster-picture {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}

.hero-poster-picture img {
  transform: none !important;
  animation: none !important;
  will-change: auto;
}

/* Pulso delicado sobre os CTAs que já fazem parte da arte. */
.hero-hotspot-main,
.hero-hotspot-header-cta {
  transition: box-shadow .28s ease, background-color .28s ease, outline-color .28s ease;
}

.hero-hotspot-main:hover,
.hero-hotspot-header-cta:hover {
  background: rgba(255,255,255,.025);
  box-shadow:
    0 0 0 1px rgba(255,255,255,.24) inset,
    0 10px 28px rgba(93,57,139,.13);
}

.hero-poster.hero-ready .hero-hotspot-main {
  animation: heroCtaPulse 4.8s ease-in-out 1.35s infinite;
}

@keyframes heroAmbientLight {
  0% {
    opacity: .13;
    background-position: center, center, -120% center;
  }
  58% {
    opacity: .23;
  }
  100% {
    opacity: .17;
    background-position: center, center, 125% center;
  }
}

@keyframes heroCtaPulse {
  0%, 68%, 100% {
    box-shadow: 0 0 0 0 rgba(101,64,145,0);
  }
  76% {
    box-shadow: 0 0 0 7px rgba(101,64,145,.055);
  }
  84% {
    box-shadow: 0 0 0 13px rgba(101,64,145,0);
  }
}

@media (max-width: 820px) {
  .hero-poster::before {
    inset: -3%;
    opacity: .14;
    background:
      radial-gradient(circle at 72% 73%, rgba(219, 91, 178, .13), transparent 19%),
      radial-gradient(circle at 16% 31%, rgba(125, 82, 164, .11), transparent 24%),
      linear-gradient(115deg, transparent 38%, rgba(255,255,255,.13) 50%, transparent 62%);
    background-size: 100% 100%, 100% 100%, 165% 100%;
    animation-duration: 11s;
  }

  .hero-poster-picture {
    transform: translate3d(0, 9px, 0);
    filter: blur(2px);
    transition-duration: .62s;
  }

  .hero-poster.hero-ready .hero-hotspot-main {
    animation-duration: 5.6s;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-poster::before,
  .hero-poster.hero-ready .hero-hotspot-main {
    animation: none !important;
  }

  .hero-poster-picture {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
}

/* PERFORMANCE SMOOTH V5 — fluidez acima de efeitos contínuos */
.page-progress span {
  width: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

/* Blur em elemento fixo costuma gerar repintura durante o scroll. */
.site-header,
.site-header.scrolled {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  background: rgba(255, 255, 255, .965);
}

/* Nenhuma decoração fica redesenhando a tela continuamente. */
.hero-poster::before,
.hero-poster::after,
.hero-orb,
.hero-ribbon,
.section-orb,
.media-orbit,
.hero-visual-shine,
.scroll-cue i,
.video-label span {
  animation: none !important;
}

.hero-poster::before {
  opacity: .08;
  background: radial-gradient(circle at 74% 28%, rgba(142, 93, 177, .13), transparent 22%);
  mix-blend-mode: normal;
}
.hero-poster::after { display: none; }

/* A hero apenas aparece suavemente; nada se move depois. */
.hero-poster-picture {
  opacity: 0;
  transform: translate3d(0, 6px, 0);
  filter: none !important;
  transition: opacity .45s ease-out, transform .45s ease-out;
}
.hero-poster.hero-ready .hero-poster-picture {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.hero-poster.hero-ready .hero-hotspot-main,
.hero-poster.hero-ready .hero-hotspot-header-cta {
  animation: none !important;
}

/* Reveals curtos e baratos: sem blur e sem transições longas. */
.reveal,
.reveal-left,
.reveal-right {
  filter: none !important;
  transition: opacity .42s ease-out, transform .48s cubic-bezier(.22,.7,.25,1) !important;
}
.reveal { transform: translate3d(0, 14px, 0); }
.reveal-left { transform: translate3d(-14px, 0, 0); }
.reveal-right { transform: translate3d(14px, 0, 0); }
.reveal.in-view,
.reveal-left.in-view,
.reveal-right.in-view {
  opacity: 1;
  transform: translate3d(0,0,0);
}

/* Cards continuam elegantes, mas sem tilt 3D ou brilho animado. */
.motion-card {
  transform: none !important;
  will-change: auto !important;
}
.motion-card:hover {
  transform: translateY(-2px) !important;
}
.motion-card:hover .media-shine { animation: none !important; }

/* Evita renderizar o restante da página antes da hora. */
main > section:not(.hero-poster):not(.trust-strip) {
  content-visibility: auto;
  contain-intrinsic-size: auto 760px;
}

@media (max-width: 820px) {
  .site-header,
  .site-header.scrolled,
  .site-nav {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
  .motion-card:hover { transform: none !important; }
  .reveal,
  .reveal-left,
  .reveal-right {
    transition-duration: .36s !important;
    transform: translate3d(0, 10px, 0);
  }
  .hero-poster-picture {
    transform: translate3d(0, 4px, 0);
    transition-duration: .38s;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-progress span { will-change: auto; }
}

/* =========================================================
   HERO EM CAMADAS — arte real separada do texto e do fundo
   Sem imagem chapada, sem zoom e com motion leve.
   ========================================================= */
.site-header,
.site-header.after-hero {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.hero-layered {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  padding: calc(var(--header-height) + 78px) 0 72px;
  display: flex;
  align-items: center;
  isolation: isolate;
  background:
    radial-gradient(circle at 11% 76%, rgba(230, 106, 185, .13), transparent 27%),
    radial-gradient(circle at 89% 17%, rgba(124, 82, 164, .14), transparent 29%),
    linear-gradient(115deg, #fffdfd 0%, #fbf7fc 43%, #f5ecfa 100%);
}

.hero-ambient {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
}

.ambient-glow {
  position: absolute;
  border-radius: 50%;
  opacity: .55;
  filter: blur(1px);
  transform: translate3d(0,0,0);
}
.ambient-glow-a {
  width: 34vw;
  height: 34vw;
  left: -17vw;
  bottom: -18vw;
  background: radial-gradient(circle, rgba(225, 91, 178, .2), transparent 68%);
}
.ambient-glow-b {
  width: 30vw;
  height: 30vw;
  right: -10vw;
  top: -10vw;
  background: radial-gradient(circle, rgba(117, 74, 158, .16), transparent 70%);
}

.hero-ribbons-svg {
  position: absolute;
  inset: auto -3% -5% -3%;
  width: 106%;
  height: 72%;
  overflow: visible;
  opacity: .8;
  transform: translate3d(0,0,0);
  animation: ribbonDrift 13s ease-in-out infinite alternate;
}
.ribbon-line {
  fill: none;
  vector-effect: non-scaling-stroke;
  stroke-linecap: round;
}
.ribbon-line-a { stroke: url(#ribbonGradientA); stroke-width: 2; }
.ribbon-line-b { stroke: url(#ribbonGradientB); stroke-width: 1.4; opacity: .78; }
.ribbon-line-c { stroke: rgba(139, 92, 176, .18); stroke-width: 1.1; }

.hero-layered-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(480px, 1.08fr);
  align-items: center;
  gap: clamp(24px, 4vw, 70px);
  width: min(calc(100% - 64px), 1320px);
}

.hero-layered-copy {
  max-width: 650px;
  padding-left: clamp(0px, 2vw, 20px);
}

.hero-kicker {
  display: inline-flex;
  padding: 8px 13px;
  margin-bottom: 24px;
  border-radius: 999px;
  background: rgba(113, 72, 151, .075);
  color: var(--plum-700);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero-layered h1 {
  margin: 0;
  color: #2c2030;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.65rem, 5.1vw, 6.2rem);
  font-weight: 500;
  line-height: .86;
  letter-spacing: -.045em;
  text-wrap: balance;
}
.hero-layered h1 span { display: block; }
.hero-layered h1 em {
  color: var(--plum-700);
  font-weight: 600;
}

.hero-summary {
  max-width: 580px;
  margin: 30px 0 0;
  color: #615768;
  font-size: clamp(1rem, 1.15vw, 1.12rem);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}
.hero-main-cta { min-width: 204px; }

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 13px;
}
.hero-chips span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 14px;
  border: 1px solid rgba(96, 64, 138, .18);
  border-radius: 999px;
  background: rgba(255,255,255,.5);
  color: var(--plum-700);
  font-size: 12px;
  font-weight: 700;
}

.hero-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}
.hero-proof-grid article {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.proof-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(112, 76, 151, .075);
  color: var(--plum-700);
}
.proof-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hero-proof-grid strong,
.hero-proof-grid small { display: block; }
.hero-proof-grid strong {
  color: #352a39;
  font-size: 13px;
  line-height: 1.2;
}
.hero-proof-grid small {
  margin-top: 4px;
  color: #7d7283;
  font-size: 11px;
  line-height: 1.38;
}

.hero-layered-visual {
  position: relative;
  min-height: min(69vw, 720px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.hero-portrait-stage {
  position: relative;
  z-index: 2;
  width: min(100%, 690px);
  transform: translate3d(0,0,0);
}
.hero-trio-layer {
  position: relative;
  z-index: 3;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 28px 30px rgba(74, 37, 87, .13));
  transform: translate3d(0,0,0);
  animation: trioFloat 8.5s ease-in-out 1.2s infinite alternate;
  backface-visibility: hidden;
}
.hero-floor-glow {
  position: absolute;
  z-index: 1;
  left: 17%;
  right: 7%;
  bottom: 3%;
  height: 12%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(213, 86, 174, .23), rgba(111, 72, 153, .08) 48%, transparent 72%);
  filter: blur(10px);
  opacity: .7;
}
.hero-light-sweep {
  position: absolute;
  z-index: 4;
  inset: 2% -8% 3% auto;
  width: 24%;
  transform: skewX(-16deg) translateX(220%);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.28), transparent);
  opacity: 0;
  pointer-events: none;
  animation: trioSheen 8.8s ease-in-out 2.2s infinite;
}
.hero-portrait-halo {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.halo-a {
  width: 67%;
  height: 67%;
  right: 0;
  bottom: 3%;
  background: radial-gradient(circle, rgba(213, 89, 180, .13), transparent 68%);
}
.halo-b {
  width: 50%;
  height: 50%;
  left: 7%;
  top: 16%;
  border: 1px solid rgba(117, 76, 158, .12);
  box-shadow: inset 0 0 0 14px rgba(255,255,255,.08);
}
.hero-visual-note {
  position: absolute;
  z-index: 5;
  right: 1%;
  bottom: 4%;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(104,67,145,.12);
  color: var(--plum-700);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: var(--shadow-sm);
}

.hero-scroll-cue {
  position: absolute;
  left: max(32px, calc((100vw - 1320px)/2 + 32px));
  bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--plum-700);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.hero-scroll-cue i {
  position: relative;
  width: 52px;
  height: 1px;
  overflow: hidden;
  background: rgba(96,64,138,.2);
}
.hero-scroll-cue i::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, var(--pink), transparent);
  transform: translateX(-110%);
  animation: cueLine 3.2s ease-in-out infinite;
}

.hero-intro-item,
.hero-layered-visual {
  opacity: 0;
  transform: translate3d(0, 16px, 0);
  transition:
    opacity .62s var(--ease-out),
    transform .72s var(--ease-out);
}
body.hero-loaded .hero-intro-item,
body.hero-loaded .hero-layered-visual {
  opacity: 1;
  transform: translate3d(0,0,0);
}
body.hero-loaded .hero-kicker { transition-delay: .08s; }
body.hero-loaded .hero-layered h1 { transition-delay: .15s; }
body.hero-loaded .hero-summary { transition-delay: .23s; }
body.hero-loaded .hero-actions { transition-delay: .3s; }
body.hero-loaded .hero-chips { transition-delay: .36s; }
body.hero-loaded .hero-proof-grid { transition-delay: .42s; }
body.hero-loaded .hero-layered-visual { transition-delay: .17s; }

@keyframes trioFloat {
  0% { transform: translate3d(0,0,0) rotate(.01deg); }
  100% { transform: translate3d(3px,-5px,0) rotate(.16deg); }
}
@keyframes trioSheen {
  0%, 68% { transform: skewX(-16deg) translateX(220%); opacity: 0; }
  76% { opacity: .48; }
  91% { transform: skewX(-16deg) translateX(-490%); opacity: .04; }
  100% { opacity: 0; }
}
@keyframes ribbonDrift {
  from { transform: translate3d(-5px,2px,0); }
  to { transform: translate3d(7px,-3px,0); }
}
@keyframes cueLine {
  0%, 20% { transform: translateX(-110%); }
  70%, 100% { transform: translateX(110%); }
}

/* Hero não participa do content-visibility das seções inferiores. */
main > section.hero-layered { content-visibility: visible; contain-intrinsic-size: auto; }

@media (max-width: 1080px) {
  .hero-layered {
    padding-top: calc(var(--header-height) + 58px);
  }
  .hero-layered-grid {
    grid-template-columns: minmax(0, .94fr) minmax(420px, 1.06fr);
    width: min(calc(100% - 42px), 1160px);
  }
  .hero-layered h1 {
    font-size: clamp(3.15rem, 5.3vw, 5.1rem);
  }
  .hero-proof-grid { gap: 10px; }
  .hero-proof-grid article { grid-template-columns: 38px 1fr; }
  .proof-icon { width: 38px; height: 38px; }
}

@media (max-width: 820px) {
  :root { --header-height: 66px; }

  .site-header,
  .site-header.scrolled {
    inset: 10px 12px auto;
    width: auto;
    min-height: 62px;
    padding: 8px 10px 8px 16px;
    grid-template-columns: 1fr auto;
    border-radius: 24px;
  }
  .brand { align-items: flex-start; }
  .brand strong { font-size: 1.78rem; }
  .brand small { font-size: 7px; margin-left: 28px; }
  .header-cta { display: none; }
  .menu-toggle { display: block; }

  .hero-layered {
    min-height: auto;
    padding: 98px 0 42px;
    align-items: flex-start;
  }
  .hero-layered-grid {
    width: min(calc(100% - 28px), 560px);
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .hero-layered-copy {
    max-width: none;
    padding: 0 6px;
    text-align: center;
  }
  .hero-kicker {
    margin-bottom: 14px;
    font-size: 10px;
    padding: 7px 11px;
  }
  .hero-layered h1 {
    font-size: clamp(2.75rem, 12vw, 4.2rem);
    line-height: .91;
    letter-spacing: -.04em;
  }
  .hero-summary {
    max-width: 440px;
    margin: 18px auto 0;
    font-size: .94rem;
    line-height: 1.58;
  }
  .hero-actions {
    justify-content: center;
    margin-top: 20px;
  }
  .hero-actions .button { min-height: 48px; }
  .hero-actions .button-secondary { display: none; }
  .hero-main-cta { width: min(100%, 320px); }
  .hero-chips { justify-content: center; margin-top: 10px; }
  .hero-chips span { min-height: 31px; padding: 7px 11px; font-size: 11px; }

  .hero-layered-visual {
    order: 2;
    min-height: 0;
    margin-top: 0;
  }
  .hero-portrait-stage {
    width: min(94vw, 460px);
    margin-inline: auto;
  }
  .hero-trio-layer {
    filter: drop-shadow(0 18px 20px rgba(74, 37, 87, .12));
    animation-duration: 9.5s;
  }
  .hero-floor-glow { bottom: 1%; }
  .hero-visual-note { display: none; }
  .hero-light-sweep { animation-duration: 10s; }
  .halo-b { display: none; }

  .hero-proof-grid {
    order: 3;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 8px;
  }
  .hero-proof-grid article {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 7px;
    text-align: center;
  }
  .proof-icon { width: 38px; height: 38px; }
  .hero-proof-grid strong { font-size: 11px; }
  .hero-proof-grid small { display: none; }

  .hero-scroll-cue { display: none; }
  .hero-ribbons-svg {
    inset: auto -24% -2% -24%;
    width: 148%;
    height: 51%;
    opacity: .66;
    animation-duration: 16s;
  }
  .ambient-glow-a { width: 78vw; height: 78vw; left: -42vw; bottom: -35vw; }
  .ambient-glow-b { width: 74vw; height: 74vw; right: -40vw; top: -31vw; }
}

@media (max-width: 460px) {
  .hero-layered {
    padding-top: 92px;
    padding-bottom: 34px;
  }
  .hero-layered-grid { width: calc(100% - 20px); gap: 8px; }
  .hero-layered-copy { padding: 0 4px; }
  .hero-kicker { margin-bottom: 11px; }
  .hero-layered h1 { font-size: clamp(2.42rem, 11.8vw, 3.25rem); }
  .hero-summary {
    max-width: 350px;
    margin-top: 14px;
    font-size: .86rem;
  }
  .hero-actions { margin-top: 15px; }
  .hero-actions .button { min-height: 46px; font-size: 13px; }
  .hero-chips span { font-size: 10px; }
  .hero-portrait-stage { width: min(98vw, 420px); }
  .hero-proof-grid { gap: 4px; margin-top: 2px; }
  .proof-icon { width: 34px; height: 34px; }
  .proof-icon svg { width: 19px; height: 19px; }
  .hero-proof-grid strong { font-size: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-ribbons-svg,
  .hero-trio-layer,
  .hero-light-sweep,
  .hero-scroll-cue i::after {
    animation: none !important;
  }
  .hero-intro-item,
  .hero-layered-visual,
  .site-header {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
body main > section.hero-layered.hero-layered {
  content-visibility: visible;
  contain: none;
  contain-intrinsic-size: auto;
}
.hero-trio-layer,
.hero-ribbons-svg,
.hero-light-sweep,
.hero-scroll-cue i::after {
  animation-play-state: paused;
}
.hero-layered.hero-active .hero-trio-layer,
.hero-layered.hero-active .hero-ribbons-svg,
.hero-layered.hero-active .hero-light-sweep,
.hero-layered.hero-active .hero-scroll-cue i::after {
  animation-play-state: running;
}

/* CORREÇÃO DE NITIDEZ — usa exatamente o arquivo enviado, sem recriação */
.hero-portrait-stage {
  transform: none !important;
  will-change: auto !important;
}

.hero-trio-layer {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  image-rendering: auto;
  filter: none !important;
  transform: none !important;
  animation: none !important;
  will-change: auto !important;
  backface-visibility: visible !important;
}

/* A sombra fica fora da imagem para o navegador não rasterizar o retrato inteiro. */
.hero-portrait-stage::after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 17%;
  right: 7%;
  bottom: 1.5%;
  height: 8%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(91, 46, 107, .17), transparent 70%);
  filter: blur(13px);
  pointer-events: none;
}

.hero-floor-glow { z-index: 0; }
.hero-light-sweep { z-index: 4; }

/* Não aplicar transformações ao pai depois da entrada, pois isso suaviza o bitmap no Chrome. */
body.hero-loaded .hero-layered-visual {
  transform: none !important;
}

@media (max-width: 820px) {
  .hero-trio-layer {
    filter: none !important;
    transform: none !important;
    animation: none !important;
  }
}


/* Ajuste fino: asset recortado para remover transparência excessiva */
.hero-layered-visual { justify-content: flex-end; }
.hero-portrait-stage { margin-left: auto; }
.hero-trio-layer { max-width: 100%; }
@media (max-width: 820px) { .hero-layered-visual { justify-content: center; } .hero-portrait-stage { margin-inline: auto; width: min(95vw, 430px); } }

/* DEPOIMENTOS EM VÍDEO */
.testimonials-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 16%, rgba(222, 110, 188, .11), transparent 27%),
    radial-gradient(circle at 87% 82%, rgba(113, 76, 159, .10), transparent 31%),
    linear-gradient(180deg, #fbf8fc 0%, #f5eef8 100%);
}
.testimonials-heading {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin-bottom: 42px;
  text-align: center;
}
.testimonials-heading .eyebrow { margin-inline: auto; }
.testimonials-heading h2 {
  max-width: 760px;
  margin-inline: auto;
}
.testimonials-heading p {
  margin: 17px 0 0;
  font-size: 1rem;
}
.testimonials-video-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 390px));
  justify-content: center;
  gap: 28px;
}
.testimonial-video-card {
  padding: 10px;
  border: 1px solid rgba(91, 57, 107, .13);
  border-radius: 32px;
  background: rgba(255,255,255,.76);
  box-shadow: 0 24px 58px rgba(75, 42, 88, .12);
}
.testimonial-video-shell {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #26172f;
  isolation: isolate;
}
.testimonial-video-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 62%, rgba(26, 13, 31, .24));
}
.testimonial-video-shell video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  background: #26172f;
}
.testimonial-sound {
  position: absolute;
  z-index: 3;
  left: 16px;
  bottom: 16px;
  min-height: 42px;
  padding: 10px 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 999px;
  color: #fff;
  background: rgba(45, 22, 55, .68);
  backdrop-filter: blur(10px);
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .22s ease, background .22s ease;
}
.testimonial-sound:hover {
  transform: translateY(-2px);
  background: rgba(63, 30, 76, .82);
}
.testimonial-sound.active {
  background: rgba(217, 50, 157, .84);
}
.sound-icon {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.14);
  font-size: 15px;
}
.testimonials-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
}
.testimonials-glow-a {
  width: 320px;
  height: 320px;
  left: -130px;
  top: 2%;
  background: rgba(232, 111, 190, .14);
}
.testimonials-glow-b {
  width: 380px;
  height: 380px;
  right: -160px;
  bottom: -80px;
  background: rgba(111, 76, 159, .12);
}
@media (max-width: 820px) {
  .testimonials-heading { margin-bottom: 28px; }
  .testimonials-video-grid {
    grid-template-columns: 1fr;
    width: min(calc(100% - 34px), 440px);
    gap: 20px;
  }
  .testimonial-video-card { border-radius: 26px; }
  .testimonial-video-shell { border-radius: 19px; }
}
