﻿:root {
  --bg: #030408;
  --panel: #090d14;
  --panel-2: #0f1724;
  --line: rgba(255, 255, 255, 0.1);
  --text: #f8fafc;
  --muted: #9aa8ba;
  --dim: #607084;
  --cyan: #ff2da7;
  --blue: #ff8a00;
  --purple: #8b2cff;
  --green: #14d990;
  --danger: #ff5277;
  --radius: 18px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 70% 0%, rgba(255, 45, 167, 0.18), transparent 34rem),
    radial-gradient(circle at 15% 22rem, rgba(255, 138, 0, 0.14), transparent 30rem),
    radial-gradient(circle at 45% 8rem, rgba(139, 44, 255, 0.12), transparent 28rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  margin: 0;
  padding: 14px max(22px, calc((100vw - var(--max)) / 2 + 22px));
  background: rgba(3, 4, 8, 0.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.brand img {
  display: block;
  width: auto;
  height: 62px;
  max-width: min(360px, 62vw);
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(255, 45, 167, 0.34));
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.nav a:hover {
  color: var(--cyan);
}

i[data-lucide] {
  width: 1em;
  height: 1em;
  stroke-width: 2.4;
  vertical-align: -0.14em;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  padding: 6px 7px 6px 15px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 47, 154, 0.24), rgba(255, 138, 0, 0.16)),
    rgba(255, 255, 255, 0.04);
  box-shadow: 0 12px 34px rgba(255, 47, 154, 0.16);
}

.nav-cta span {
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.82);
}

.nav-cta strong {
  display: inline-grid;
  place-items: center;
  min-width: 58px;
  min-height: 28px;
  border-radius: 999px;
  color: #fff;
  font-size: 0.9rem;
  background: linear-gradient(135deg, #ff2fa3, #ff8a00);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.nav-cta:hover {
  color: #fff;
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.34);
  box-shadow: 0 16px 42px rgba(255, 47, 154, 0.22);
}

main {
  overflow: hidden;
}

.hero,
.section,
.final-cta {
  max-width: var(--max);
  margin: 0 auto;
  padding: 82px 22px;
}

.value-strip {
  max-width: var(--max);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: -28px auto 24px;
  padding: 0 22px;
}

.value-strip article {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 45, 167, 0.16);
  border-radius: 16px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 45, 167, 0.07), transparent),
    rgba(255, 255, 255, 0.035);
}

.value-strip article > i {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 12px;
  color: var(--cyan);
}

.value-strip strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
  font-size: 1.1rem;
}

.value-strip span {
  color: var(--muted);
  font-size: 0.86rem;
}

.hero {
  min-height: calc(100svh - 72px);
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  gap: 38px;
  align-items: center;
  padding-top: 42px;
  padding-bottom: 70px;
}

.hero > * {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 18px;
  font-size: clamp(2.35rem, 4.65vw, 4.9rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.8vw, 4rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.hero-subtitle,
.section-heading p + h2 + p,
.demo-copy p,
.manual-warning p,
.price-subtitle,
.final-cta p {
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 18px;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 12px;
  padding: 0 18px;
  font-weight: 900;
}

.btn-primary {
  color: #001017;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  box-shadow: 0 16px 40px rgba(255, 45, 167, 0.18);
}

.cta-main {
  position: relative;
  min-height: 58px;
  padding: 0 26px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 16px;
  color: #fff;
  font-size: 1.02rem;
  font-weight: 1000;
  letter-spacing: 0;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.18);
  background: linear-gradient(135deg, #ff2fa3 0%, #ff4778 42%, #ff8a00 100%);
  box-shadow:
    0 0 0 5px rgba(255, 47, 154, 0.12),
    0 18px 48px rgba(255, 47, 154, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.cta-main::after {
  content: "→";
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  margin-left: 12px;
  border-radius: 999px;
  color: #ff2fa3;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
}

.cta-main:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 0 7px rgba(255, 47, 154, 0.16),
    0 24px 62px rgba(255, 47, 154, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

.btn-secondary {
  color: var(--text);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.btn-primary:hover,
.btn-secondary:hover {
  transform: translateY(-1px);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 11px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.86rem;
  font-weight: 700;
}

.trust-row i {
  color: var(--cyan);
}

.hero-product {
  display: flex;
  justify-content: center;
}

.extension-shell {
  width: min(430px, 100%);
  max-width: 100%;
  border: 1px solid rgba(255, 45, 167, 0.22);
  border-radius: 28px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 45, 167, 0.08), transparent 34%),
    rgba(5, 8, 15, 0.92);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.48), 0 0 50px rgba(255, 45, 167, 0.11);
}

.mini-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.mini-header img {
  width: auto;
  height: 58px;
  max-width: calc(100% - 40px);
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(255, 45, 167, 0.28));
}

.mini-header span {
  color: var(--dim);
  font-size: 0.78rem;
}

.search-box,
.lead-card,
.stats div,
.button-grid span,
.button-grid strong {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
}

.search-box {
  display: grid;
  gap: 8px;
  padding: 15px;
  margin-bottom: 12px;
}

.search-box span,
.lead-card small {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.search-box strong {
  color: var(--text);
}

.button-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 12px;
}

.button-grid span,
.button-grid strong {
  padding: 12px;
  text-align: center;
  font-size: 0.86rem;
  cursor: default;
  user-select: none;
}

.button-grid strong {
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, 0.82);
  border-color: rgba(255, 255, 255, 0.13);
  background: rgba(255, 47, 154, 0.12);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}

.stats div {
  padding: 14px 10px;
  text-align: center;
}

.stats strong {
  display: block;
  color: var(--cyan);
  font-size: 1.35rem;
}

.stats small {
  color: var(--dim);
  font-size: 0.68rem;
  text-transform: uppercase;
}

.lead-card {
  padding: 16px;
}

.lead-card h3 {
  margin: 10px 0 2px;
}

.lead-card p {
  color: var(--cyan);
}

.message-preview {
  margin: 14px 0;
  border-radius: 12px;
  padding: 12px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
  line-height: 1.45;
}

.lead-card button {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 47, 154, 0.13);
  font-weight: 900;
  cursor: default;
  pointer-events: none;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-heading.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.problem-grid,
.feature-grid,
.steps,
.objection-grid,
.compare-grid,
.proof-grid,
.bonus-grid {
  display: grid;
  gap: 14px;
}

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

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

.proof-grid,
.bonus-grid {
  grid-template-columns: repeat(3, 1fr);
}

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

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

.compare-grid {
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.problem-grid article,
.feature-grid article,
.steps article,
.objection-grid article,
.proof-grid article,
.bonus-grid article,
.compare-card,
.guarantee-card,
.price-card,
.video-placeholder,
.manual-warning,
details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.problem-grid article,
.feature-grid article,
.steps article,
.objection-grid article,
.proof-grid article,
.bonus-grid article,
.compare-card {
  padding: 22px;
}

.problem-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 1.05rem;
}

.problem-grid p,
.feature-grid p,
.steps p,
.objection-grid p,
.proof-grid p,
.bonus-grid p,
details p,
.guarantee-card p {
  color: var(--muted);
  line-height: 1.62;
}

.card-icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  border: 1px solid rgba(255, 45, 167, 0.22);
  border-radius: 14px;
  color: var(--cyan);
  background:
    linear-gradient(135deg, rgba(255, 45, 167, 0.13), rgba(255, 138, 0, 0.08)),
    rgba(255, 255, 255, 0.03);
  font-size: 1.15rem;
  font-weight: 1000;
  letter-spacing: 0.04em;
}

.card-icon i {
  width: 21px;
  height: 21px;
}

.before-after {
  padding-top: 44px;
}

.compare-card {
  position: relative;
  overflow: hidden;
}

.compare-card span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 14px;
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--cyan);
  background: rgba(255, 45, 167, 0.08);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.muted-card {
  border-color: rgba(255, 82, 119, 0.3);
  background:
    linear-gradient(180deg, rgba(255, 82, 119, 0.12), transparent 60%),
    rgba(255, 255, 255, 0.035);
}

.muted-card span {
  color: #ff8ca6;
  background: rgba(255, 82, 119, 0.12);
}

.muted-card li::before {
  color: #ff6c8c;
}

.compare-card ul {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.compare-card li {
  color: var(--muted);
  line-height: 1.45;
}

.compare-card li::before {
  content: "•";
  margin-right: 8px;
  color: var(--cyan);
}

.highlight-card {
  border-color: rgba(20, 217, 144, 0.34);
  background:
    linear-gradient(180deg, rgba(20, 217, 144, 0.13), transparent 60%),
    rgba(255, 255, 255, 0.035);
  box-shadow: 0 22px 70px rgba(20, 217, 144, 0.08);
}

.highlight-card span {
  color: #5ff0b8;
  background: rgba(20, 217, 144, 0.12);
}

.highlight-card li::before {
  color: var(--green);
}

.demo {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 30px;
  align-items: center;
}

.visual-proof {
  padding-top: 44px;
}

.proof-grid article,
.bonus-grid article {
  border-color: rgba(255, 45, 167, 0.15);
}

.proof-screen {
  min-height: 180px;
  display: grid;
  align-content: start;
  gap: 10px;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 45, 167, 0.18);
  border-radius: 16px;
  padding: 16px;
  background:
    linear-gradient(145deg, rgba(255, 45, 167, 0.14), transparent 46%),
    linear-gradient(315deg, rgba(255, 138, 0, 0.18), transparent 42%),
    rgba(3, 4, 8, 0.78);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.mock-toolbar {
  display: flex;
  gap: 5px;
  margin-bottom: 2px;
}

.mock-toolbar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.24);
}

.mock-search,
.mock-panel-title,
.mock-dm-head,
.mock-floating,
.mock-input {
  display: flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 10px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.055);
  font-size: 0.82rem;
  font-weight: 800;
}

.mock-result,
.mock-lead,
.mock-bubble {
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 10px;
  padding: 10px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.035);
  font-size: 0.82rem;
}

.mock-result.active,
.mock-floating {
  border-color: rgba(255, 45, 167, 0.28);
  color: var(--cyan);
}

.mock-floating {
  margin-top: auto;
  color: rgba(255, 255, 255, 0.84);
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 47, 154, 0.12);
  cursor: default;
  user-select: none;
}

.mock-lead {
  display: flex;
  justify-content: space-between;
  gap: 8px;
}

.mock-lead strong {
  color: var(--text);
}

.mock-lead span {
  color: var(--green);
  font-size: 0.74rem;
}

.mock-lead.muted span {
  color: var(--danger);
}

.mock-bubble {
  margin-left: 28px;
  border-color: rgba(255, 45, 167, 0.18);
  color: var(--text);
  background: rgba(255, 138, 0, 0.18);
}

.mock-input {
  margin-top: auto;
  color: var(--muted);
}

.video-placeholder {
  min-height: 390px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  padding: 28px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255, 45, 167, 0.08), transparent),
    rgba(255, 255, 255, 0.03);
}

.play-button {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  position: relative;
}

.play-button::after {
  content: "";
  position: absolute;
  left: 31px;
  top: 24px;
  width: 0;
  height: 0;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 20px solid #001017;
}

.video-placeholder span {
  color: var(--muted);
}

.video-frame {
  margin: 0;
}

.video-player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
}

.sales-video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255, 45, 167, 0.26);
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 45, 167, 0.16), transparent 38%),
    linear-gradient(145deg, rgba(49, 0, 98, 0.34), rgba(8, 8, 12, 0.96));
  box-shadow: 0 22px 70px rgba(255, 45, 167, 0.16);
  object-fit: contain;
}

.video-overlay-play {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  width: 100%;
  border: 0;
  color: #fff;
  cursor: pointer;
  text-align: center;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 47, 154, 0.32), transparent 34%),
    linear-gradient(180deg, rgba(5, 5, 9, 0.3), rgba(5, 5, 9, 0.82));
  backdrop-filter: blur(1px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.video-overlay-play:hover {
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 138, 0, 0.35), transparent 36%),
    linear-gradient(180deg, rgba(5, 5, 9, 0.22), rgba(5, 5, 9, 0.78));
}

.video-overlay-play.is-hidden {
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  transform: scale(1.02);
}

.video-overlay-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: clamp(74px, 10vw, 102px);
  height: clamp(74px, 10vw, 102px);
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--pink), var(--orange));
  box-shadow: 0 18px 55px rgba(255, 47, 154, 0.42);
}

.video-overlay-icon::after {
  content: "";
  margin-left: 6px;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  border-left: 24px solid #fff;
}

.video-overlay-play strong {
  font-size: clamp(1.7rem, 4.4vw, 3.15rem);
  line-height: 0.95;
}

.video-overlay-play small {
  max-width: 430px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(0.82rem, 1.5vw, 1rem);
  line-height: 1.35;
}

.video-frame figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
  text-align: center;
}

.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  list-style: none;
}

.check-list li {
  color: var(--muted);
  line-height: 1.5;
}

.check-list li::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  margin-right: 8px;
  border-radius: 50%;
  color: #001017;
  background: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
}

.steps article span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: #001017;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  font-weight: 900;
}

.manual-warning {
  display: grid;
  grid-template-columns: auto 0.85fr 1.15fr;
  gap: 24px;
  align-items: center;
  padding: 30px;
  border-color: rgba(255, 45, 167, 0.26);
  background:
    linear-gradient(135deg, rgba(255, 45, 167, 0.1), transparent 48%),
    rgba(255, 255, 255, 0.035);
}

.warning-icon,
.guarantee-seal {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255, 45, 167, 0.24);
  border-radius: 18px;
  color: var(--cyan);
  background: rgba(255, 45, 167, 0.08);
}

.warning-icon i,
.guarantee-seal i {
  width: 29px;
  height: 29px;
}

.pricing {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 20px;
  align-items: stretch;
}

.price-card,
.guarantee-card {
  padding: 30px;
}

.price-card {
  border-color: rgba(255, 45, 167, 0.28);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
}

.bonus {
  padding-top: 46px;
}

.bonus-grid article {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 45, 167, 0.1), transparent 50%),
    rgba(255, 255, 255, 0.035);
}

.bonus-grid article::after {
  content: "";
  position: absolute;
  right: -28px;
  top: -28px;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: rgba(255, 45, 167, 0.08);
}

.price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 22px 0;
}

.price span {
  color: var(--muted);
  font-weight: 900;
}

.price strong {
  font-size: clamp(4rem, 11vw, 7rem);
  line-height: 0.86;
  letter-spacing: -0.06em;
}

.price small {
  color: var(--muted);
}

.price-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -8px 0 22px;
}

.price-badges span {
  border: 1px solid rgba(255, 45, 167, 0.24);
  border-radius: 999px;
  padding: 8px 11px;
  color: var(--cyan);
  background: rgba(255, 45, 167, 0.07);
  font-size: 0.8rem;
  font-weight: 900;
}

.full {
  width: 100%;
  margin-top: 20px;
}

.microcopy {
  margin: 12px 0 0;
  color: var(--dim);
  font-size: 0.86rem;
  text-align: center;
}

.guarantee-card h3 + p {
  margin-bottom: 26px;
}

.offer-list {
  display: grid;
  gap: 10px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.offer-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  color: var(--muted);
  line-height: 1.45;
}

.offer-list i {
  margin-top: 2px;
  color: var(--cyan);
}

.offer-visual-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.offer-mini-card {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 138px;
  border: 1px solid rgba(255, 45, 167, 0.16);
  border-radius: 16px;
  padding: 16px;
  background:
    linear-gradient(145deg, rgba(49, 0, 98, 0.28), transparent 58%),
    rgba(255, 255, 255, 0.03);
}

.offer-mini-card.span-2 {
  grid-column: 1 / -1;
  grid-template-columns: auto 1fr;
  align-items: start;
  min-height: auto;
}

.offer-mini-card h3 {
  margin: 0;
  font-size: 1rem;
}

.offer-mini-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.52;
}

.offer-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 45, 167, 0.28);
  border-radius: 14px;
  color: var(--cyan);
  background:
    radial-gradient(circle at 35% 20%, rgba(255, 255, 255, 0.18), transparent 26px),
    linear-gradient(135deg, rgba(255, 45, 167, 0.24), rgba(255, 138, 0, 0.14));
}

.offer-icon i,
.offer-icon svg {
  width: 21px;
  height: 21px;
}

.warning-mini {
  border-color: rgba(255, 82, 119, 0.28);
  background:
    linear-gradient(145deg, rgba(255, 82, 119, 0.12), transparent 58%),
    rgba(255, 255, 255, 0.03);
}

.warning-mini .offer-icon {
  border-color: rgba(255, 82, 119, 0.32);
  color: #ff8ca6;
  background: rgba(255, 82, 119, 0.12);
}

.objections {
  padding-top: 46px;
}

.objection-grid article {
  border-color: rgba(255, 45, 167, 0.16);
}

.objection-grid h3 {
  color: var(--text);
}

.guarantee-band {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: center;
  border: 1px solid rgba(20, 217, 144, 0.32);
  border-radius: 24px;
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(20, 217, 144, 0.14), transparent 56%),
    rgba(255, 255, 255, 0.035);
  box-shadow: 0 24px 80px rgba(20, 217, 144, 0.08);
}

.guarantee-band h2 {
  max-width: 850px;
}

.guarantee-band p:last-child {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.guarantee-band .guarantee-seal {
  border-color: rgba(20, 217, 144, 0.34);
  color: var(--green);
  background: rgba(20, 217, 144, 0.1);
}

.faq {
  max-width: 900px;
}

details {
  padding: 20px 22px;
  margin-bottom: 10px;
}

summary {
  cursor: pointer;
  font-weight: 900;
}

details p {
  margin: 12px 0 0;
}

.final-cta {
  max-width: 880px;
  text-align: center;
}

.final-cta img {
  width: min(420px, 86vw);
  margin-bottom: 18px;
  filter: drop-shadow(0 0 22px rgba(255, 45, 167, 0.25));
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 28px 22px 44px;
  border-top: 1px solid var(--line);
  color: var(--dim);
  font-size: 0.9rem;
}

@media (max-width: 920px) {
  .site-header {
    position: static;
    justify-content: center;
    padding: 12px 18px;
  }

  .nav {
    display: none;
  }

  .hero,
  .demo,
  .manual-warning,
  .guarantee-band,
  .pricing,
  .compare-grid,
  .value-strip,
  .proof-grid,
  .bonus-grid {
    grid-template-columns: 1fr;
  }

  .problem-grid,
  .feature-grid,
  .steps,
  .objection-grid,
  .proof-grid,
  .bonus-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 34px;
    padding-bottom: 42px;
  }
}

@media (max-width: 720px) {
  body {
    background:
      radial-gradient(circle at 50% 0%, rgba(255, 45, 167, 0.18), transparent 22rem),
      var(--bg);
  }

  .brand img {
    height: 48px;
    max-width: min(330px, 84vw);
  }

  .hero,
  .section,
  .final-cta {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero {
    gap: 26px;
    text-align: center;
  }

  .section-heading {
    text-align: center;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.25rem, 13.5vw, 3.7rem);
    line-height: 1.02;
    letter-spacing: -0.035em;
  }

  h2 {
    font-size: clamp(1.85rem, 9.5vw, 2.7rem);
    line-height: 1.04;
    letter-spacing: -0.032em;
  }

  .eyebrow {
    margin-bottom: 10px;
    font-size: 0.68rem;
    letter-spacing: 0.1em;
  }

  .hero-subtitle,
  .demo-copy p,
  .manual-warning p,
  .price-subtitle,
  .final-cta p {
    font-size: 1rem;
    line-height: 1.55;
  }

  .hero-actions,
  .trust-row {
    justify-content: center;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    min-height: 50px;
  }

  .trust-row span {
    font-size: 0.78rem;
    padding: 7px 9px;
  }

  .extension-shell {
    border-radius: 22px;
    padding: 14px;
  }

  .mini-header {
    margin-bottom: 12px;
  }

  .mini-header img {
    height: 46px;
    max-width: calc(100% - 38px);
  }

  .search-box,
  .lead-card {
    padding: 13px;
  }

  .button-grid {
    grid-template-columns: 1fr;
  }

  .button-grid strong {
    grid-column: auto;
  }

  .stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .stats div {
    padding: 11px 6px;
  }

  .stats strong {
    font-size: 1.12rem;
  }

  .value-strip {
    margin: 0 auto 10px;
  }

  .value-strip article,
  .problem-grid article,
  .feature-grid article,
  .steps article,
  .objection-grid article,
  .proof-grid article,
  .bonus-grid article,
  .compare-card,
  .price-card,
  .guarantee-card {
    padding: 18px;
    border-radius: 16px;
  }

  .section-heading {
    margin-bottom: 24px;
  }

  .problem-grid,
  .feature-grid,
  .steps,
  .objection-grid,
  .compare-grid,
  .proof-grid,
  .bonus-grid {
    gap: 10px;
  }

  .demo {
    gap: 20px;
  }

  .video-placeholder {
    min-height: 230px;
    padding: 20px;
  }

  .sales-video {
    border-radius: 18px;
  }

  .video-player-shell {
    border-radius: 18px;
  }

  .video-overlay-play {
    gap: 8px;
    padding: 20px;
  }

  .video-overlay-icon {
    width: 68px;
    height: 68px;
  }

  .video-overlay-icon::after {
    border-top-width: 12px;
    border-bottom-width: 12px;
    border-left-width: 18px;
  }

  .video-frame figcaption {
    font-size: 0.86rem;
    text-align: left;
  }

  .play-button {
    width: 62px;
    height: 62px;
  }

  .play-button::after {
    left: 26px;
    top: 20px;
    border-top-width: 11px;
    border-bottom-width: 11px;
    border-left-width: 17px;
  }

  .proof-screen {
    min-height: 145px;
  }

  .manual-warning {
    padding: 22px;
    text-align: center;
  }

  .warning-icon,
  .guarantee-seal {
    width: 48px;
    height: 48px;
    margin: 0 auto;
  }

  .guarantee-band {
    padding: 24px 20px;
    text-align: center;
  }

  .guarantee-band p:last-child {
    font-size: 1rem;
  }

  .price {
    margin: 18px 0;
  }

  .price strong {
    font-size: clamp(4rem, 24vw, 5.8rem);
  }

  .price-badges {
    margin-bottom: 18px;
  }

  details {
    padding: 17px 18px;
  }

  summary {
    line-height: 1.35;
  }

  .final-cta img {
    width: min(310px, 82vw);
  }
}

@media (max-width: 560px) {
  .brand img {
    width: auto;
    height: 44px;
    max-width: 82vw;
  }

  .hero,
  .section,
  .final-cta {
    padding: 42px 16px;
  }

  .value-strip {
    padding-inline: 18px;
  }

  .hero-actions {
    display: grid;
  }

  .site-header {
    padding: 10px 16px;
  }

  .hero {
    padding-top: 28px;
  }

  .hero-product {
    margin-inline: -2px;
  }

  .extension-shell {
    box-shadow: 0 18px 52px rgba(0, 0, 0, 0.42), 0 0 34px rgba(255, 45, 167, 0.08);
  }

  .lead-card button {
    min-height: 44px;
    font-size: 0.88rem;
  }

  .card-icon {
    width: 34px;
    height: 34px;
    margin-bottom: 12px;
  }

  .check-list li {
    font-size: 0.94rem;
  }

  .price-card,
  .guarantee-card {
    padding: 20px;
  }

  .price small {
    display: block;
  }

  footer {
    display: grid;
    padding: 24px 16px 34px;
  }
}

/* ProspectaIG polish pass */
:root {
  --purple-deep: #310062;
  --section-soft: rgba(49, 0, 98, 0.18);
}

.icon-fallback {
  display: inline-grid;
  place-items: center;
  font-style: normal;
  font-weight: 1000;
  line-height: 1;
}

i[data-lucide].icon-fallback {
  color: currentColor;
}

.site-header {
  background:
    linear-gradient(90deg, rgba(49, 0, 98, 0.34), rgba(3, 4, 8, 0.82) 34%, rgba(49, 0, 98, 0.22)),
    rgba(3, 4, 8, 0.86);
}

.hero {
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 24px 22px auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 45, 167, 0.45), rgba(255, 138, 0, 0.22), transparent);
  pointer-events: none;
}

.section {
  padding-top: 72px;
  padding-bottom: 72px;
}

.section-heading {
  max-width: 760px;
}

.section-heading.center {
  max-width: 720px;
}

.section-heading h2 {
  text-wrap: balance;
}

.problem,
.visual-proof,
.features,
.objections {
  border-top: 1px solid rgba(255, 255, 255, 0.035);
}

.problem-grid article,
.feature-grid article,
.steps article,
.objection-grid article,
.proof-grid article,
.bonus-grid article,
.compare-card,
.guarantee-card,
.price-card,
.video-placeholder,
.manual-warning,
details {
  background:
    linear-gradient(145deg, rgba(49, 0, 98, 0.2), transparent 58%),
    rgba(255, 255, 255, 0.032);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.problem-grid article,
.feature-grid article,
.bonus-grid article,
.objection-grid article {
  min-height: 178px;
}

.card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  background:
    radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.18), transparent 28px),
    linear-gradient(135deg, rgba(255, 45, 167, 0.28), rgba(255, 138, 0, 0.18));
}

.card-icon svg,
.card-icon .icon-fallback {
  width: 23px;
  height: 23px;
}

.value-strip article {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 12px;
  align-items: center;
}

.value-strip article > i,
.value-strip article > svg {
  grid-row: span 2;
  margin: 0;
}

.value-strip strong {
  margin: 0;
  font-size: 1.18rem;
}

.compare-card {
  padding: 28px;
}

.compare-card h3 {
  font-size: 1.35rem;
}

.video-placeholder {
  min-height: 340px;
  border-color: rgba(255, 45, 167, 0.22);
  background:
    radial-gradient(circle at 50% 40%, rgba(255, 45, 167, 0.18), transparent 12rem),
    linear-gradient(145deg, rgba(49, 0, 98, 0.34), rgba(255, 138, 0, 0.05)),
    rgba(255, 255, 255, 0.025);
}

.visual-proof .section-heading h2,
.bonus .section-heading h2,
.objections .section-heading h2 {
  font-size: clamp(1.85rem, 3.2vw, 3.2rem);
}

.proof-grid article {
  display: grid;
  align-content: start;
}

.proof-screen {
  min-height: 210px;
  border-color: rgba(255, 45, 167, 0.24);
}

.manual-warning {
  border-color: rgba(255, 45, 167, 0.32);
  box-shadow: 0 22px 70px rgba(49, 0, 98, 0.22);
}

.pricing {
  align-items: start;
}

.price-card {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 138, 0, 0.16), transparent 10rem),
    linear-gradient(145deg, rgba(49, 0, 98, 0.36), rgba(255, 45, 167, 0.07)),
    rgba(255, 255, 255, 0.035);
}

.price-card::after {
  content: "Vitalício";
  position: absolute;
  top: 22px;
  right: -44px;
  width: 170px;
  transform: rotate(36deg);
  padding: 7px 0;
  color: #170018;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  text-align: center;
  font-size: 0.72rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.guarantee-card {
  display: grid;
  gap: 8px;
}

.guarantee-card h3 {
  margin-top: 8px;
  color: var(--text);
}

.bonus-grid article {
  border-color: rgba(255, 138, 0, 0.18);
}

.guarantee-band {
  margin-top: 26px;
  margin-bottom: 20px;
}

.faq {
  padding-top: 58px;
}

details {
  background: rgba(255, 255, 255, 0.026);
}

summary {
  list-style-position: outside;
}

@media (min-width: 921px) {
  .problem-grid,
  .feature-grid,
  .proof-grid,
  .bonus-grid,
  .objection-grid {
    gap: 16px;
  }

  .demo {
    grid-template-columns: 0.82fr 1.18fr;
  }
}

@media (max-width: 720px) {
  .section {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .value-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .value-strip article {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 4px;
    padding: 14px 10px;
  }

  .value-strip article > i,
  .value-strip article > svg {
    width: 24px;
    height: 24px;
    margin-bottom: 4px;
  }

  .problem-grid article,
  .feature-grid article,
  .bonus-grid article,
  .objection-grid article {
    min-height: auto;
    text-align: left;
  }

  .card-icon {
    width: 42px;
    height: 42px;
  }

  .compare-card,
  .price-card,
  .guarantee-card,
  .manual-warning,
  .guarantee-band {
    text-align: left;
  }

  .proof-screen {
    min-height: 174px;
  }

  .offer-list li {
    grid-template-columns: 20px 1fr;
  }

  .offer-visual-grid {
    grid-template-columns: 1fr;
  }

  .offer-mini-card,
  .offer-mini-card.span-2 {
    grid-column: auto;
    grid-template-columns: auto 1fr;
    min-height: auto;
  }
}

@media (max-width: 560px) {
  .brand img {
    height: 40px;
    max-width: 86vw;
  }

  .hero,
  .section,
  .final-cta {
    padding-left: 14px;
    padding-right: 14px;
  }

  .hero {
    text-align: left;
  }

  .hero-actions,
  .trust-row {
    justify-content: flex-start;
  }

  .trust-row {
    gap: 8px;
  }

  .trust-row span {
    flex: 1 1 calc(50% - 8px);
    justify-content: center;
    min-width: 138px;
  }

  .extension-shell {
    padding: 12px;
    border-radius: 20px;
  }

  .mini-header img {
    height: 40px;
  }

  h1 {
    font-size: clamp(2.3rem, 12.5vw, 3.2rem);
  }

  h2 {
    font-size: clamp(1.75rem, 8.8vw, 2.35rem);
  }

  .section-heading,
  .section-heading.center {
    text-align: left;
  }

  .visual-proof .section-heading h2,
  .bonus .section-heading h2,
  .objections .section-heading h2 {
    font-size: clamp(1.75rem, 8.8vw, 2.35rem);
  }

  .video-placeholder {
    min-height: 220px;
  }

  .price strong {
    font-size: clamp(4.2rem, 25vw, 5.4rem);
  }

  .final-cta {
    text-align: center;
  }
}

/* Final conversion polish */
.final-cta {
  position: relative;
  overflow: hidden;
  margin-top: 20px;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 47, 154, 0.18);
  border-radius: 26px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 47, 154, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012));
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255, 138, 0, 0.08), transparent);
  opacity: 0.8;
}

.final-cta > * {
  position: relative;
}

.final-cta .btn-primary {
  min-width: min(100%, 320px);
  margin-top: 6px;
  box-shadow: 0 16px 42px rgba(255, 47, 154, 0.24);
}

.cta-proof {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.9rem;
}

.cta-proof span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
}

.cta-proof svg,
.cta-proof .icon-fallback {
  width: 16px;
  height: 16px;
  color: var(--pink);
}

.mobile-sticky-cta {
  display: none;
}

@media (max-width: 720px) {
  body {
    padding-bottom: 78px;
  }

  .final-cta {
    padding-top: 44px;
    padding-bottom: 44px;
    border-radius: 22px;
  }

  .cta-proof {
    align-items: stretch;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .cta-proof span {
    justify-content: center;
  }

  .mobile-sticky-cta {
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: 12px;
    z-index: 40;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 18px;
    color: #fff;
    text-decoration: none;
    background: linear-gradient(135deg, #ff2fa3 0%, #ff4778 42%, #ff8a00 100%);
    box-shadow:
      0 0 0 5px rgba(255, 47, 154, 0.14),
      0 18px 48px rgba(255, 47, 154, 0.42);
  }

  .mobile-sticky-cta span {
    font-size: 0.76rem;
    color: rgba(255, 255, 255, 0.82);
  }

  .mobile-sticky-cta strong {
    font-size: 0.95rem;
    color: #fff;
  }
}
