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

:root {
  --bg: #080d17;
  --surface: #0f1728;
  --surface2: #131d2e;
  --glass: rgba(255,255,255,0.04);
  --glass-border: rgba(255,255,255,0.08);
  --accent: #3b82f6;
  --accent2: #8b5cf6;
  --text: #f1f5f9;
  --muted: #64748b;
  --green: #10b981;
  --radius: 16px;
  --ff: 'Inter', sans-serif;
  --ff-mono: 'JetBrains Mono', monospace;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff);
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── NAVBAR ────────────────────────────────────────── */
.navbar {
  position: sticky; top: 0; z-index: 200;
  background: rgba(8,13,23,0.75);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--glass-border);
}
.navbar-inner {
  max-width: 1200px; margin: 0 auto;
  padding: .9rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
}
.logo {
  font-size: 1.4rem; font-weight: 900; letter-spacing: -.5px;
  color: #fff;
}
.logo span { background: linear-gradient(90deg,#3b82f6,#8b5cf6); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

.nav-stats { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
.stat-pill {
  display: flex; align-items: center; gap: .4rem;
  font-size: .78rem; color: var(--muted);
  background: var(--glass); border: 1px solid var(--glass-border);
  padding: .35rem .75rem; border-radius: 99px;
}
.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;} 50%{opacity:.4;} }

/* ── TICKER ────────────────────────────────────────── */
.ticker-wrap {
  background: rgba(59,130,246,.08);
  border-bottom: 1px solid rgba(59,130,246,.15);
  overflow: hidden; white-space: nowrap;
}
.ticker {
  display: inline-flex; gap: 3rem;
  animation: scrollTicker 30s linear infinite;
  padding: .55rem 0;
  font-size: .78rem; color: var(--muted);
}
@keyframes scrollTicker { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.ticker-item { display: inline-flex; align-items: center; gap: .3rem; }
.ticker-item .ico { color: var(--green); font-size: .85rem; }

/* ── HERO ──────────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden;
  padding: 5rem 1.5rem 4rem;
  text-align: center;
}
.hero-blob {
  position: absolute; top: -150px; left: 50%; transform: translateX(-50%);
  width: 700px; height: 500px;
  background: radial-gradient(ellipse at center, rgba(99,102,241,.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; max-width: 750px; margin: 0 auto; }

.badge {
  display: inline-block; margin-bottom: 1.25rem;
  padding: .4rem 1rem; border-radius: 99px;
  background: rgba(59,130,246,.15); border: 1px solid rgba(59,130,246,.3);
  font-size: .8rem; font-weight: 600; color: #93c5fd;
  letter-spacing: .4px;
}
.hero h1 {
  font-size: clamp(2rem,5vw,3.5rem); font-weight: 900; line-height: 1.1;
  margin-bottom: 1.25rem;
}
.gradient-text {
  background: linear-gradient(90deg,#3b82f6,#8b5cf6 60%,#ec4899);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero p { font-size: 1.05rem; color: var(--muted); margin-bottom: 2rem; }

.trust-row { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.trust-item { font-size: .83rem; color: var(--muted); display: flex; align-items: center; gap: .3rem; }
.green-text { color: var(--green); font-weight: 700; }

/* ── HOW IT WORKS ──────────────────────────────────── */
.how-it-works {
  padding: 3rem 1.5rem; text-align: center;
  background: var(--surface);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}
.how-it-works h2 { font-size: 1.75rem; font-weight: 800; margin-bottom: 2rem; }
.steps {
  display: flex; align-items: center; justify-content: center; gap: .75rem; flex-wrap: wrap;
  max-width: 800px; margin: 0 auto;
}
.step {
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: var(--radius); padding: 1.5rem 1.25rem; width: 180px;
}
.step-num {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg,var(--accent),var(--accent2));
  font-weight: 900; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center; margin: 0 auto .75rem;
}
.step-title { font-weight: 700; margin-bottom: .35rem; }
.step-desc { font-size: .8rem; color: var(--muted); }
.step-arrow { font-size: 1.5rem; color: var(--muted); }

/* ── CARDS SECTION ─────────────────────────────────── */
.cards-section { padding: 4rem 1.5rem; max-width: 1200px; margin: 0 auto; }
.cards-section h2 { font-size: 1.75rem; font-weight: 800; text-align: center; margin-bottom: .5rem; }
.section-sub { text-align: center; color: var(--muted); margin-bottom: 2.5rem; }

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

/* ── GIFT CARD ─────────────────────────────────────── */
.gift-card {
  position: relative; border-radius: 20px; overflow: hidden;
  background: var(--surface2); border: 1px solid var(--glass-border);
  cursor: pointer;
  transition: transform .3s cubic-bezier(.175,.885,.32,1.275), box-shadow .3s ease, border-color .3s;
  display: flex; flex-direction: column;
}
.gift-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 30px 60px -12px rgba(59,130,246,.25);
  border-color: var(--accent);
}

.card-ribbon {
  position: absolute; top: 12px; right: -26px;
  background: #ef4444; color: #fff;
  font-size: .68rem; font-weight: 800; letter-spacing: 1px;
  padding: .2rem 2.2rem;
  transform: rotate(40deg);
  z-index: 5; width: 95px; text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,.3);
}
.card-ribbon.popular { background: #f59e0b; }

.card-img-wrap {
  width: 100%; height: 150px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.brand-logo { max-height: 80px; object-fit: contain; }
.text-logo {
  font-weight: 900; letter-spacing: -1px; text-transform: uppercase;
  color: #fff; font-size: 1.8rem; text-align: center; line-height: 1.1;
  font-family: 'Inter', sans-serif;
}

.card-body { padding: 1.25rem; display: flex; flex-direction: column; gap: .6rem; }
.card-body h3 { font-size: 1rem; font-weight: 700; }
.card-body p { font-size: .85rem; color: var(--muted); }
.card-body p strong { color: #fff; }

.stock-bar {
  width: 100%; height: 4px;
  background: rgba(255,255,255,.08); border-radius: 2px; overflow: hidden;
}
.stock-fill { height: 100%; border-radius: 2px; }
.stock-label { font-size: .72rem; color: var(--muted); }

.btn-get {
  margin-top: .5rem;
  padding: .75rem;
  background: linear-gradient(90deg,var(--accent),var(--accent2));
  border: none; border-radius: 10px;
  color: #fff; font-weight: 800; font-size: .9rem;
  cursor: pointer; letter-spacing: .5px;
  transition: filter .2s, transform .15s;
  width: 100%;
}
.btn-get:hover { filter: brightness(1.12); transform: scale(1.02); }

/* ── REVIEWS ────────────────────────────────────────── */
.reviews-section {
  padding: 4rem 1.5rem;
  background: var(--surface);
  border-top: 1px solid var(--glass-border);
  text-align: center;
}
.reviews-section h2 { font-size: 1.75rem; font-weight: 800; margin-bottom: 2rem; }
.reviews-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px,1fr));
  gap: 1.25rem; max-width: 900px; margin: 0 auto;
}
.review-card {
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: var(--radius); padding: 1.5rem; text-align: left;
}
.stars { color: #fbbf24; font-size: 1rem; margin-bottom: .5rem; }
.review-card p { color: var(--muted); font-size: .9rem; margin-bottom: 1rem; }
.reviewer { font-size: .8rem; color: #475569; }

/* ── MODAL OVERLAY ─────────────────────────────────── */
#overlay {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(0,0,0,.85); backdrop-filter: blur(14px);
  display: none; align-items: center; justify-content: center;
  padding: 1rem;
}
#overlay.active { display: flex; }

.modal {
  background: var(--surface2); border: 1px solid var(--glass-border);
  border-radius: 24px; padding: 2rem;
  width: 100%; max-width: 480px;
  animation: fadeUp .35s ease;
}
@keyframes fadeUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }

.modal-header {
  display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem;
}
.modal-brand-img {
  width: 52px; height: 52px; object-fit: contain;
  background: #fff; border-radius: 12px; padding: 6px;
}
.modal h2 { font-size: 1.25rem; font-weight: 800; }

/* Progress */
.progress-wrap {
  display: flex; align-items: center; gap: .75rem; margin-bottom: 1rem;
}
.progress-track {
  flex: 1; height: 8px; background: rgba(255,255,255,.07);
  border-radius: 4px; overflow: hidden;
}
.progress-fill {
  height: 100%; width: 0%;
  background: linear-gradient(90deg,var(--accent),var(--accent2));
  transition: width .08s linear;
  border-radius: 4px;
}
#progress-pct { font-size: .8rem; color: var(--muted); width: 2.5rem; text-align: right; }

/* Terminal */
.terminal {
  background: #050810; border: 1px solid rgba(255,255,255,.07);
  border-radius: 10px; padding: 1rem;
  font-family: var(--ff-mono); font-size: .78rem; color: var(--green);
  height: 130px; overflow-y: auto;
  scroll-behavior: smooth;
}
.terminal p { margin-bottom: 3px; }
.cursor { animation: blink .8s step-start infinite; }
@keyframes blink { 50%{opacity:0} }

/* Verify Step */
.verify-box {
  text-align: center; margin-top: 1.5rem;
  padding-top: 1.5rem; border-top: 1px solid var(--glass-border);
}
.verify-icon { font-size: 2.5rem; margin-bottom: .75rem; }
.verify-box h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: .5rem; }
.verify-box p { color: var(--muted); font-size: .85rem; margin-bottom: 1rem; }
.code-preview {
  position: relative; display: inline-block;
  background: rgba(59,130,246,.08); border: 1px dashed rgba(59,130,246,.3);
  border-radius: 8px; padding: .6rem 1.2rem;
  font-family: var(--ff-mono); font-size: 1rem; margin-bottom: 1.25rem;
}
.code-blur { filter: blur(5px); color: #93c5fd; user-select: none; }
.code-blocked-label {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-size: .7rem; font-weight: 800; color: #f59e0b; letter-spacing: 2px;
}
.btn-verify {
  width: 100%; padding: .9rem;
  background: linear-gradient(90deg,#10b981,#059669);
  color: #fff; border: none; border-radius: 12px;
  font-size: 1rem; font-weight: 800; cursor: pointer;
  letter-spacing: .5px;
  transition: filter .2s, transform .15s;
  animation: glow 2s ease infinite;
}
.btn-verify:hover { filter: brightness(1.1); transform: scale(1.02); }
@keyframes glow {
  0%,100%{box-shadow:0 0 0 0 rgba(16,185,129,.4);}
  50%{box-shadow:0 0 20px 6px rgba(16,185,129,.25);}
}
.verify-note { font-size: .72rem; color: #475569; margin-top: .6rem; }

/* ── FOOTER ────────────────────────────────────────── */
footer {
  padding: 3rem 1.5rem; text-align: center;
  border-top: 1px solid var(--glass-border);
}

/* ── RESPONSIVE ────────────────────────────────────── */
@media(max-width:640px){
  .nav-stats .stat-pill:last-child{display:none;}
  .step-arrow{display:none;}
  .step{width:100%;max-width:280px;}
}
/* Particles BG */
#particles-js {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  pointer-events: none;
}

/* Email Step Input */
.email-step h3 {
  margin-top: 0;
  margin-bottom: 10px;
}
.premium-input {
  width: 100%;
  padding: 12px 15px;
  background: #0f172a;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  outline: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
}
.premium-input:focus {
  border-color: #8b5cf6;
  box-shadow: 0 0 10px rgba(139, 92, 246, 0.3);
}
.premium-input::placeholder {
  color: #64748b;
}
