@font-face {
  font-family: "Geist";
  src: url("/fonts/geist-latin-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --background: #F7F7F5;
  --white: #FFFFFF;
  --black: #111111;
  --graphite: #1A1A1A;
  --muted: #666666;
  --border: #E6E6E2;
  --surface: #F0F0EC;
  --orange: #F58220;
  --radius: 14px;
  --button-radius: 10px;
  --section-space: 120px;
  --transition-space: 150px;
  --header-height: 76px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--background);
  color: var(--black);
  font-family: "Geist", sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}
body.mobile-bar-visible { padding-bottom: 68px; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 4px; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { color: inherit; font-weight: 700; letter-spacing: -0.035em; }
h1 { margin-bottom: 28px; font-size: clamp(52px, 5.35vw, 68px); line-height: 1.02; }
h2 { margin-bottom: 22px; max-width: 860px; font-size: 44px; line-height: 1.08; }
h3 { margin-bottom: 12px; font-size: 22px; line-height: 1.2; }
p { margin-bottom: 0; }
.body-large { color: var(--muted); font-size: 20px; line-height: 1.55; }
.eyebrow { margin-bottom: 22px; color: var(--orange); font-size: 12px; font-weight: 600; letter-spacing: 0.11em; line-height: 1.3; }
.shell { width: min(100%, 1264px); margin: 0 auto; padding-inline: 32px; }
.narrow-shell { max-width: 1030px; }
.white-section { background: var(--white); }
.dark-section { background: var(--black); color: var(--white); }
.section-heading { margin-bottom: 56px; }
.section-heading .body-large { max-width: 680px; }
.centered { display: flex; flex-direction: column; align-items: center; text-align: center; }

.site-header { position: relative; z-index: 100; height: var(--header-height); background: var(--background); transition: background-color 200ms ease-out, border-color 200ms ease-out; }
.site-header.is-sticky { position: fixed; inset: 0 0 auto; border-bottom: 1px solid var(--border); background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(12px); }
.header-space { display: none; height: var(--header-height); }
.header-space.is-active { display: block; }
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { width: 52px; height: 52px; display: inline-grid; place-items: center; }
.logo-mark { width: 44px; height: 44px; display: block; background: var(--orange); -webkit-mask: url("/assets/logo-visto-transparent.png") center / contain no-repeat; mask: url("/assets/logo-visto-transparent.png") center / contain no-repeat; }

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: var(--button-radius);
  padding: 15px 24px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.15;
  text-align: center;
  cursor: pointer;
  transition: transform 200ms ease-out, background-color 200ms ease-out, color 200ms ease-out;
}
.button:hover { transform: scale(1.015); }
.button-primary { background: var(--orange); color: var(--black); }
.button-primary:hover { background: var(--black); color: var(--white); }
.button-dark { background: var(--black); color: var(--white); }
.button-dark:hover { background: var(--white); color: var(--black); }
.button-small { min-height: 42px; padding: 11px 18px; background: var(--black); color: var(--white); font-size: 14px; }
.button-small:hover { background: var(--orange); color: var(--black); }

.hero { padding: 76px 0 92px; background: var(--background); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 55fr) minmax(360px, 45fr); align-items: center; gap: 46px; }
.hero-copy { position: relative; z-index: 2; }
.hero-subheadline { max-width: 670px; }
.hero-price { margin: 32px 0 20px; display: flex; align-items: baseline; gap: 14px; }
.hero-price strong { color: var(--orange); font-size: 42px; line-height: 1; letter-spacing: -0.04em; }
.hero-price > span:last-child { color: var(--muted); font-size: 14px; }
.old-price { color: var(--muted); text-decoration: line-through; text-decoration-thickness: 1.5px; }
.hero-main-cta { min-width: 315px; }
.cta-note { margin-top: 14px; color: var(--muted); font-size: 14px; }
.trust-items { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 10px 0; color: var(--muted); font-size: 13px; }
.trust-items span { display: inline-flex; align-items: center; }
.trust-items span:not(:last-child)::after { width: 3px; height: 3px; margin: 0 11px; border-radius: 50%; background: var(--orange); content: ""; }

.hero-visual { position: relative; min-height: 610px; display: grid; place-items: center; }
.hero-pages { position: relative; width: min(80%, 390px); aspect-ratio: 595 / 842; animation: page-float 5s ease-in-out infinite; }
.hero-page { position: absolute; inset: 0; width: 100%; height: 100%; border: 1px solid var(--border); border-radius: 5px; background: var(--white); object-fit: cover; box-shadow: 0 22px 52px rgba(17, 17, 17, 0.09); animation: hero-page-cycle 10.5s ease-in-out infinite; will-change: transform, opacity; }
.hero-page:nth-child(1) { animation-delay: 0s; }
.hero-page:nth-child(2) { animation-delay: -3.5s; }
.hero-page:nth-child(3) { animation-delay: -7s; }
.document-label { position: absolute; z-index: 4; border: 1px solid var(--border); border-radius: 8px; padding: 7px 10px; background: rgba(255,255,255,0.96); color: var(--graphite); font-size: 12px; font-weight: 600; box-shadow: 0 8px 22px rgba(17,17,17,0.06); animation: label-breathe 4.2s ease-in-out infinite; }
.document-label::before { width: 5px; height: 5px; margin-right: 7px; display: inline-block; border-radius: 50%; background: var(--orange); content: ""; vertical-align: 1px; }
.label-instagram { top: 7%; left: -2%; }
.label-offer { top: 27%; right: -2%; }
.label-content { top: 48%; left: -8%; }
.label-creatives { top: 66%; right: -4%; }
.label-site { bottom: 10%; left: 4%; }
.label-plan { right: 2%; bottom: 1%; }
@keyframes page-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
@keyframes hero-page-cycle {
  0%, 28% { z-index: 3; transform: translate(0, 0) rotate(0); opacity: 1; }
  33%, 61% { z-index: 1; transform: translate(42px, -19px) rotate(5deg); opacity: 0.52; }
  66%, 94% { z-index: 2; transform: translate(-27px, 9px) rotate(-4deg); opacity: 0.78; }
  100% { z-index: 3; transform: translate(0, 0) rotate(0); opacity: 1; }
}
@keyframes label-breathe { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-3px); } }
.document-label:nth-of-type(2) { animation-delay: -0.7s; }
.document-label:nth-of-type(3) { animation-delay: -1.4s; }
.document-label:nth-of-type(4) { animation-delay: -2.1s; }
.document-label:nth-of-type(5) { animation-delay: -2.8s; }
.document-label:nth-of-type(6) { animation-delay: -3.5s; }

.trust-bar { --transition-from: 247, 247, 245; --transition-to: var(--surface); --section-transition-height: 58px; padding: 44px 0 28px; }
.trust-bar-inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.trust-bar p { font-weight: 600; }
.trust-disciplines { display: flex; align-items: center; color: var(--muted); font-size: 14px; }
.trust-disciplines span + span { margin-left: 20px; padding-left: 20px; border-left: 1px solid var(--border); }

.pain-section { --transition-from: 240, 240, 236; --transition-to: var(--black); padding: var(--section-space) 0; }
.dark-section .section-heading .body-large { color: rgba(255,255,255,0.67); }
.pain-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 70px; border-top: 1px solid rgba(255,255,255,0.16); }
.pain-item { min-height: 152px; display: grid; grid-template-columns: 12px 1fr; align-items: start; gap: 15px; padding: 34px 0; border-bottom: 1px solid rgba(255,255,255,0.16); }
.pain-item > span { width: 7px; height: 7px; margin-top: 9px; border-radius: 50%; background: var(--orange); }
.pain-item p { max-width: 410px; font-size: 19px; line-height: 1.45; }

.analysis-section { --transition-from: 17, 17, 17; --transition-to: var(--white); padding: var(--section-space) 0; }
.analysis-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.analysis-card { min-height: 190px; padding: 30px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--white); transition: transform 200ms ease-out, border-color 200ms ease-out; }
.analysis-card:hover { transform: translateY(-2px); border-color: var(--muted); }
.analysis-card > span { margin-bottom: 28px; display: block; color: var(--orange); font-size: 12px; font-weight: 600; }
.analysis-card p { max-width: 470px; color: var(--muted); }

.report-section { --transition-from: 255, 255, 255; --transition-to: var(--background); padding: var(--section-space) 0 72px; }
.report-viewer { overflow: hidden; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); box-shadow: 0 20px 54px rgba(17,17,17,0.07); }
.report-toolbar { height: 54px; display: flex; align-items: center; justify-content: space-between; padding: 0 22px; border-bottom: 1px solid var(--border); background: var(--white); font-size: 13px; font-weight: 600; }
.report-toolbar span:last-child { color: var(--orange); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; }
.report-scroll { height: min(76vh, 860px); overflow-y: auto; overscroll-behavior: auto; padding: 38px 20px 0; scroll-behavior: smooth; touch-action: pan-y; -webkit-overflow-scrolling: touch; }
.report-scroll::-webkit-scrollbar { width: 10px; }
.report-scroll::-webkit-scrollbar-track { background: transparent; }
.report-scroll::-webkit-scrollbar-thumb { border: 3px solid var(--surface); border-radius: 12px; background: var(--muted); }
.report-page { width: min(100%, 730px); margin: 0 auto 28px; overflow: hidden; border: 1px solid var(--border); border-radius: 4px; background: var(--white); box-shadow: 0 12px 28px rgba(17,17,17,0.06); }
.report-page img { width: 100%; height: auto; }
.report-page-soft img { filter: blur(0.45px); opacity: 0.96; }
.report-page-medium { position: relative; }
.report-page-medium img { filter: blur(1.5px); }
.blocked-continuation { position: relative; min-height: 650px; display: grid; place-items: start center; padding-top: 82px; overflow: hidden; }
.ghost-page { position: absolute; top: -150px; width: min(100%, 730px); min-height: 760px; padding: 70px; border: 1px solid var(--border); border-radius: 4px; background: var(--white); filter: blur(10px); opacity: 0.58; }
.ghost-line { width: 100%; height: 17px; margin-bottom: 24px; background: var(--border); }
.ghost-line-short { width: 58%; }
.ghost-box { width: 100%; height: 280px; margin: 46px 0; background: var(--border); }
.report-lock-card { position: relative; z-index: 2; width: min(calc(100% - 36px), 520px); padding: 34px; border: 1px solid var(--border); border-radius: var(--radius); background: rgba(247,247,245,0.95); text-align: center; box-shadow: 0 20px 60px rgba(17,17,17,0.13); backdrop-filter: blur(10px); }
.report-lock-card svg { margin: 0 auto 20px; color: var(--orange); }
.report-lock-card h3 { font-size: 24px; }
.report-lock-card p { margin: 0 auto 24px; color: var(--muted); }
.report-lock-card .button { width: 100%; }
.report-lock-card small { margin-top: 12px; display: block; color: var(--muted); font-size: 13px; }

.audio-section { padding: 72px 0 var(--section-space); }
.audio-grid { display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(480px, 1.15fr); align-items: center; gap: 76px; }
.audio-grid .section-heading { margin-bottom: 0; }
.audio-player { padding: 28px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--white); }
.audio-player audio { display: none; }
.audio-controls { display: flex; align-items: center; gap: 20px; }
.play-button { flex: 0 0 54px; width: 54px; height: 54px; border: 0; border-radius: 50%; background: var(--orange); color: var(--black); cursor: pointer; transition: transform 200ms ease-out, background-color 200ms ease-out; }
.play-button:hover { transform: scale(1.015); background: var(--black); color: var(--white); }
.play-button span { display: block; transform: translateX(1px); }
.wave-area { position: relative; flex: 1; min-width: 0; }
.waveform { height: 42px; display: flex; align-items: center; gap: 3px; overflow: hidden; }
.waveform span { width: 3px; min-width: 3px; border-radius: 2px; background: var(--border); transition: background-color 100ms linear; }
.waveform span.played { background: var(--orange); }
.audio-seek { position: absolute; inset: 0; width: 100%; height: 42px; margin: 0; opacity: 0; cursor: pointer; }
.audio-time { margin-top: 8px; display: flex; justify-content: space-between; color: var(--muted); font-size: 13px; }
.wave-continuation { flex: 0 0 66px; height: 42px; display: flex; align-items: center; gap: 4px; overflow: hidden; opacity: 0.18; filter: blur(1.5px); }
.wave-continuation span { width: 3px; min-width: 3px; border-radius: 2px; background: var(--muted); }
.wave-continuation span:nth-child(1) { height: 18px; }
.wave-continuation span:nth-child(2) { height: 30px; }
.wave-continuation span:nth-child(3) { height: 22px; }
.wave-continuation span:nth-child(4) { height: 38px; }
.wave-continuation span:nth-child(5) { height: 26px; }
.wave-continuation span:nth-child(6) { height: 34px; }
.wave-continuation span:nth-child(7) { height: 20px; }
.wave-continuation span:nth-child(8) { height: 29px; }
.audio-complete { margin-top: 26px; padding-top: 26px; border-top: 1px solid var(--border); }
.audio-complete p { margin-bottom: 22px; color: var(--muted); }

.how-section { --transition-from: 247, 247, 245; --transition-to: var(--white); padding: var(--section-space) 0; }
.steps-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.step { position: relative; min-height: 290px; padding: 28px 24px; border-top: 1px solid var(--border); }
.step-number { display: block; color: var(--surface); font-size: 88px; font-weight: 700; letter-spacing: -0.07em; line-height: 1; }
.step-mark { position: absolute; top: -3px; left: 24px; width: 6px; height: 6px; border-radius: 50%; background: var(--orange); }
.step h3 { margin-top: 38px; }
.step p { color: var(--muted); }

.authority-section { --transition-from: 255, 255, 255; --transition-to: var(--background); padding: var(--section-space) 0; }
.authority-stage {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  display: flex;
  align-items: center;
  border-radius: 22px;
  background: var(--black);
  color: var(--white);
  box-shadow: 0 34px 90px rgba(17, 17, 17, 0.18);
  isolation: isolate;
}
.authority-stage::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    radial-gradient(circle at 12% 12%, rgba(245, 130, 32, 0.20), transparent 33%),
    linear-gradient(90deg, rgba(17, 17, 17, 0.98) 3%, rgba(17, 17, 17, 0.94) 28%, rgba(17, 17, 17, 0.76) 47%, rgba(17, 17, 17, 0.24) 71%, rgba(17, 17, 17, 0.06) 100%),
    linear-gradient(0deg, rgba(17, 17, 17, 0.72), transparent 48%);
  content: "";
}
.authority-slides { position: absolute; z-index: 0; inset: 0; }
.authority-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 8%;
  filter: saturate(0.82) contrast(1.06);
  will-change: opacity, transform;
}
.authority-slide-one { animation: authority-photo-one 14s ease-in-out infinite; }
.authority-slide-two { opacity: 0; animation: authority-photo-two 14s ease-in-out infinite; }
.authority-copy { position: relative; z-index: 2; width: min(55%, 610px); padding: 72px clamp(48px, 6.5vw, 86px); }
.authority-copy h2 { margin-bottom: 28px; font-size: clamp(42px, 4.3vw, 58px); }
.authority-copy > p:not(.eyebrow) { margin-bottom: 18px; color: rgba(255, 255, 255, 0.76); font-size: 18px; }
.authority-signature { margin-top: 34px; display: flex; align-items: center; gap: 14px; color: var(--white); font-size: 15px; font-weight: 600; line-height: 1.25; }
.authority-signature small { color: rgba(255, 255, 255, 0.52); font-size: 12px; font-weight: 400; }
.authority-logo { width: 44px; height: 44px; flex: 0 0 44px; }
.authority-photo-progress { position: absolute; z-index: 2; right: 28px; bottom: 25px; display: flex; gap: 7px; }
.authority-photo-progress span { width: 34px; height: 2px; overflow: hidden; background: rgba(255, 255, 255, 0.24); }
.authority-photo-progress span::after { width: 100%; height: 100%; display: block; background: var(--orange); content: ""; transform: scaleX(0); transform-origin: left; }
.authority-photo-progress span:first-child::after { animation: authority-progress-one 14s linear infinite; }
.authority-photo-progress span:last-child::after { animation: authority-progress-two 14s linear infinite; }
@keyframes authority-photo-one {
  0%, 42% { opacity: 1; transform: scale(1.015); }
  50%, 92% { opacity: 0; transform: scale(1.055); }
  100% { opacity: 1; transform: scale(1.015); }
}
@keyframes authority-photo-two {
  0%, 42% { opacity: 0; transform: scale(1.055); }
  50%, 92% { opacity: 1; transform: scale(1.015); }
  100% { opacity: 0; transform: scale(1.055); }
}
@keyframes authority-progress-one {
  0% { transform: scaleX(0); }
  43% { transform: scaleX(1); }
  43.01%, 100% { transform: scaleX(0); }
}
@keyframes authority-progress-two {
  0%, 49% { transform: scaleX(0); }
  92% { transform: scaleX(1); }
  92.01%, 100% { transform: scaleX(0); }
}

.testimonials-section { --transition-from: 247, 247, 245; --transition-to: var(--white); padding: var(--section-space) 0; }
.testimonials-heading { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: end; gap: 42px; }
.testimonials-heading h2 { margin-bottom: 0; }
.testimonials-proof { min-width: 500px; display: grid; grid-template-columns: 0.85fr 1.15fr; overflow: hidden; border-radius: var(--radius); background: var(--black); color: var(--white); box-shadow: 0 20px 48px rgba(17, 17, 17, 0.10); }
.testimonials-proof > div { min-height: 162px; padding: 25px 28px; display: flex; flex-direction: column; justify-content: center; }
.testimonials-proof > div + div { border-left: 1px solid rgba(255, 255, 255, 0.14); }
.testimonials-proof span { color: rgba(255, 255, 255, 0.56); font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.testimonials-proof strong { display: block; color: var(--white); font-size: 42px; letter-spacing: -0.05em; line-height: 1.05; }
.testimonials-proof strong small { color: rgba(255, 255, 255, 0.46); font-size: 17px; font-weight: 500; letter-spacing: 0; }
.proof-rating > div { margin-top: 7px; color: var(--orange); font-size: 15px; letter-spacing: 0.09em; }
.proof-buyers strong { color: var(--orange); }
.proof-buyers p { margin-top: 5px; color: rgba(255, 255, 255, 0.72); font-size: 14px; line-height: 1.35; }
.testimonials-viewport { width: 100%; overflow: hidden; padding: 8px 0; }
.testimonials-track { width: max-content; display: flex; gap: 18px; animation: testimonials-flow var(--review-duration, 90s) linear infinite; will-change: transform; }
.testimonials-viewport:hover .testimonials-track, .testimonials-viewport:focus-within .testimonials-track { animation-play-state: paused; }
.testimonial-card { width: min(380px, calc(100vw - 40px)); min-height: 250px; padding: 28px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--white); }
.testimonial-header { display: flex; align-items: center; gap: 13px; margin-bottom: 22px; }
.testimonial-avatar { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 50%; background: var(--black); color: var(--white); font-weight: 700; }
.testimonial-name { display: block; font-weight: 600; }
.testimonial-result { color: var(--muted); font-size: 13px; }
.testimonial-stars { margin-bottom: 14px; color: var(--orange); font-size: 16px; letter-spacing: 0.08em; }
.testimonial-card blockquote { margin: 0; color: var(--graphite); }
@keyframes testimonials-flow { from { transform: translateX(-50%); } to { transform: translateX(0); } }

.audience-section { --transition-from: 255, 255, 255; --transition-to: var(--black); padding: var(--section-space) 0; }
.audience-list { border-top: 1px solid rgba(255,255,255,0.16); }
.audience-list p { padding: 25px 0; border-bottom: 1px solid rgba(255,255,255,0.16); font-size: 21px; }
.audience-list p::before { width: 7px; height: 7px; margin-right: 16px; display: inline-block; border-radius: 50%; background: var(--orange); content: ""; vertical-align: 3px; }
.audience-final { margin-top: 38px; color: rgba(255,255,255,0.67); }

.offer-section { --transition-from: 17, 17, 17; --transition-to: var(--white); padding: var(--section-space) 0 84px; }
.offer-shell { display: flex; flex-direction: column; align-items: center; }
.offer-card { width: min(100%, 670px); padding: 36px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--white); }
.offer-card h3 { margin-bottom: 28px; font-size: 26px; }
.offer-card ul { margin: 0 0 32px; padding: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px 24px; list-style: none; }
.offer-card li { position: relative; padding-left: 27px; color: var(--graphite); }
.offer-card li::before { position: absolute; left: 0; color: var(--orange); font-weight: 700; content: "✓"; }
.offer-price { padding: 30px 0 24px; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.offer-price > div { display: flex; align-items: baseline; gap: 12px; }
.offer-price strong { color: var(--orange); font-size: 46px; line-height: 1; letter-spacing: -0.04em; }
.offer-price div span { color: var(--muted); font-size: 14px; }
.offer-card .button { width: 100%; }
.offer-card small { margin-top: 12px; display: block; color: var(--muted); font-size: 13px; text-align: center; }

.guarantee-section { padding: 36px 0 var(--section-space); }
.guarantee-section .narrow-shell { padding-top: 54px; border-top: 1px solid var(--border); }
.guarantee-section h2 { font-size: 34px; }

.faq-section { --transition-from: 255, 255, 255; --transition-to: var(--background); padding: var(--section-space) 0; }
.faq-shell { max-width: 930px; }
.faq-list { border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item summary { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 0; font-size: 18px; font-weight: 600; cursor: pointer; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary span { position: relative; flex: 0 0 18px; width: 18px; height: 18px; }
.faq-item summary span::before, .faq-item summary span::after { position: absolute; top: 8px; left: 2px; width: 14px; height: 1.5px; background: var(--orange); content: ""; transition: transform 200ms ease-out; }
.faq-item summary span::after { transform: rotate(90deg); }
.faq-item[open] summary span::after { transform: rotate(0); }
.faq-item p { max-width: 760px; padding: 0 40px 26px 0; color: var(--muted); }

.final-cta-section { --transition-from: 247, 247, 245; --transition-to: var(--orange); padding: 112px 0; color: var(--black); }
.final-cta-inner { display: flex; flex-direction: column; align-items: center; text-align: center; }
.final-cta-inner h2 { max-width: 800px; margin-bottom: 34px; }
.final-cta-inner p { margin-top: 16px; font-size: 14px; }

.site-footer { --transition-from: 245, 130, 32; --transition-to: var(--black); padding: calc(54px + var(--transition-space)) 0 54px; color: var(--white); }
.trust-bar,
.pain-section,
.analysis-section,
.report-section,
.how-section,
.authority-section,
.testimonials-section,
.audience-section,
.offer-section,
.faq-section,
.final-cta-section,
.site-footer {
  background-color: var(--transition-to);
  background-image: linear-gradient(
    to bottom,
    rgba(var(--transition-from), 1) 0%,
    rgba(var(--transition-from), 0.99) 10%,
    rgba(var(--transition-from), 0.94) 22%,
    rgba(var(--transition-from), 0.80) 38%,
    rgba(var(--transition-from), 0.57) 56%,
    rgba(var(--transition-from), 0.32) 72%,
    rgba(var(--transition-from), 0.13) 86%,
    rgba(var(--transition-from), 0) 100%
  );
  background-repeat: no-repeat;
  background-size: 100% var(--section-transition-height, var(--transition-space));
}
.footer-inner { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 26px 60px; }
.footer-brand { display: flex; align-items: center; gap: 14px; font-weight: 600; }
.footer-brand .logo-mark { width: 42px; height: 42px; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 22px; color: rgba(255,255,255,0.68); font-size: 14px; }
.footer-links a:hover, .footer-link-button:hover { color: var(--orange); }
.footer-link-button { padding: 0; border: 0; color: inherit; background: transparent; font: inherit; cursor: pointer; }
.footer-link-button:focus-visible, .footer-links a:focus-visible, .footer-inner > p a:focus-visible { outline: 2px solid var(--orange); outline-offset: 4px; }
.footer-inner > p { grid-column: 1 / -1; margin-top: 18px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.14); color: rgba(255,255,255,0.55); font-size: 13px; }
.footer-inner > p a { color: inherit; text-decoration: underline; text-underline-offset: 3px; }
.footer-inner > p a:hover { color: var(--white); }

.modal-open { overflow: hidden; }
.legal-modal[hidden] { display: none; }
.legal-modal { position: fixed; z-index: 300; inset: 0; display: grid; place-items: center; padding: 24px; }
.legal-modal-backdrop { position: absolute; inset: 0; background: rgba(10, 10, 10, 0.72); backdrop-filter: blur(8px); }
.legal-modal-dialog { position: relative; width: min(100%, 680px); max-height: min(82vh, 760px); overflow: auto; padding: 38px 40px 36px; border: 1px solid rgba(20, 20, 20, 0.12); border-radius: 24px; background: var(--white); box-shadow: 0 28px 90px rgba(0, 0, 0, 0.32); outline: none; }
.legal-modal-dialog h2 { margin: 6px 42px 24px 0; font-size: 36px; }
.legal-modal-close { position: absolute; top: 18px; right: 18px; width: 42px; height: 42px; border: 1px solid var(--border); border-radius: 50%; color: var(--black); background: var(--background); font-size: 28px; line-height: 1; cursor: pointer; }
.legal-modal-close:hover { border-color: var(--orange); color: var(--orange); }
.legal-modal-close:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; }
.legal-modal-content { color: var(--muted); }
.legal-modal-content h3 { margin: 24px 0 6px; color: var(--black); font-size: 17px; }
.legal-modal-content p { font-size: 15px; line-height: 1.65; }
.legal-modal-content a { color: var(--orange); text-decoration: underline; text-underline-offset: 3px; overflow-wrap: anywhere; }
.legal-updated { margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--border); font-size: 13px !important; }

.mobile-purchase-bar { display: none; }

.reveal { opacity: 0; transform: translateY(16px); transition: opacity 500ms ease-out, transform 500ms ease-out; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

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

@media (max-width: 980px) {
  .shell { padding-inline: 24px; }
  .hero { padding-top: 58px; }
  .hero-grid { grid-template-columns: 1fr; gap: 58px; }
  .hero-copy { max-width: 760px; }
  .hero-visual { width: min(100%, 680px); min-height: 610px; margin: 0 auto; }
  .audio-grid { grid-template-columns: 1fr; gap: 44px; }
  .authority-stage { min-height: 680px; }
  .authority-copy { width: min(66%, 600px); padding-inline: 52px; }
  .testimonials-heading { grid-template-columns: 1fr; align-items: start; }
  .testimonials-proof { width: min(100%, 560px); min-width: 0; }
}

@media (max-width: 720px) {
  :root { --section-space: 72px; --transition-space: 96px; --header-height: 64px; }
  body { font-size: 16px; }
  h1 { margin-bottom: 22px; font-size: 40px; line-height: 1.02; }
  h2 { margin-bottom: 18px; font-size: 31px; line-height: 1.08; }
  h3 { font-size: 20px; }
  .body-large { font-size: 16px; }
  .shell { padding-inline: 20px; }
  .section-heading { margin-bottom: 38px; }
  .brand { width: 44px; height: 44px; }
  .brand .logo-mark { width: 38px; height: 38px; }
  .button-small { min-height: 40px; padding: 10px 14px; font-size: 13px; }
  .hero { padding: 46px 0 68px; }
  .hero-grid { gap: 46px; }
  .eyebrow { margin-bottom: 18px; font-size: 12px; }
  .hero-price { margin: 26px 0 18px; }
  .hero-price strong { font-size: 38px; }
  .hero-main-cta { width: 100%; min-width: 0; }
  .cta-note { text-align: center; }
  .trust-items { justify-content: center; }
  .hero-visual { min-height: 465px; }
  .hero-pages { width: min(77%, 310px); }
  .document-label { padding: 6px 8px; font-size: 11px; }
  .label-instagram { left: 0; }
  .label-content { left: -1%; }
  .label-offer, .label-creatives { right: 0; }
  .trust-bar { padding: 26px 0; }
  .trust-bar-inner { align-items: flex-start; flex-direction: column; gap: 18px; }
  .trust-disciplines { width: 100%; justify-content: space-between; }
  .trust-disciplines span + span { margin-left: 12px; padding-left: 12px; }
  .pain-list, .analysis-grid { grid-template-columns: 1fr; }
  .pain-list { gap: 0; }
  .pain-item { min-height: 0; padding: 27px 0; }
  .pain-item p { font-size: 17px; }
  .analysis-grid { gap: 14px; }
  .analysis-card { min-height: 0; padding: 24px; }
  .analysis-card > span { margin-bottom: 22px; }
  .report-section { padding-bottom: 52px; }
  .report-toolbar { height: 48px; padding: 0 16px; }
  .report-scroll { height: 72vh; padding: 18px 10px 0; }
  .report-page { margin-bottom: 14px; }
  .blocked-continuation { min-height: 520px; padding-top: 58px; }
  .ghost-page { padding: 36px; }
  .report-lock-card { padding: 26px 20px; }
  .report-lock-card h3 { font-size: 21px; }
  .audio-section { padding-top: 52px; }
  .audio-grid { gap: 34px; }
  .audio-player { padding: 22px 18px; }
  .audio-controls { gap: 14px; }
  .play-button { flex-basis: 50px; width: 50px; height: 50px; }
  .wave-continuation { flex-basis: 36px; }
  .steps-grid { grid-template-columns: 1fr; gap: 0; }
  .step { min-height: 235px; padding-inline: 0; }
  .step-mark { left: 0; }
  .step h3 { margin-top: 28px; }
  .authority-section .shell { padding-inline: 14px; }
  .authority-stage { min-height: 780px; align-items: flex-end; border-radius: 18px; }
  .authority-stage::before {
    background:
      radial-gradient(circle at 16% 20%, rgba(245, 130, 32, 0.16), transparent 36%),
      linear-gradient(0deg, rgba(17, 17, 17, 1) 0%, rgba(17, 17, 17, 0.97) 33%, rgba(17, 17, 17, 0.70) 51%, rgba(17, 17, 17, 0.16) 76%, rgba(17, 17, 17, 0.04) 100%);
  }
  .authority-slide { object-position: center 22%; }
  .authority-copy { width: 100%; padding: 42px 24px 58px; }
  .authority-copy h2 { margin-bottom: 22px; font-size: 37px; }
  .authority-copy > p:not(.eyebrow) { margin-bottom: 14px; color: rgba(255, 255, 255, 0.78); font-size: 16px; }
  .authority-signature { margin-top: 26px; }
  .authority-photo-progress { right: 24px; bottom: 25px; }
  .report-viewer { overflow: visible; box-shadow: none; }
  .report-scroll { height: auto; overflow: visible; overscroll-behavior: auto; padding-bottom: 0; }
  .report-scroll::-webkit-scrollbar { display: none; }
  .testimonials-track { animation-duration: var(--review-duration, 90s); }
  .testimonials-heading { gap: 28px; }
  .testimonials-proof { grid-template-columns: 1fr 1.15fr; }
  .testimonials-proof > div { min-height: 138px; padding: 20px 18px; }
  .testimonials-proof strong { font-size: 35px; }
  .testimonials-proof strong small { font-size: 15px; }
  .proof-buyers p { font-size: 13px; }
  .audience-list p { padding: 22px 0; font-size: 17px; }
  .offer-section { padding-bottom: 54px; }
  .offer-card { padding: 26px 20px; }
  .offer-card h3 { font-size: 22px; }
  .offer-card ul { grid-template-columns: 1fr; }
  .offer-price { align-items: flex-end; }
  .offer-price > div { align-items: flex-end; flex-direction: column; gap: 2px; }
  .offer-price strong { font-size: 42px; }
  .guarantee-section h2 { font-size: 28px; }
  .faq-item summary { min-height: 72px; font-size: 16px; }
  .final-cta-section { padding: 84px 0; }
  .final-cta-inner .button { width: 100%; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; flex-direction: column; gap: 14px; }
  .footer-inner > p { grid-column: auto; }
  .legal-modal { padding: 14px; }
  .legal-modal-dialog { max-height: 88vh; padding: 30px 22px 28px; border-radius: 20px; }
  .legal-modal-dialog h2 { font-size: 31px; }
  .mobile-purchase-bar { position: fixed; z-index: 120; inset: auto 0 0; height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 9px 14px; border-top: 1px solid var(--border); background: var(--white); transform: translateY(105%); transition: transform 220ms ease-out; }
  .mobile-purchase-bar.is-visible { transform: translateY(0); }
  .mobile-price { min-width: 62px; display: flex; flex-direction: column; line-height: 1.1; }
  .mobile-price .old-price { font-size: 12px; }
  .mobile-price strong { color: var(--orange); font-size: 21px; }
  .mobile-purchase-bar .button { min-height: 48px; padding: 12px 18px; }
}

@media (max-width: 390px) {
  h1 { font-size: 36px; }
  .button-small { max-width: 182px; }
  .hero-visual { min-height: 420px; }
  .document-label { font-size: 10px; }
  .trust-disciplines { font-size: 13px; }
  .trust-disciplines span + span { margin-left: 8px; padding-left: 8px; }
}
