/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── Variables ── */
:root {
  --bg:        #080810;
  --card:      #10101e;
  --border:    rgba(255,255,255,0.08);
  --pink:      #ff2d78;
  --purple:    #9b2dff;
  --green:     #00d68f;
  --text:      #f2f2f8;
  --muted:     #7878a0;
  --sub:       #4a4a6a;
  --r:         18px;
}

/* ── Base ── */
html, body {
  min-height: 100%;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  padding: 40px 16px;
}

/* subtle radial glow behind card */
body::before {
  content: '';
  position: fixed;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 500px;
  background: radial-gradient(ellipse at center, rgba(155,45,255,0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
body::after {
  content: '';
  position: fixed;
  bottom: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse at center, rgba(255,45,120,0.1) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ── Page wrapper ── */
.page {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}

/* ── Card ── */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 40px 32px;
  width: 100%;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

/* ── Badge ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 5px 14px;
}
.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 8px var(--pink);
  animation: blink 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

/* ── Domain name ── */
.domain {
  font-family: 'Syne', sans-serif;
  font-size: clamp(30px, 7.5vw, 48px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  text-align: center;
  background: linear-gradient(120deg, #ff6aab 0%, #ff2d78 40%, #b042ff 75%, #7c1ff0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 28px rgba(255,45,120,0.35));
}

/* ── Tagline ── */
.tagline {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  text-align: center;
  line-height: 1.55;
  margin-top: -8px;
}

/* ── Price block ── */
.price-block {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.price-main {
  font-family: 'Syne', sans-serif;
  font-size: clamp(30px, 7vw, 42px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
}
.price-sub {
  font-size: 13px;
  color: var(--pink);
}
.price-sub strong { color: #e0a0ff; }
.price-trust {
  font-size: 12px;
  color: var(--sub);
  margin-top: 4px;
}

/* ── CTA buttons ── */
.ctas {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 15px 20px;
  border-radius: 12px;
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.14s ease, box-shadow 0.14s ease, opacity 0.14s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); opacity: 0.88; }

.btn-card {
  background: linear-gradient(110deg, #ff2d78 0%, #9b2dff 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(255,45,120,0.3);
}
.btn-card:hover { box-shadow: 0 8px 28px rgba(255,45,120,0.45); }

.btn-pix {
  background: rgba(255,255,255,0.05);
  color: #eee;
  border: 1px solid rgba(255,255,255,0.11);
}
.btn-pix:hover { background: rgba(255,255,255,0.09); border-color: rgba(255,255,255,0.2); }

/* ── Trust row ── */
.trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  color: var(--muted);
}
.trust-item svg { opacity: 0.55; flex-shrink: 0; }

/* ── Divider ── */
.divider {
  width: 100%;
  height: 1px;
  background: var(--border);
}

/* ── Section ── */
.section { width: 100%; }
.section-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sub);
  margin-bottom: 14px;
}

/* ── Check list ── */
.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.check-list li {
  display: flex;
  gap: 10px;
  font-size: 13.5px;
  color: #aaa;
  line-height: 1.5;
}
.check {
  color: var(--green);
  font-weight: 700;
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 2px;
}
.check-list a { color: var(--pink); text-decoration: none; }
.check-list a:hover { text-decoration: underline; }

/* ── Steps ── */
.steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.step-n {
  min-width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff2d78, #9b2dff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  margin-top: 1px;
}
.step strong {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: #ddd;
  margin-bottom: 3px;
}
.step p {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.5;
}

/* ─────────────────────────────────────────
   MODAL
───────────────────────────────────────── */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}
.modal.open {
  opacity: 1;
  pointer-events: all;
}
.modal-bg {
  position: absolute;
  inset: 0;
  background: rgba(4,4,14,0.84);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.modal-box {
  position: relative;
  z-index: 1;
  background: #0e0e1c;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r);
  padding: 28px 26px 32px;
  width: 100%;
  max-width: 450px;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(14px);
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1);
}
.modal.open .modal-box { transform: translateY(0); }

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}
.modal-title {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #eee;
}
.modal-close {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 8px;
  color: #777;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.modal-close:hover { background: rgba(255,255,255,0.1); color: #eee; }

/* loader */
.m-loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 36px 0;
  color: var(--muted);
  font-size: 13px;
}
.spinner {
  width: 28px; height: 28px;
  border: 2px solid rgba(255,255,255,0.07);
  border-top-color: var(--pink);
  border-radius: 50%;
  animation: spin 0.65s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* status */
.m-status {
  padding: 14px 16px;
  border-radius: 10px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}
.m-status.ok  { background: rgba(0,214,143,0.1); border: 1px solid rgba(0,214,143,0.25); color: #00d68f; }
.m-status.err { background: rgba(255,45,120,0.1); border: 1px solid rgba(255,45,120,0.25); color: #ff7aaa; }

/* pix inputs */
.pix-lbl {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 10px;
}
.pix-input {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  color: #eee;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.15s;
  margin-bottom: 12px;
  display: block;
}
.pix-input:focus { border-color: rgba(255,45,120,0.5); }
.pix-input::placeholder { color: #444; }

.qr-wrap {
  display: flex;
  justify-content: center;
  margin: 12px 0 0;
}
.qr-img {
  width: 192px;
  height: 192px;
  border-radius: 12px;
  background: #fff;
  padding: 8px;
  display: block;
}

.pix-code-row {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 8px;
  padding: 10px 12px;
  margin: 8px 0 12px;
}
.pix-code {
  flex: 1;
  font-size: 10.5px;
  color: #888;
  word-break: break-all;
  line-height: 1.4;
}
.copy-btn {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  color: #ccc;
  font-family: 'Inter', sans-serif;
  font-size: 11.5px;
  font-weight: 500;
  padding: 4px 10px;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.15s, color 0.15s;
}
.copy-btn:hover { background: rgba(255,255,255,0.13); color: #fff; }
.copy-btn.done  { color: #00d68f; border-color: rgba(0,214,143,0.3); }

.pix-note {
  font-size: 11.5px;
  color: var(--sub);
  text-align: center;
  line-height: 1.5;
}

/* ── Responsive ── */
@media (max-width: 440px) {
  .card { padding: 30px 18px; }
  .modal-box { padding: 22px 18px 28px; }
  .trust-row { gap: 12px; }
}
