/* ============================================
   Re Protocol Airdrop — Mobile-first, Hostinger
   Edit colors in :root and class names below.
   ============================================ */

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

:root {
  --bg: #07070a;
  --surface: #101015;
  --surface-2: #16161d;
  --surface-3: #1c1c25;
  --border: #23232e;
  --border-strong: #2e2e3c;
  --text: #f5f5f7;
  --muted: #8b8b99;
  --accent: #ffffff;
  --green: #22c55e;
  --purple: #a78bfa;
  --gradient-glow: radial-gradient(60% 50% at 50% 0%, rgba(167,139,250,0.18), rgba(34,197,94,0.06) 40%, transparent 70%);
}

html, body { background: var(--bg); }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  min-height: 100vh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow-x: hidden;
}

.bg-glow {
  position: fixed;
  inset: 0;
  background: var(--gradient-glow);
  pointer-events: none;
  z-index: 0;
}

/* ---------- Urgency bar ---------- */
.urgency-bar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(90deg, rgba(167,139,250,0.12), rgba(34,197,94,0.12));
  border-bottom: 1px solid var(--border);
  padding: 9px 16px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text);
  text-align: center;
}
.urgency-bar strong {
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.2px;
}
.pulse-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #ef4444;
  box-shadow: 0 0 0 0 rgba(239,68,68,0.6);
  animation: pulse 1.6s ease-out infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(239,68,68,0.55); }
  70%  { box-shadow: 0 0 0 10px rgba(239,68,68,0); }
  100% { box-shadow: 0 0 0 0 rgba(239,68,68,0); }
}

/* ---------- Topbar ---------- */
.topbar {
  position: relative; z-index: 2;
  max-width: 460px;
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: 10px; }
.topbar-logo { width: 32px; height: 32px; border-radius: 9px; }
.brand-name { font-size: 15px; font-weight: 600; letter-spacing: -0.2px; }

.btn-ghost {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  padding: 9px 16px;
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  background: var(--surface);
  transition: background .15s ease, border-color .15s ease;
}
.btn-ghost:hover { background: var(--surface-2); border-color: #3a3a4a; }

/* ---------- Container ---------- */
.container {
  position: relative; z-index: 1;
  max-width: 460px;
  margin: 0 auto;
  padding: 8px 16px 32px;
}

/* ---------- Hero ---------- */
.hero-card {
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  border: 1px solid var(--border-strong);
  border-radius: 24px;
  padding: 28px 22px 26px;
  text-align: center;
  margin-bottom: 14px;
  box-shadow: 0 30px 60px -30px rgba(167,139,250,0.25), inset 0 1px 0 rgba(255,255,255,0.04);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text);
  padding: 6px 12px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  margin-bottom: 22px;
  background: rgba(34,197,94,0.06);
}
.dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
}

.hero-title {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 38px;
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: -0.6px;
  margin-bottom: 14px;
}
.hero-title em {
  font-style: italic;
  background: linear-gradient(90deg, #c4b5fd, #86efac);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 22px;
  padding: 0 4px;
}

/* Allocation box */
.alloc-box {
  background: var(--bg);
  border: 1px dashed var(--border-strong);
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 20px;
}
.alloc-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.alloc-value {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 40px;
  line-height: 1;
  letter-spacing: -1px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin-bottom: 6px;
}
.alloc-token {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0;
}
.alloc-meta {
  font-size: 12.5px;
  color: var(--muted);
}

/* Primary button */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--accent);
  color: #0a0a0a;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.1px;
  padding: 15px 28px;
  border-radius: 999px;
  box-shadow: 0 10px 30px -10px rgba(255,255,255,0.35), 0 0 0 1px rgba(255,255,255,0.06);
  transition: transform .12s ease, box-shadow .15s ease;
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 14px 36px -10px rgba(255,255,255,0.5); }
.btn-primary:active { transform: translateY(0); }
.btn-arrow { transition: transform .15s ease; }
.btn-primary:hover .btn-arrow { transform: translateX(3px); }
.btn-block { display: flex; width: 100%; margin-top: 16px; }

.micro-trust {
  margin-top: 14px;
  font-size: 12px;
  color: var(--muted);
}

/* ---------- Stats ---------- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}
.stat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 8px;
  text-align: center;
}
.stat-value {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 22px;
  letter-spacing: -0.4px;
  margin-bottom: 2px;
}
.stat-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

/* ---------- Section title ---------- */
.section-title {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.3px;
  margin-bottom: 14px;
}
.section-title--lg {
  font-size: 28px;
  margin-top: 26px;
  padding: 0 4px;
}

/* ---------- Steps ---------- */
.steps-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 22px 20px;
  margin-bottom: 14px;
}
.steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 4px;
}
.steps li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.step-num {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--surface-3);
  border: 1px solid var(--border-strong);
  display: grid; place-items: center;
  font-size: 13px; font-weight: 700;
  color: var(--text);
}
.step-title { font-size: 14.5px; font-weight: 600; margin-bottom: 2px; }
.step-body { font-size: 13px; color: var(--muted); line-height: 1.5; }

/* ---------- Info cards ---------- */
.info-grid { display: grid; gap: 10px; margin-bottom: 18px; }
.info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  position: relative;
}
.info-card--featured {
  background: linear-gradient(180deg, rgba(167,139,250,0.08), var(--surface));
  border-color: rgba(167,139,250,0.35);
}
.info-head { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.info-logo { width: 28px; height: 28px; border-radius: 50%; }
.info-name { font-size: 16px; font-weight: 600; flex: 1; }
.apy-pill {
  font-size: 12px; font-weight: 600;
  padding: 4px 10px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  background: var(--surface-2);
}
.apy-pill--green  { color: #86efac; border-color: rgba(34,197,94,0.35); background: rgba(34,197,94,0.08); }
.apy-pill--purple { color: #c4b5fd; border-color: rgba(167,139,250,0.35); background: rgba(167,139,250,0.08); }
.info-body {
  font-size: 13.5px; color: var(--muted); line-height: 1.55;
}
.badge-recommended {
  display: inline-block;
  margin-top: 10px;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: #c4b5fd;
}

/* ---------- Testimonial ---------- */
.testimonial {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px 20px;
  margin-bottom: 22px;
}
.testimonial-quote {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-size: 18px;
  line-height: 1.4;
  color: var(--text);
  margin-bottom: 16px;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, #a78bfa, #22c55e);
  display: grid; place-items: center;
  font-size: 12px; font-weight: 700; color: #0a0a0a;
}
.testimonial-name { font-size: 13.5px; font-weight: 600; }
.testimonial-role { font-size: 12px; color: var(--muted); }

/* ---------- FAQ ---------- */
.faq { margin-bottom: 22px; }
.faq details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 16px;
  margin-bottom: 8px;
}
.faq summary {
  list-style: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 18px;
  color: var(--muted);
  transition: transform .2s ease;
}
.faq details[open] summary::after { content: "−"; }
.faq details p {
  font-size: 13.5px;
  color: var(--muted);
  margin-top: 10px;
  line-height: 1.55;
}

/* ---------- Final CTA ---------- */
.final-cta {
  background: linear-gradient(180deg, rgba(167,139,250,0.10), var(--surface));
  border: 1px solid rgba(167,139,250,0.35);
  border-radius: 22px;
  padding: 28px 22px;
  text-align: center;
  margin-bottom: 20px;
}
.final-title {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 30px;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
  font-weight: 400;
}
.final-title em {
  font-style: italic;
  background: linear-gradient(90deg, #c4b5fd, #86efac);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.final-sub { font-size: 13.5px; color: var(--muted); }

/* ---------- Footer ---------- */
.footer {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  padding: 16px 0 8px;
}

/* ---------- Responsive bump ---------- */
@media (min-width: 520px) {
  .hero-title { font-size: 44px; }
  .alloc-value { font-size: 46px; }
}