/* ===== Base / variáveis ===== */
:root {
  --bg: #070514;
  --fg: #f5f3ff;
  --blue: #3b5bff;
  --indigo: #7c3aed;
  --pink: #ff3ea5;
  --card-bg: rgba(255, 255, 255, 0.04);
  --card-border: rgba(255, 255, 255, 0.1);
  --maxw: 1152px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: "Inter", system-ui, -apple-system, Arial, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

h1,
h2,
h3 {
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}
.container.narrow {
  max-width: 768px;
}
.center {
  text-align: center;
}
.nowrap {
  white-space: nowrap;
}

/* ===== Atmosfera de fundo ===== */
.bg-fx {
  position: fixed;
  inset: 0;
  z-index: -10;
  overflow: hidden;
  pointer-events: none;
}
.bg-base {
  position: absolute;
  inset: 0;
  background: var(--bg);
}
.bg-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse at 50% 0%, black, transparent 75%);
  mask-image: radial-gradient(ellipse at 50% 0%, black, transparent 75%);
}
.aurora {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  animation: aurora 18s ease-in-out infinite;
}
.aurora-1 {
  left: -15%;
  top: -10%;
  width: 55vh;
  height: 55vh;
  background: rgba(59, 91, 255, 0.25);
}
.aurora-2 {
  right: -10%;
  top: 20%;
  width: 50vh;
  height: 50vh;
  background: rgba(255, 62, 165, 0.2);
  animation-delay: -6s;
}
.aurora-3 {
  bottom: -10%;
  left: 30%;
  width: 50vh;
  height: 50vh;
  background: rgba(124, 58, 237, 0.25);
  animation-delay: -12s;
}
.bg-grain {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.bg-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 55%, rgba(0, 0, 0, 0.45));
}

/* ===== Scroll progress ===== */
.scroll-progress {
  position: fixed;
  inset: 0 0 auto 0;
  height: 4px;
  z-index: 60;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(to right, var(--blue), var(--indigo), var(--pink));
}

/* ===== Texto gradiente ===== */
.text-gradient {
  background: linear-gradient(90deg, var(--blue), var(--pink), var(--blue));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: shimmer 4s linear infinite;
}

/* ===== Botões ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  max-width: 100%;
  border-radius: 999px;
  padding: 0.875rem 1.5rem;
  font-weight: 800;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.15;
  text-align: center;
  color: #fff;
  background: linear-gradient(120deg, var(--blue), var(--indigo), var(--pink));
  background-size: 200% auto;
  box-shadow: 0 10px 30px -10px rgba(236, 72, 153, 0.5);
  transition: background-position 0.5s ease, transform 0.15s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.btn:hover {
  background-position: right center;
  transform: scale(1.04);
}
.btn:active {
  transform: scale(0.97);
}
.btn-lg {
  padding: 1rem 1.5rem;
}
@media (min-width: 640px) {
  .btn {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
  .btn-lg {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
  }
}
.pulse {
  animation: pulse-glow 2s ease-in-out infinite;
}

/* ===== Secções ===== */
.section {
  position: relative;
  padding: 64px 0;
}
@media (min-width: 640px) {
  .section {
    padding: 96px 0;
  }
}
.heading {
  max-width: 640px;
  margin: 0 auto 40px;
  text-align: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.25rem 0.75rem;
  border: 1px solid var(--card-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #f0abfc;
  backdrop-filter: blur(6px);
}
.eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(to right, var(--blue), var(--pink));
}
.heading h2 {
  font-size: clamp(1.5rem, 5vw, 2.25rem);
  font-weight: 900;
}
.heading .sub {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: clamp(1rem, 2.5vw, 1.125rem);
}

/* ===== Cartões ===== */
.card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 1rem;
  backdrop-filter: blur(8px);
}
.gradient-border {
  border: 1px solid transparent;
  border-radius: 1rem;
  background: linear-gradient(#0b0a1c, #0b0a1c) padding-box,
    linear-gradient(135deg, rgba(59, 91, 255, 0.7), rgba(124, 58, 237, 0.4), rgba(255, 62, 165, 0.7))
      border-box;
}

/* ===== Brand ===== */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.brand-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, var(--blue), var(--indigo), var(--pink));
  font-weight: 900;
  font-size: 1rem;
  box-shadow: 0 8px 20px -6px rgba(236, 72, 153, 0.5);
}
.brand-name {
  font-size: 1.125rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100svh;
  padding: 96px 20px 80px;
  text-align: center;
  overflow: hidden;
}
.hero-blobs {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(64px);
  animation: float 7s ease-in-out infinite;
}
.hero .blob-a {
  left: -96px;
  top: 40px;
  width: 320px;
  height: 320px;
  background: rgba(59, 91, 255, 0.4);
}
.hero .blob-b {
  right: -80px;
  top: 33%;
  width: 384px;
  height: 384px;
  background: rgba(255, 62, 165, 0.4);
  animation-delay: -2s;
}
.hero .blob-c {
  bottom: 0;
  left: 33%;
  width: 288px;
  height: 288px;
  background: rgba(124, 58, 237, 0.4);
  animation-delay: -4s;
}
.hero-radial {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% -20%, rgba(124, 58, 237, 0.25), transparent 60%);
}
.hero .brand {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
}
.hero-inner {
  max-width: 768px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  padding: 0.375rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.75rem;
  font-weight: 600;
  color: #f0abfc;
  backdrop-filter: blur(6px);
}
@media (min-width: 640px) {
  .badge {
    font-size: 0.875rem;
  }
}
.pt-flag {
  width: 18px;
  height: 12px;
  border-radius: 3px;
  display: inline-block;
}
.pt-flag.sm {
  width: 18px;
  height: 12px;
  border-radius: 2px;
  vertical-align: -1px;
}
.hero h1 {
  font-size: clamp(1.95rem, 7.5vw, 3.75rem);
  font-weight: 900;
  text-wrap: balance;
}
.hero-sub {
  max-width: 36rem;
  margin: 1.5rem auto 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(1rem, 2.6vw, 1.125rem);
  text-wrap: pretty;
}
.hero-actions {
  margin-top: 2.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.urgency-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background: rgba(251, 191, 36, 0.1);
  box-shadow: inset 0 0 0 1px rgba(251, 191, 36, 0.2);
  color: #fcd34d;
  font-size: 0.75rem;
  font-weight: 600;
}
.hero-actions .btn {
  width: 100%;
  max-width: 24rem;
}
@media (min-width: 640px) {
  .hero-actions .btn {
    width: auto;
  }
}
.trust {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.375rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
}
.trust li {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}
.check {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: #34d399;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.response {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.45);
}
.ping {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #e879f9;
  animation: ping 1.4s cubic-bezier(0, 0, 0.2, 1) infinite;
}
.scroll-indicator {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
}
.mouse {
  display: flex;
  justify-content: center;
  width: 22px;
  height: 36px;
  padding-top: 6px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
}
.wheel {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  animation: wheel 1.6s ease-in-out infinite;
}

/* ===== Stats ===== */
.stats {
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
  background: rgba(255, 255, 255, 0.03);
  padding: 32px 0;
  backdrop-filter: blur(6px);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 16px;
  text-align: center;
}
@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.stat-value {
  font-size: clamp(1.5rem, 5vw, 1.875rem);
  font-weight: 900;
}
.stat-label {
  margin-top: 0.25rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
}
@media (min-width: 640px) {
  .stat-label {
    font-size: 0.875rem;
  }
}

/* ===== Steps ===== */
.steps {
  position: relative;
  display: grid;
  gap: 20px;
}
@media (min-width: 768px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}
.step-connector {
  display: none;
}
@media (min-width: 768px) {
  .step-connector {
    display: block;
    position: absolute;
    left: 16%;
    right: 16%;
    top: 3.9rem;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(59, 91, 255, 0.5), rgba(255, 62, 165, 0.5), transparent);
  }
}
.step {
  position: relative;
  overflow: hidden;
  padding: 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@media (min-width: 640px) {
  .step {
    padding: 32px;
  }
}
.step:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 70px -24px rgba(124, 58, 237, 0.6);
}
.ghost-num {
  position: absolute;
  right: -8px;
  top: -16px;
  font-size: 6rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(255, 255, 255, 0.04);
  user-select: none;
}
.icon-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(59, 91, 255, 0.2), rgba(255, 62, 165, 0.2));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease;
}
.step:hover .icon-badge {
  transform: scale(1.1);
}
.icon-badge.sm {
  width: 44px;
  height: 44px;
  margin-bottom: 0;
  border-radius: 0.75rem;
  flex-shrink: 0;
}
.icon-badge .num {
  position: absolute;
  right: -6px;
  top: -6px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--pink));
  font-size: 10px;
  font-weight: 900;
  box-shadow: 0 0 0 2px #0b0a1c;
}
.icon {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: url(#icon-grad);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.icon-badge.sm .icon {
  width: 24px;
  height: 24px;
}
.step h3 {
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
  font-weight: 700;
}
@media (min-width: 640px) {
  .step h3 {
    font-size: 1.25rem;
  }
}
.step p {
  color: rgba(255, 255, 255, 0.6);
}

/* ===== Earnings ===== */
.earnings {
  overflow: hidden;
}
.earnings-glow {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at 50% 50%, rgba(255, 62, 165, 0.12), transparent 70%);
}
.tiers {
  display: grid;
  gap: 20px;
  max-width: 980px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .tiers {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}
.tier {
  position: relative;
  padding: 24px;
  text-align: center;
  transition: transform 0.3s ease;
}
@media (min-width: 640px) {
  .tier {
    padding: 32px;
  }
}
.tier:hover {
  transform: translateY(-4px);
}
.tier-hot {
  border-color: rgba(232, 121, 249, 0.6);
  background: linear-gradient(to bottom, rgba(217, 70, 239, 0.2), rgba(99, 102, 241, 0.1));
  box-shadow: 0 20px 50px -20px rgba(232, 121, 249, 0.4);
}
.tier-pop {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background: linear-gradient(to right, var(--blue), var(--pink));
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
}
.tier-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #f0abfc;
}
.tier-tests {
  margin-top: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}
.tier-amount {
  margin-top: 1rem;
  font-size: clamp(1.5rem, 5vw, 1.875rem);
  font-weight: 900;
}
.earnings .center {
  margin-top: 40px;
}
.disclaimer {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ===== Pagamentos ===== */
.payments {
  margin-top: 56px;
  text-align: center;
}
.payments h3 {
  font-size: clamp(1.25rem, 4vw, 1.5rem);
  font-weight: 700;
}
.payments-sub {
  max-width: 28rem;
  margin: 0.5rem auto 0;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
}
.pm-label {
  margin: 28px 0 12px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.4);
}
.pm-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 12px;
  border-radius: 0.5rem;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15), inset 0 0 0 1px rgba(0, 0, 0, 0.05);
  white-space: nowrap;
  line-height: 1;
}
.chip svg {
  display: block;
}
.chip .amex {
  background: #1f72cd;
  color: #fff;
  font-weight: 900;
  font-size: 10px;
  letter-spacing: 0.04em;
  padding: 3px 6px;
  border-radius: 3px;
}
.chip .wise {
  background: #9fe870;
  color: #163300;
  font-weight: 900;
  font-size: 12px;
  padding: 3px 6px;
  border-radius: 4px;
  text-transform: lowercase;
}
.chip b {
  font-weight: 800;
  font-size: 13px;
}
.chip small {
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #6b7280;
}
.chip .squares {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5px;
  margin-right: 5px;
}
.chip .squares i {
  width: 5px;
  height: 5px;
  border-radius: 1px;
}
.chip .ring {
  width: 11px;
  height: 11px;
  border: 3px solid #e30613;
  border-radius: 999px;
  margin-right: 5px;
}
.chip .ca {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: #009640;
  color: #fff;
  font-size: 9px;
  font-weight: 900;
  margin-right: 5px;
}
.chip .ctt {
  background: #da291c;
  color: #fff;
  border-radius: 3px;
  padding: 2px 4px;
  font-weight: 900;
  font-size: 11px;
  margin-left: 4px;
}

/* ===== Benefits ===== */
.benefits {
  display: grid;
  gap: 16px;
}
@media (min-width: 640px) {
  .benefits {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (min-width: 1024px) {
  .benefits {
    grid-template-columns: repeat(3, 1fr);
  }
}
.benefit {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}
@media (min-width: 640px) {
  .benefit {
    padding: 24px;
  }
}
.benefit:hover {
  transform: translateY(-3px);
  border-color: rgba(232, 121, 249, 0.4);
  background: rgba(255, 255, 255, 0.08);
}
.benefit h3 {
  font-weight: 700;
}
.benefit p {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ===== Testimonials ===== */
.testimonials {
  display: grid;
  gap: 20px;
}
@media (min-width: 768px) {
  .testimonials {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}
.testi {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 24px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
@media (min-width: 640px) {
  .testi {
    padding: 28px;
  }
}
.testi:hover {
  transform: translateY(-4px);
  border-color: rgba(232, 121, 249, 0.4);
  box-shadow: 0 24px 70px -24px rgba(124, 58, 237, 0.55);
}
.testi .quote-mark {
  position: absolute;
  right: -4px;
  top: -24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 7rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.05);
  user-select: none;
}
.stars {
  display: flex;
  gap: 2px;
}
.stars svg {
  width: 18px;
  height: 18px;
  fill: url(#star-grad);
}
.testi blockquote {
  flex: 1;
  margin-top: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
}
.testi figcaption {
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--pink));
  font-size: 0.875rem;
  font-weight: 700;
}
.testi-name {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-weight: 700;
}
.verified {
  width: 16px;
  height: 16px;
  color: #38bdf8;
}
.testi-city {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ===== FAQ ===== */
.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid var(--card-border);
  background: var(--card-bg);
  backdrop-filter: blur(8px);
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  color: inherit;
  font: inherit;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}
.faq-q .plus {
  font-size: 1.5rem;
  color: #f0abfc;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.faq-item.open .faq-q .plus {
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-a p {
  padding: 0 24px 20px;
  color: rgba(255, 255, 255, 0.65);
}

/* ===== Final CTA ===== */
.final-cta {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}
@media (min-width: 640px) {
  .final-cta {
    padding: 112px 0;
  }
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, rgba(59, 91, 255, 0.3), rgba(124, 58, 237, 0.2), rgba(255, 62, 165, 0.3));
}
.final-blobs {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.final-cta .blob-a {
  left: 25%;
  top: 0;
  width: 288px;
  height: 288px;
  background: rgba(255, 62, 165, 0.3);
}
.final-cta .blob-b {
  right: 25%;
  bottom: 0;
  width: 288px;
  height: 288px;
  background: rgba(59, 91, 255, 0.3);
  animation-delay: -3s;
}
.final-cta h2 {
  font-size: clamp(1.75rem, 6vw, 3rem);
  font-weight: 900;
  text-wrap: balance;
}
.final-sub {
  max-width: 32rem;
  margin: 1.25rem auto 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: clamp(1rem, 2.6vw, 1.125rem);
}
.urgency {
  max-width: 24rem;
  margin: 32px auto;
}
.urgency-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
}
.urgency-top span:first-child {
  color: rgba(255, 255, 255, 0.6);
}
.urgency-spots {
  color: #f0abfc;
}
.urgency-bar {
  height: 10px;
  width: 100%;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}
.urgency-fill {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 999px;
  background: linear-gradient(to right, var(--blue), var(--indigo), var(--pink));
  transition: width 1.2s ease-out;
}
.microcopy {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ===== Footer ===== */
footer {
  position: relative;
  padding: 48px 0 40px;
}
footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(217, 70, 239, 0.4), transparent);
}
.center-brand {
  margin-bottom: 1rem;
}
.footer-tag {
  max-width: 28rem;
  margin: 0 auto;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
}
.footer-disclaimer {
  max-width: 42rem;
  margin: 1.5rem auto 0;
  font-size: 0.75rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.35);
}
.footer-rights {
  margin-top: 1.25rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
}

/* ===== Sticky CTA ===== */
.sticky-cta {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 50;
  padding: 12px;
  padding-bottom: max(12px, env(safe-area-inset-bottom));
  border-top: 1px solid var(--card-border);
  background: rgba(11, 8, 32, 0.8);
  backdrop-filter: blur(12px);
  transform: translateY(120%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.sticky-cta.show {
  transform: translateY(0);
}
.sticky-btn {
  display: flex;
  width: 100%;
  max-width: 28rem;
  margin: 0 auto;
}
.sticky-short {
  display: inline;
}
.sticky-long {
  display: none;
}
@media (min-width: 640px) {
  .sticky-short {
    display: none;
  }
  .sticky-long {
    display: inline;
  }
}

/* ===== Activity feed ===== */
.activity {
  position: fixed;
  bottom: 96px;
  left: 12px;
  z-index: 40;
  max-width: 16rem;
  pointer-events: none;
}
@media (min-width: 640px) {
  .activity {
    left: 24px;
  }
}
.activity-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px 10px 10px;
  border-radius: 1rem;
  border: 1px solid var(--card-border);
  background: rgba(14, 10, 38, 0.9);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(12px);
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.activity-card.show {
  opacity: 1;
  transform: translateX(0);
}
.activity .avatar {
  width: 36px;
  height: 36px;
}
.activity-text {
  font-size: 0.75rem;
  line-height: 1.3;
}
.activity-text .amt {
  color: #34d399;
  font-weight: 700;
}
.activity-text .meta {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.45);
}

/* ===== Reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--d, 0s);
}
.reveal.in-view {
  opacity: 1;
  transform: none;
}

/* ===== Keyframes ===== */
@keyframes pulse-glow {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 62, 165, 0.55), 0 10px 40px -10px rgba(124, 58, 237, 0.7);
  }
  50% {
    transform: scale(1.04);
    box-shadow: 0 0 0 18px rgba(255, 62, 165, 0), 0 14px 55px -8px rgba(59, 91, 255, 0.8);
  }
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(-30px) translateX(15px);
  }
}
@keyframes shimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}
@keyframes aurora {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.55;
  }
  50% {
    transform: translate3d(4%, -3%, 0) scale(1.15);
    opacity: 0.8;
  }
}
@keyframes ping {
  75%,
  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}
@keyframes wheel {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(9px);
    opacity: 0.2;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

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