:root {
  --ink: #121218;
  --panel: #1B1A22;
  --panel-2: #232230;
  --line: #302E3C;
  --text: #F4F4F4;
  --dim: #9C9AA8;
  --blue: #2E9BFF;
  --violet: #8B5CF6;
  --cyan: #4DD9E8;
  --ok: #3DD68C;
  --radius: 14px;
  --maxw: 1120px;
  --pad: 20px;
  --safe: env(safe-area-inset-bottom, 0px);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  max-width: 100%;
  scroll-padding-top: 72px;
}

body {
  background: var(--ink);
  color: var(--text);
  font-family: 'IBM Plex Sans', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100%;
  position: relative;
}

/* =========================================
   Preloader Inicial
   ========================================= */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  padding: 20px;
  width: 100%;
  max-width: 280px;
}

.preloader-logo {
  border-radius: 14px;
  animation: preloader-pulse 1.8s ease-in-out infinite;
}

.preloader-bar {
  width: 100%;
  height: 3px;
  background: var(--line);
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}

.preloader-progress {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 40%;
  background: linear-gradient(90deg, var(--violet), var(--blue), var(--cyan));
  border-radius: 3px;
  animation: preloader-slide 1.2s cubic-bezier(0.65, 0.05, 0.36, 1) infinite;
}

.preloader-text {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dim);
}

@keyframes preloader-pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.85;
  }

  50% {
    transform: scale(1.06);
    opacity: 1;
  }
}

@keyframes preloader-slide {
  0% {
    left: -40%;
    width: 30%;
  }

  50% {
    left: 40%;
    width: 50%;
  }

  100% {
    left: 100%;
    width: 30%;
  }
}

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

img,
video {
  max-width: 100%;
  display: block;
  -webkit-user-drag: none;
}

a {
  color: inherit;
}

h1,
h2,
h3 {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.02em;
}

h1 {
  font-size: clamp(2rem, 8.5vw, 4.2rem);
}

h2 {
  font-size: clamp(1.6rem, 6.5vw, 3rem);
  margin-bottom: 12px;
}

h3 {
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: -.01em;
}

.eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: .68rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--blue);
}

.lead {
  color: var(--dim);
  font-size: clamp(.98rem, 3.6vw, 1.16rem);
  max-width: 56ch;
}

.sec-head {
  max-width: 64ch;
  margin-bottom: 28px;
}

.center {
  text-align: center;
  margin-inline: auto;
}

.center .lead {
  margin-inline: auto;
}

section {
  padding: clamp(48px, 10vw, 110px) 0;
}

.band {
  border-top: 1px solid var(--line);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 52px;
  padding: 14px 24px;
  border-radius: 12px;
  border: 1px solid transparent;
  font: inherit;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform .15s, filter .15s, background .15s, border-color .15s;
  -webkit-tap-highlight-color: transparent;
}

.btn-primary {
  background: var(--blue);
  color: #ffffff;
  transition: all .3s ease-in-out;
}

.btn-primary:active {
  transform: scale(.98);
}

.btn-ghost {
  border-color: var(--line);
  color: var(--text);
  background: transparent;
  transition: all .3s ease-in-out;
}

.btn-wa {
  background: #25D366;
  color: #052B15;
}

.btn-block {
  display: flex;
  width: 100%;
}

.btn:focus-visible,
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

/* =========================================
   Popup de Intenção de Saída (Exit Intent)
   ========================================= */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(12, 12, 16, 0.85);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--pad);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.popup-overlay.show {
  opacity: 1;
  visibility: visible;
}

.popup-content {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 24px 30px;
  max-width: 440px;
  width: 100%;
  position: relative;
  text-align: center;
  transform: translateY(20px) scale(0.95);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 24px 54px -16px rgba(0, 0, 0, 0.9);
}

.popup-overlay.show .popup-content {
  transform: translateY(0) scale(1);
}

.popup-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: transparent;
  border: none;
  color: var(--dim);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s;
  -webkit-tap-highlight-color: transparent;
}

.popup-close:hover {
  color: var(--text);
}

.popup-content h2 {
  font-size: clamp(1.4rem, 5vw, 1.8rem);
  margin-bottom: 12px;
}

.popup-content p {
  color: var(--dim);
  font-size: .96rem;
  margin-bottom: 24px;
  line-height: 1.5;
}

.popup-content .btn {
  margin-bottom: 10px;
}

.popup-content .btn:last-child {
  margin-bottom: 0;
}

/* Botão flutuante do Whatsapp */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  z-index: 100;
  transition: all 0.3s ease;
  text-decoration: none;
  animation: pulse-green 2s infinite;
}

.whatsapp-float svg {
  display: block;
  fill: #fff;
  /* Força o ícone a ficar branco */
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

@keyframes pulse-green {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* ==========================================
   FAQ — Accordion Premium
   ========================================== */

#faq details {
  overflow: hidden;
}

#faq details summary {
  cursor: pointer;
  list-style: none;
  user-select: none;
}

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

/* Container da resposta */
#faq details .faq-content {
  overflow: hidden;
}

/* Conteúdo da resposta */
#faq details p {
  margin-top: 14px;
  opacity: 0;
  transform: translateY(-6px);

  transition:
    opacity 0.25s ease,
    transform 0.35s ease;
}

/* Quando estiver aberto */
#faq details.opening p,
#faq details[open] p {
  opacity: 1;
  transform: translateY(0);
}

/* Respeita acessibilidade */
@media (prefers-reduced-motion: reduce) {

  #faq details,
  #faq details p {
    transition: none !important;
    transform: none !important;
  }

}

/* =========================================
   Cursor Personalizado
   ========================================= */

/* Oculta o cursor padrão apenas em computadores (evita sumir com o dedo no celular) */
@media (pointer: fine) {

  body,
  a,
  button,
  input,
  .tool-tab {
    cursor: none !important;
  }
}

.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 36px;
  height: 36px;
  border: 2px solid var(--blue);
  border-radius: 50%;
  background: transparent;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease, border-color 0.2s ease;
  z-index: 99999;
  will-change: transform;
}

/* Efeito elegante: cresce levemente ao passar por cima de links ou botões */
body.cursor-hover .custom-cursor {
  width: 50px;
  height: 50px;
  border-color: var(--cyan);
}

@media (pointer: coarse) {
  .custom-cursor {
    display: none !important;
  }
}

/* Bolinha central (Efeito de mira) */
.custom-cursor::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 4px;
  height: 4px;
  background-color: var(--blue);
  border-radius: 50%;
  transition: background-color 0.2s ease, width 0.2s ease, height 0.2s ease;
}

/* Ajuste opcional: quando passar por cima de links, a bolinha e o círculo mudam juntos */
body.cursor-hover .custom-cursor::after {
  background-color: var(--cyan);
  width: 6px;
  height: 6px;
}

@media (hover: hover) {
  .btn-primary:hover {
    filter: brightness(1.09);
    transform: translateY(-1px);
  }

  .btn-ghost:hover {
    border-color: var(--blue);
    color: var(--blue);
  }

  .btn-wa:hover {
    filter: brightness(1.06);
  }
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  background: rgba(18, 18, 24, .86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav-in {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 60px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.mark {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  flex: none;
  object-fit: cover;
}

.brand b {
  font-family: 'Poiret One', cursive;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: .09em;
  text-transform: uppercase;
  line-height: 1;
  display: block;
}

.brand small {
  font-family: 'IBM Plex Mono', monospace;
  font-size: .56rem;
  letter-spacing: .18em;
  color: var(--dim);
  text-transform: uppercase;
  display: block;
  margin-top: 2px;
}

.nav-cta {
  margin-left: auto;
}

.nav-cta .btn {
  min-height: 40px;
  padding: 8px 16px;
  font-size: .86rem;
  border-radius: 9px;
}

.btn-pulse {
  animation: pulso 2.6s ease-in-out infinite;
}

@keyframes pulso {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(46, 241, 255, 0.5);
    transform: scale(1);
  }

  50% {
    box-shadow: 0 0 0 9px rgba(46, 155, 255, 0);
    transform: scale(1.035);
  }
}

header {
  padding: calc(60px + 32px) 0 8px;
  position: relative;
  overflow: hidden;
}

header::before {
  content: '';
  position: absolute;
  inset: -10% 0 auto;
  height: 420px;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(60% 60% at 30% 0%, rgba(139, 92, 246, .22), transparent 70%),
    radial-gradient(50% 50% at 80% 10%, rgba(77, 217, 232, .14), transparent 70%);
}

.hero h1 {
  margin: 14px 0 16px;
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(100deg, var(--violet), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
}

.trust {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  margin-top: 20px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: .7rem;
  letter-spacing: .05em;
  color: var(--dim);
}

.trust i {
  color: var(--blue);
  font-style: normal;
}

.demo {
  margin-top: 32px;
}

.demo-frame {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
  box-shadow: 0 20px 50px -24px rgba(0, 0, 0, .9);
  aspect-ratio: 16/9;
  user-select: none;
  touch-action: pan-y;
  cursor: ew-resize;
}

.demo-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.layer-top {
  position: absolute;
  inset: 0;
  clip-path: inset(0 50% 0 0);
}

.cbar {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--blue);
  z-index: 4;
  box-shadow: 0 0 16px rgba(46, 155, 255, .7);
}

.chandle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue);
  color: #06121F;
  display: grid;
  place-items: center;
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 6px 22px rgba(0, 0, 0, .55);
  pointer-events: none;
}

.clabel {
  position: absolute;
  bottom: 10px;
  z-index: 6;
  font-family: 'IBM Plex Mono', monospace;
  font-size: .6rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  background: rgba(0, 0, 0, .65);
  padding: 5px 10px;
  border-radius: 20px;
}

.clabel.l {
  left: 10px;
}

.clabel.r {
  right: 10px;
}

.demo-cap {
  margin-top: 10px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: .66rem;
  letter-spacing: .1em;
  color: var(--dim);
  text-transform: uppercase;
  text-align: center;
}

.marquee {
  position: relative;
  overflow: hidden;
  padding: 4px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);

  /* Bloqueadores de barra de rolagem (Foco no Edge/Chrome) */
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Força a barra a sumir de vez no Edge moderno */
.marquee::-webkit-scrollbar {
  display: none;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: slide 52s linear infinite;
  will-change: transform;
}

.marquee-track .aud {
  margin-right: 14px;
}

/* Mantive o seu hover, mas lembre-se que ele pode ser o motivo do cliente achar que está travado */
.marquee:hover .marquee-track,
.marquee:focus-within .marquee-track {
  animation-play-state: paused;
}

@keyframes slide {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.aud {
  flex: 0 0 232px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--panel);
  display: flex;
  flex-direction: column;
}

.aud-media {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--panel-2);
}

.aud-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.aud-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 12, 16, .94), rgba(12, 12, 16, .5) 34%, transparent 62%);
}

.aud-media h3 {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 12px;
  z-index: 2;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: .98rem;
  font-weight: 600;
}

.aud p {
  padding: 13px 15px 17px;
  color: var(--dim);
  font-size: .88rem;
  line-height: 1.5;
}

.cta-band {
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(46, 155, 255, .1), transparent 60%);
}

.cta-box {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  border: 1px solid rgba(46, 155, 255, .35);
  border-radius: var(--radius);
  padding: 26px 22px;
  background: var(--panel);
}

.cta-box h2 {
  font-size: clamp(1.4rem, 5.5vw, 2.1rem);
  margin-bottom: 6px;
}

.cta-box p {
  color: var(--dim);
  font-size: .96rem;
}

.cta-box .btn {
  width: 100%;
}

.steps,
.feats {
  display: grid;
  gap: 14px;
}

.step,
.feat {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  background: var(--panel);
}

.steps {
  counter-reset: s;
}

.step::before {
  counter-increment: s;
  content: counter(s, decimal-leading-zero);
  font-family: 'IBM Plex Mono', monospace;
  font-size: .74rem;
  letter-spacing: .16em;
  color: var(--blue);
  display: block;
  margin-bottom: 12px;
}

.step p,
.feat p {
  color: var(--dim);
  font-size: .94rem;
  margin-top: 7px;
}

.feat .ico {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  background: rgba(46, 155, 255, .13);
  border: 1px solid rgba(46, 155, 255, .32);
  color: var(--blue);
}

.tools-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  overflow-x: auto;
  padding: 2px 0 10px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 20px;
}

.tools-tabs::-webkit-scrollbar {
  display: none;
}

.tool-tab {
  flex: 0 0 auto;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 26px;
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--dim);
  font: inherit;
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .18s;
  -webkit-tap-highlight-color: transparent;
}

.tool-tab[aria-selected="true"] {
  background: var(--blue);
  border-color: var(--blue);
  color: #06121F;
  box-shadow: 0 0 22px rgba(46, 155, 255, .3);
}

.tools-hint {
  text-align: center;
  font-family: 'IBM Plex Mono', monospace;
  font-size: .64rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 20px;
}

.tool-panel {
  display: none;
  gap: 20px;
}

.tool-panel.on {
  display: grid;
}

.window {
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: var(--panel-2);
  box-shadow: 0 20px 46px -26px rgba(0, 0, 0, .9);
}

.window-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 12px;
  background: var(--panel-2);
  border-bottom: 1px solid var(--line);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex: none;
}

.dot.r {
  background: #FF5F57;
}

.dot.y {
  background: #FEBC2E;
}

.dot.g {
  background: #28C840;
}

.window-title {
  flex: 1;
  text-align: center;
  font-family: 'IBM Plex Mono', monospace;
  font-size: .58rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--dim);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.window-body {
  position: relative;
  aspect-ratio: 16/9;
  background: #0C0C10;
}

.window-body video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tool-copy .count {
  font-family: 'IBM Plex Mono', monospace;
  font-size: .76rem;
  letter-spacing: .14em;
  color: var(--blue);
  display: block;
  margin-bottom: 10px;
}

.tool-copy h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  line-height: 1.15;
  margin-bottom: 10px;
}

.tool-copy p {
  color: var(--dim);
  font-size: .96rem;
}

.tool-copy strong {
  color: var(--text);
  font-weight: 600;
}

.deliver {
  display: grid;
  gap: 14px;
}

.dcard {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  background: var(--panel);
}

.dcard.now {
  border-color: rgba(77, 217, 232, .45);
}

.dcard .when {
  font-family: 'IBM Plex Mono', monospace;
  font-size: .66rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 9px;
  display: block;
}

.dcard.later .when {
  color: var(--violet);
}

.dcard p {
  color: var(--dim);
  font-size: .92rem;
  margin-top: 7px;
}

.offer {
  display: grid;
  gap: 22px;
}

.stack {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--panel);
}

.stack li {
  display: flex;
  gap: 12px;
  padding: 15px 18px;
  border-bottom: 1px solid var(--line);
  list-style: none;
  align-items: flex-start;
}

.stack li:last-child {
  border-bottom: 0;
}

.stack .tick {
  color: var(--blue);
  flex: none;
  margin-top: 2px;
}

.stack b {
  display: block;
  font-weight: 600;
  font-size: .96rem;
}

.stack small {
  color: var(--dim);
  font-size: .85rem;
  display: block;
  margin-top: 3px;
  line-height: 1.5;
}

.price-card {
  border: 1px solid rgba(46, 155, 255, .42);
  border-radius: var(--radius);
  padding: 26px 22px;
  background: linear-gradient(180deg, rgba(46, 155, 255, .14), var(--panel) 58%);
}

.price-card .tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: .64rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--blue);
}

.parcela {
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
  margin: 10px 0 2px;
}

.parcela .x {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--dim);
}

.parcela .v {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(2.6rem, 11vw, 3.4rem);
  line-height: 1;
  letter-spacing: -.03em;
}

.parcela .v sup {
  font-size: 1rem;
  vertical-align: super;
  margin-right: 3px;
}

.avista {
  color: var(--dim);
  font-size: .95rem;
  margin-bottom: 4px;
}

.avista b {
  color: var(--text);
  font-weight: 600;
}

.price-card .note {
  color: var(--dim);
  font-size: .84rem;
  margin-bottom: 18px;
}

.guarantee {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--dim);
  font-size: .85rem;
  line-height: 1.5;
}

.guarantee svg {
  flex: none;
  color: var(--ok);
  margin-top: 2px;
}

.faq {
  max-width: 800px;
}

details {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel);
  margin-bottom: 9px;
}

summary {
  padding: 17px 18px;
  cursor: pointer;
  font-weight: 600;
  font-size: .96rem;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 52px;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: '+';
  margin-left: auto;
  color: var(--blue);
  font-size: 1.3rem;
  line-height: 1;
}

details[open] summary::after {
  content: '−';
}

details p {
  padding: 0 18px 17px;
  color: var(--dim);
  font-size: .93rem;
}

.faq-help {
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  background: var(--panel);
  text-align: center;
}

.faq-help p {
  color: var(--dim);
  font-size: .93rem;
  margin-bottom: 14px;
}

.final {
  text-align: center;
  border-top: 1px solid var(--line);
  background: radial-gradient(70% 100% at 50% 0%, rgba(139, 92, 246, .16), transparent 70%);
}

.final h2 {
  max-width: 20ch;
  margin-inline: auto;
}

.final .lead {
  margin: 14px auto 24px;
}

footer {
  border-top: 1px solid var(--line);
  padding: 28px 0 34px;
  color: var(--dim);
  font-size: .84rem;
}

.foot-in {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: center;
}

.foot-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  justify-content: center;
}

.foot-links a {
  color: var(--dim);
  text-decoration: none;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
}

.foot-links a:hover {
  color: var(--blue);
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s, transform .6s;
}

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

@media (min-width: 600px) {
  :root {
    --pad: 26px;
  }

  .hero-cta {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .hero-cta .btn {
    flex: 0 0 auto;
  }

  .steps,
  .feats,
  .deliver {
    grid-template-columns: repeat(2, 1fr);
  }

  .aud {
    flex-basis: 250px;
  }

  .cta-box {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 30px;
  }

  .cta-box .btn {
    width: auto;
    flex: 0 0 auto;
  }

  .foot-in {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

@media (min-width: 900px) {
  body {
    font-size: 17px;
    padding-bottom: 0;
  }

  .brand b {
    font-size: 1.28rem;
  }

  header {
    padding: calc(60px + 64px) 0 12px;
  }

  .feats,
  .steps,
  .deliver {
    grid-template-columns: repeat(3, 1fr);
  }

  .tool-panel.on {
    grid-template-columns: 1.35fr .65fr;
    align-items: center;
  }

  .offer {
    grid-template-columns: 1.15fr .85fr;
    align-items: start;
  }

  .price-card {
    position: sticky;
    top: 86px;
  }

  .sec-head {
    margin-bottom: 44px;
  }

  .aud {
    flex-basis: 264px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }

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

  html {
    scroll-behavior: auto;
  }

  .marquee-track {
    animation: none;
  }

  .marquee {
    overflow-x: auto;
  }
}