:root {
  --bg: #140018;
  --bg-deep: #07000a;
  --purple: #8b18ff;
  --purple-hot: #c637ff;
  --pink: #ff2fe6;
  --white: #ffffff;
  --muted: #d9c8e6;
  --soft: rgba(255, 255, 255, 0.12);
  --shadow: 0 22px 70px rgba(139, 24, 255, 0.42);
  font-family: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-y: auto;
  touch-action: pan-y;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% 0%, rgba(198, 55, 255, 0.38), transparent 26rem),
    radial-gradient(circle at 10% 80%, rgba(255, 47, 230, 0.18), transparent 20rem),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 100%);
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0;
  padding-bottom: 82px;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
}

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

.page {
  min-height: 100vh;
  overflow: visible;
}

.hero {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 82svh;
  padding: 34px 18px 26px;
  text-align: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(to bottom, black, transparent 74%);
  opacity: 0.44;
}

.ambient {
  position: absolute;
  border-radius: 999px;
  filter: blur(34px);
  opacity: 0.75;
  pointer-events: none;
}

.ambient--one {
  width: 190px;
  height: 190px;
  top: 10%;
  right: -70px;
  background: var(--purple-hot);
}

.ambient--two {
  width: 150px;
  height: 150px;
  left: -64px;
  bottom: 12%;
  background: var(--pink);
}

.hero__inner,
.final {
  position: relative;
  width: min(100%, 780px);
  margin: 0 auto;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  margin: 0 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #f2d7ff;
  padding: 8px 13px;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(2.45rem, 10vw, 5.7rem);
  font-weight: 1000;
  line-height: 0.92;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 7vw, 4rem);
  font-weight: 1000;
  line-height: 0.96;
  text-transform: uppercase;
}

.lead {
  width: min(100%, 590px);
  margin: 0 auto 20px;
  color: var(--muted);
  font-size: clamp(1.12rem, 4vw, 1.55rem);
  font-weight: 800;
  line-height: 1.35;
}

.photo-slot {
  display: grid;
  place-items: center;
  width: min(100%, 520px);
  aspect-ratio: 4 / 3;
  margin: 0 auto 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.22);
  box-shadow: 0 24px 62px rgba(0, 0, 0, 0.34);
  overflow: hidden;
}

.photo-slot img,
.visual-proof img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 470px);
  min-height: 66px;
  border-radius: 8px;
  background: linear-gradient(180deg, var(--purple-hot), var(--purple));
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  color: var(--white);
  padding: 18px 22px;
  font-size: clamp(1.03rem, 4vw, 1.28rem);
  font-weight: 1000;
  line-height: 1.05;
  text-align: center;
  text-transform: uppercase;
  animation: pulse 1.65s ease-in-out infinite;
}

.mini-proof {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.mini-proof span {
  border: 1px solid var(--soft);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.22);
  color: #f0ddff;
  padding: 9px 12px;
  font-size: 0.86rem;
  font-weight: 900;
}

.strip {
  width: min(100% - 30px, 960px);
  margin: -16px auto 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  padding: 18px;
}

.strip div {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
}

.strip strong {
  width: 100%;
  font-size: 0.98rem;
  text-transform: uppercase;
}

.strip span {
  border-radius: 999px;
  background: rgba(139, 24, 255, 0.22);
  color: #f4dfff;
  padding: 8px 11px;
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
}

.visual-proof {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  width: min(100% - 30px, 960px);
  margin: 38px auto 0;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.07);
}

.pix-proof {
  display: grid;
  justify-items: center;
  width: min(100% - 30px, 760px);
  margin: 38px auto 0;
  padding: clamp(18px, 4vw, 28px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 12%, rgba(255, 47, 230, 0.2), transparent 24rem),
    rgba(255, 255, 255, 0.07);
}

.visual-proof img {
  aspect-ratio: 4 / 5;
  border-radius: 12px;
}

.pix-proof img {
  width: 100%;
  max-width: 390px;
  max-height: 550px;
  margin-top: 18px;
  object-fit: cover;
  object-position: top center;
  border-radius: 12px;
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.44);
}

.visual-proof div {
  padding: 8px 8px 8px 0;
}

.pix-proof__copy {
  width: min(100%, 620px);
  padding: 0;
}

.visual-proof h2 {
  font-size: clamp(1.8rem, 5vw, 3.2rem);
}

.pix-proof h2 {
  margin-bottom: 12px;
  font-size: clamp(1.9rem, 5.8vw, 3.4rem);
}

.visual-proof p:not(.badge),
.pix-proof p:not(.badge) {
  color: var(--muted);
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.42;
}

.pix-proof p:not(.badge) {
  width: min(100%, 520px);
  margin: 0 auto;
}

.final {
  padding: 54px 18px 68px;
  text-align: center;
}

.final p:not(.badge) {
  width: min(100%, 520px);
  margin: 0 auto 22px;
  color: var(--muted);
  font-size: 1.12rem;
  font-weight: 800;
  line-height: 1.42;
}

.floating {
  position: fixed;
  z-index: 20;
  left: 14px;
  right: 14px;
  bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  border-radius: 8px;
  background: linear-gradient(180deg, #29df72, #12a952);
  box-shadow: 0 18px 44px rgba(18, 169, 82, 0.34);
  color: #03180b;
  padding: 14px 18px;
  font-size: 1rem;
  font-weight: 1000;
  text-align: center;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 560ms ease, transform 560ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulse {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: var(--shadow), 0 0 0 0 rgba(198, 55, 255, 0.38);
  }
  50% {
    transform: translateY(-1px);
    box-shadow: var(--shadow), 0 0 0 12px rgba(198, 55, 255, 0);
  }
}

@media (min-width: 760px) {
  .hero {
    min-height: 78svh;
    padding-top: 52px;
  }

  .strip strong {
    width: auto;
  }
}

@media (max-width: 390px) {
  .badge {
    font-size: 0.72rem;
  }

  .cta {
    min-height: 62px;
    padding-inline: 16px;
  }

  .floating {
    font-size: 0.92rem;
  }
}

@media (max-width: 720px) {
  .photo-slot {
    width: min(100%, 390px);
  }

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

  .pix-proof img {
    max-width: 330px;
    max-height: 520px;
  }

  .visual-proof div,
  .pix-proof__copy {
    padding: 0 4px 8px;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
