@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

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

:root {
  --purple: #7c3aed;
  --purple-light: #a855f7;
  --text: #f8fafc;
  --muted: #a1a1aa;
  --card: rgba(15, 15, 25, 0.72);
  --border: rgba(255,255,255,0.10);
}

body {
  min-height: 100vh;
  font-family: 'Inter', Arial, sans-serif;
  color: var(--text);
  background: #07070d;
  overflow: hidden;
}

.background {
  position: fixed;
  inset: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 40%, rgba(124,58,237,.16), transparent 35%),
    linear-gradient(135deg, #07070d 0%, #10091c 50%, #07070d 100%);
}

.grid {
  position: absolute;
  inset: 0;
  opacity: .22;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 45px 45px;
  mask-image: linear-gradient(to bottom, transparent, black 30%, black 70%, transparent);
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: float 8s ease-in-out infinite alternate;
}

.orb-1 {
  width: 300px;
  height: 300px;
  background: rgba(124,58,237,.20);
  top: -100px;
  left: -80px;
}

.orb-2 {
  width: 350px;
  height: 350px;
  background: rgba(168,85,247,.13);
  right: -120px;
  bottom: -120px;
  animation-delay: -3s;
}

.container {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.card {
  width: min(680px, 100%);
  padding: 52px 48px 38px;
  text-align: center;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: var(--card);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow:
    0 30px 80px rgba(0,0,0,.55),
    inset 0 1px 0 rgba(255,255,255,.06);
  animation: appear .8s ease-out;
}

.icon {
  width: 78px;
  height: 78px;
  margin: 0 auto 24px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  box-shadow: 0 15px 40px rgba(124,58,237,.30);
  animation: gear 5s linear infinite;
}

.icon span {
  font-size: 37px;
  display: block;
}

.badge {
  display: inline-block;
  padding: 8px 14px;
  margin-bottom: 16px;
  border: 1px solid rgba(168,85,247,.25);
  border-radius: 999px;
  color: #d8b4fe;
  background: rgba(124,58,237,.10);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.7px;
}

h1 {
  font-size: clamp(42px, 8vw, 70px);
  line-height: 1;
  letter-spacing: -3px;
  font-weight: 800;
  margin-bottom: 20px;
}

h1 span {
  color: var(--purple-light);
}

.lead {
  max-width: 510px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.progress {
  margin: 35px auto 28px;
  text-align: left;
  max-width: 500px;
}

.progress-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  color: #a1a1aa;
  font-size: 12px;
}

.progress-top strong {
  color: #d8b4fe;
}

.progress-bar {
  height: 7px;
  overflow: hidden;
  border-radius: 20px;
  background: rgba(255,255,255,.08);
}

.progress-value {
  width: 75%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--purple), var(--purple-light));
  box-shadow: 0 0 20px rgba(168,85,247,.45);
  animation: load 1.5s ease-out;
}

.info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.info div {
  min-height: 82px;
  padding: 16px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 15px;
  background: rgba(255,255,255,.025);
}

.info b {
  font-size: 20px;
}

.info span {
  color: #a1a1aa;
  font-size: 10px;
  line-height: 1.3;
}

.divider {
  height: 1px;
  margin: 28px 0 20px;
  background: rgba(255,255,255,.08);
}

.thanks {
  color: #a1a1aa;
  font-size: 13px;
  margin-bottom: 20px;
}

.whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 20px;
  color: white;
  text-decoration: none;
  border-radius: 12px;
  background: #25d366;
  font-size: 13px;
  font-weight: 700;
  transition: .25s ease;
  box-shadow: 0 8px 25px rgba(37,211,102,.18);
}

.whatsapp:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

footer {
  margin-top: 30px;
  color: #52525b;
  font-size: 10px;
}

@keyframes appear {
  from { opacity: 0; transform: translateY(25px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes load {
  from { width: 0; }
  to { width: 75%; }
}

@keyframes float {
  from { transform: translate(0,0) scale(1); }
  to { transform: translate(30px,20px) scale(1.1); }
}

@keyframes gear {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@media (max-width: 600px) {
  body {
    overflow: auto;
  }

  .container {
    padding: 16px;
  }

  .card {
    padding: 38px 20px 28px;
    border-radius: 22px;
  }

  h1 {
    letter-spacing: -2px;
  }

  .lead {
    font-size: 14px;
  }

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

  .info div {
    min-height: 55px;
    flex-direction: row;
    justify-content: flex-start;
    padding: 12px 16px;
  }
}
