/* ════════════════════════════════════════════════════════════════
   BIZSCRAPER — LANDING PAGE
════════════════════════════════════════════════════════════════ */

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

/* ── TOKENS ──────────────────────────────────────────────────── */
:root {
  --bg:      #0b1020;
  --surface: #111827;
  --raised:  #1a2337;
  --ibg:     #0f1729;
  --border:  #1e293b;
  --bsub:    #162032;
  --primary: #4F46E5;
  --pd:      rgba(79,70,229,.12);
  --pg:      rgba(79,70,229,.28);
  --success: #22C55E;
  --sd:      rgba(34,197,94,.1);
  --warning: #F59E0B;
  --wd:      rgba(245,158,11,.1);
  --info:    #818cf8;
  --id:      rgba(129,140,248,.12);
  --danger:  #EF4444;
  --t1:      #F8FAFC;
  --t2:      #94a3b8;
  --t3:      #64748b;
  --t4:      #334155;
}

/* ── BASE ────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  { background: var(--bg); color: var(--t2); font-family: 'Inter', system-ui, sans-serif; overflow-x: hidden; line-height: 1.6; font-size: 14px; }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #2d3a52; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

/* ── NAVBAR ─────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 64px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .3s, border-color .3s;
}
.nav.scrolled {
  background: rgba(11,16,32,.95);
  border-bottom-color: var(--border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.nav-brand   { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-name    { font-size: 16px; font-weight: 700; color: var(--t1); letter-spacing: -.01em; }
.nav-links   { display: flex; gap: 4px; list-style: none; }
.nav-links a { font-size: 13px; font-weight: 500; color: var(--t3); text-decoration: none; padding: 7px 14px; border-radius: 8px; transition: color .15s, background .15s; }
.nav-links a:hover { color: var(--t1); background: var(--raised); }
.nav-actions { display: flex; align-items: center; gap: 8px; }
.nav-dl      { height: 36px; padding: 0 16px; background: transparent; color: var(--t2); border: 1px solid var(--border); border-radius: 8px; font-size: 13px; font-weight: 500; cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; transition: all .15s; white-space: nowrap; }
.nav-dl:hover { color: var(--t1); border-color: var(--t3); background: var(--raised); }
.nav-cta     { height: 36px; padding: 0 18px; background: var(--primary); color: #fff; border: none; border-radius: 8px; font-size: 13px; font-weight: 600; cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; transition: all .15s; white-space: nowrap; }
.nav-cta:hover { background: #4338ca; }
.hamburger   { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { width: 22px; height: 2px; background: var(--t3); border-radius: 2px; transition: all .25s; display: block; }
.mob-nav     { display: none; flex-direction: column; padding: 8px 16px 14px; background: rgba(11,16,32,.98); border-bottom: 1px solid var(--border); }
.mob-nav a   { font-size: 14px; color: var(--t2); text-decoration: none; padding: 10px 12px; border-radius: 8px; transition: all .15s; display: block; }
.mob-nav a:hover { color: var(--t1); background: var(--raised); }

/* ── HERO ────────────────────────────────────────────────────── */
.hero-wrap {
  max-width: 1160px; margin: 0 auto;
  padding: 128px 40px 96px;
  display: grid; grid-template-columns: 1fr 420px;
  gap: 64px; align-items: center;
  position: relative;
}
.hero-wrap::before {
  content: ''; position: absolute;
  top: 0; left: -100px; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(79,70,229,.1) 0%, transparent 65%);
  pointer-events: none; z-index: 0;
}
.hero-wrap > * { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 14px;
  background: var(--pd); border: 1px solid rgba(79,70,229,.25); border-radius: 20px;
  font-size: 11px; font-weight: 700; color: var(--info);
  letter-spacing: .07em; text-transform: uppercase;
  margin-bottom: 24px;
}
.badge-pulse { width: 6px; height: 6px; background: var(--success); border-radius: 50%; box-shadow: 0 0 8px var(--success); animation: bpulse 2s infinite; flex-shrink: 0; }
@keyframes bpulse { 0%,100%{box-shadow:0 0 6px var(--success)} 50%{box-shadow:0 0 14px var(--success)} }

.hero-h1 { font-size: clamp(32px, 4vw, 54px); font-weight: 800; color: var(--t1); line-height: 1.12; letter-spacing: -.025em; margin-bottom: 20px; }
.hero-h1 em { font-style: normal; background: linear-gradient(135deg, #818cf8 0%, #4f46e5 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-sub  { font-size: 16px; color: var(--t2); line-height: 1.75; margin-bottom: 36px; max-width: 460px; }

.hero-stats { display: flex; align-items: center; gap: 0; margin-bottom: 40px; }
.hs         { display: flex; flex-direction: column; padding: 0 28px 0 0; }
.hs:first-child { padding-left: 0; }
.hs-n       { font-size: 24px; font-weight: 800; color: var(--t1); letter-spacing: -.02em; line-height: 1; }
.hs-l       { font-size: 12px; color: var(--t3); margin-top: 4px; }
.hs-sep     { width: 1px; height: 40px; background: var(--border); margin-right: 28px; flex-shrink: 0; }

.hero-dl-wrap   { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.hero-dl-btn    {
  display: inline-flex; align-items: center; gap: 10px;
  height: 52px; padding: 0 32px;
  background: var(--primary); color: #fff;
  border: none; border-radius: 12px;
  font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 600;
  cursor: pointer; text-decoration: none;
  transition: background .15s, box-shadow .15s, transform .15s;
  box-shadow: 0 4px 20px rgba(79,70,229,.4);
}
.hero-dl-btn:hover { background: #4338ca; box-shadow: 0 8px 28px rgba(79,70,229,.5); transform: translateY(-1px); }
.hero-dl-meta {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--t3);
}
.hero-dl-dot { width: 3px; height: 3px; background: var(--t4); border-radius: 50%; flex-shrink: 0; }

/* ── SIGNUP CARD ─────────────────────────────────────────────── */
.signup-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px; padding: 28px;
  box-shadow: 0 24px 64px rgba(0,0,0,.5);
}
.sc-head   { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.sc-icon   { width: 40px; height: 40px; background: var(--pd); border: 1px solid rgba(79,70,229,.2); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.sc-title  { font-size: 15px; font-weight: 700; color: var(--t1); }
.sc-sub    { font-size: 12px; color: var(--t3); margin-top: 2px; }
.su-success { display: none; text-align: center; padding: 16px 0 8px; }
.su-emoji  { font-size: 36px; margin-bottom: 12px; }
.su-title  { font-size: 16px; font-weight: 700; color: var(--t1); margin-bottom: 6px; }
.su-body   { font-size: 13px; color: var(--t2); line-height: 1.6; margin-bottom: 20px; }
.flabel    { display: block; font-size: 11px; font-weight: 600; color: var(--t3); text-transform: uppercase; letter-spacing: .07em; margin-bottom: 7px; }
.finput    { width: 100%; height: 42px; background: var(--ibg); border: 1.5px solid var(--border); border-radius: 10px; color: var(--t1); font-size: 13px; padding: 0 14px; outline: none; transition: border-color .15s, box-shadow .15s; font-family: 'Inter', sans-serif; }
.finput:focus { border-color: var(--primary); box-shadow: 0 0 0 3px var(--pg); }
.finput::placeholder { color: var(--t4); }
.frow      { margin-bottom: 14px; }
.ferr      { display: none; font-size: 12px; color: #fca5a5; padding: 8px 12px; background: rgba(239,68,68,.08); border: 1px solid rgba(239,68,68,.18); border-radius: 8px; margin-bottom: 12px; }
.btn-submit { height: 44px; width: 100%; background: var(--primary); color: #fff; border: none; border-radius: 10px; font-size: 13px; font-weight: 600; cursor: pointer; transition: background .15s; font-family: 'Inter', sans-serif; }
.btn-submit:hover    { background: #4338ca; }
.btn-submit:disabled { opacity: .5; cursor: not-allowed; }
.btn-dl    { display: inline-flex; align-items: center; justify-content: center; gap: 8px; height: 44px; padding: 0 24px; background: var(--primary); color: #fff; border: none; border-radius: 10px; font-size: 13px; font-weight: 600; cursor: pointer; text-decoration: none; transition: background .15s; }
.btn-dl:hover { background: #4338ca; }
.form-fine { font-size: 11px; color: var(--t4); text-align: center; margin-top: 12px; line-height: 1.6; }
.form-fine a { color: var(--t3); text-decoration: none; }
.form-fine a:hover { color: var(--t2); }

/* ── STRIP ───────────────────────────────────────────────────── */
.strip      { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 14px 40px; display: flex; flex-wrap: wrap; justify-content: center; gap: 32px; }
.strip-item { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 500; color: var(--t2); white-space: nowrap; }
.sdot       { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }

/* ── SECTIONS ────────────────────────────────────────────────── */
section   { padding: 88px 40px; }
.s-wrap   { max-width: 1100px; margin: 0 auto; }
.s-eyebrow { font-size: 11px; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 12px; display: block; }
.s-title  { font-size: clamp(26px, 3vw, 40px); font-weight: 800; color: var(--t1); line-height: 1.18; letter-spacing: -.02em; margin-bottom: 14px; }
.s-sub    { font-size: 15px; color: var(--t2); line-height: 1.75; }
.s-head   { margin-bottom: 48px; }

/* ── REVEAL ──────────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.reveal.on { opacity: 1; transform: translateY(0); }
.stagger > * { opacity: 0; transform: translateY(14px); transition: opacity .5s ease, transform .5s ease; }
.stagger.on > *:nth-child(1) { opacity:1; transform:none; transition-delay:.04s }
.stagger.on > *:nth-child(2) { opacity:1; transform:none; transition-delay:.12s }
.stagger.on > *:nth-child(3) { opacity:1; transform:none; transition-delay:.20s }
.stagger.on > *:nth-child(4) { opacity:1; transform:none; transition-delay:.28s }
.stagger.on > *:nth-child(5) { opacity:1; transform:none; transition-delay:.36s }
.stagger.on > *:nth-child(6) { opacity:1; transform:none; transition-delay:.44s }

/* ── STEPS ───────────────────────────────────────────────────── */
.steps  { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.step   { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 24px; transition: transform .2s, box-shadow .2s, border-color .2s; }
.step:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,.3); border-color: rgba(79,70,229,.3); }
.step-n { width: 36px; height: 36px; background: var(--pd); border: 1px solid rgba(79,70,229,.25); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 800; color: var(--primary); margin-bottom: 16px; }
.step-t { font-size: 15px; font-weight: 700; color: var(--t1); margin-bottom: 8px; }
.step-b { font-size: 13px; color: var(--t2); line-height: 1.65; }

/* ── FEATURES ────────────────────────────────────────────────── */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.feat      { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 22px; transition: border-color .2s, transform .2s, box-shadow .2s; }
.feat:hover { border-color: rgba(79,70,229,.35); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,.3); }
.feat-ico  { width: 38px; height: 38px; border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.feat-t    { font-size: 14px; font-weight: 600; color: var(--t1); margin-bottom: 6px; }
.feat-b    { font-size: 13px; color: var(--t2); line-height: 1.65; }

/* ── DATA PREVIEW ────────────────────────────────────────────── */
.preview-wrap  { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; box-shadow: 0 24px 64px rgba(0,0,0,.4); }
.preview-bar   { height: 40px; background: var(--raised); border-bottom: 1px solid var(--border); display: flex; align-items: center; padding: 0 16px; gap: 7px; }
.pb-dot        { width: 10px; height: 10px; border-radius: 50%; }
.preview-title { font-size: 12px; color: var(--t3); margin-left: 6px; }
.pt     { width: 100%; min-width: 560px; border-collapse: collapse; font-size: 12px; }
.pt th  { padding: 9px 14px; background: var(--raised); color: var(--t3); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; text-align: left; border-bottom: 1px solid var(--border); white-space: nowrap; }
.pt td  { padding: 11px 14px; border-bottom: 1px solid var(--bsub); color: var(--t2); vertical-align: middle; }
.pt tr:last-child td { border-bottom: none; }
.pt tr:hover td { background: var(--raised); }
.p-name { font-size: 13px; font-weight: 500; color: var(--t1); }
.p-type { font-size: 11px; color: var(--t3); margin-top: 2px; }
.pbadge { display: inline-block; font-size: 10px; font-weight: 600; padding: 2px 8px; border-radius: 20px; }
.bg { background: var(--sd); color: var(--success); }
.ba { background: var(--wd); color: var(--warning); }
.bi { background: var(--id); color: var(--info); }
.blurred { filter: blur(4px); user-select: none; pointer-events: none; }

/* ── PRICING ─────────────────────────────────────────────────── */
.price-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.pc   { background: var(--surface); border: 2px solid var(--border); border-radius: 16px; padding: 24px; position: relative; transition: border-color .2s, transform .2s; }
.pc:hover { transform: translateY(-2px); }
.pc.featured { border-color: var(--primary); background: linear-gradient(160deg, rgba(79,70,229,.08) 0%, var(--surface) 55%); }
.pc.featured::before { content:'POPULAR'; position:absolute; top:-11px; left:50%; transform:translateX(-50%); background:var(--primary); color:#fff; font-size:10px; font-weight:800; letter-spacing:.08em; padding:3px 12px; border-radius:20px; white-space:nowrap; }
.pc-badge   { display: inline-block; font-size: 10px; font-weight: 700; padding: 2px 10px; border-radius: 20px; margin-bottom: 14px; }
.pc-price   { font-size: 30px; font-weight: 800; color: var(--t1); letter-spacing: -.02em; }
.pc-per     { font-size: 13px; font-weight: 400; color: var(--t3); }
.pc-name    { font-size: 15px; font-weight: 700; color: var(--t1); margin: 8px 0 4px; }
.pc-credits { font-size: 13px; color: var(--t2); }
.pc-rate    { font-size: 12px; color: var(--t3); margin: 3px 0 20px; }
.pc-btn     { width: 100%; height: 40px; border-radius: 10px; font-size: 13px; font-weight: 600; cursor: pointer; transition: all .15s; font-family: 'Inter', sans-serif; border: none; }
.pc-btn-fill     { background: var(--primary); color: #fff; }
.pc-btn-fill:hover { background: #4338ca; }
.pc-btn-out      { background: transparent; color: var(--t2); border: 1px solid var(--border) !important; }
.pc-btn-out:hover { background: var(--raised); color: var(--t1); border-color: rgba(79,70,229,.3) !important; }
.topup-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 28px; }
.topup     { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 16px; text-align: center; cursor: pointer; transition: border-color .15s, background .15s; }
.topup:hover { border-color: rgba(79,70,229,.3); background: var(--raised); }
.topup-n   { font-size: 17px; font-weight: 700; color: var(--t1); }
.topup-p   { font-size: 14px; font-weight: 600; color: var(--primary); margin-top: 3px; }
.topup-s   { font-size: 11px; color: var(--t3); margin-top: 2px; }

/* ── FAQ ─────────────────────────────────────────────────────── */
.faq      { display: flex; flex-direction: column; gap: 8px; max-width: 720px; }
.faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; transition: border-color .2s; }
.faq-item.open { border-color: rgba(79,70,229,.3); }
.faq-btn  { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; background: transparent; border: none; color: var(--t1); font-size: 14px; font-weight: 500; cursor: pointer; text-align: left; font-family: 'Inter', sans-serif; gap: 12px; }
.faq-ico  { width: 20px; height: 20px; border: 1px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 13px; color: var(--t3); transition: transform .3s, border-color .2s, color .2s; }
.faq-item.open .faq-ico { transform: rotate(45deg); border-color: var(--primary); color: var(--primary); }
.faq-ans  { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-body { padding: 0 20px 16px; font-size: 13px; color: var(--t2); line-height: 1.7; }

/* ── CTA SECTION ─────────────────────────────────────────────── */
.cta-section { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.cta-inner   { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 420px; gap: 64px; align-items: center; padding: 88px 40px; }
.cta-h       { font-size: clamp(26px, 3vw, 40px); font-weight: 800; color: var(--t1); line-height: 1.18; letter-spacing: -.02em; margin-bottom: 14px; }
.cta-h em    { font-style: normal; color: var(--primary); }
.cta-perks   { list-style: none; margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
.cta-perk    { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--t2); }
.perk-dot    { width: 6px; height: 6px; background: var(--success); border-radius: 50%; flex-shrink: 0; box-shadow: 0 0 6px var(--success); }

/* ── FOOTER ──────────────────────────────────────────────────── */
footer         { padding: 40px; border-top: 1px solid var(--border); }
.footer-inner  { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-brand  { display: flex; align-items: center; gap: 10px; }
.footer-name   { font-size: 14px; font-weight: 700; color: var(--t1); }
.footer-links  { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a { font-size: 12px; color: var(--t3); text-decoration: none; transition: color .15s; }
.footer-links a:hover { color: var(--t2); }
.footer-copy   { font-size: 12px; color: var(--t4); }

/* ── RESPONSIVE ──────────────────────────────────────────────── */

@media (max-width: 1024px) {
  .price-grid { grid-template-columns: repeat(2, 1fr); }
  .topup-row  { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .nav           { padding: 0 24px; }
  .nav-links     { display: none; }
  .nav-actions   { display: none; }
  .hamburger     { display: flex; }
  .mob-nav       { position: fixed; top: 64px; left: 0; right: 0; z-index: 99; }

  .hero-wrap     { grid-template-columns: 1fr; padding: 96px 24px 56px; gap: 40px; }
  .hero-sub      { font-size: 15px; max-width: 100%; }

  .steps         { grid-template-columns: 1fr; }
  .feat-grid     { grid-template-columns: repeat(2, 1fr); }
  section        { padding: 64px 24px; }
  .s-head        { margin-bottom: 36px; }
  .strip         { padding: 14px 24px; gap: 20px; }

  .cta-section   { background: var(--surface); }
  .cta-inner     { grid-template-columns: 1fr; gap: 32px; padding: 64px 24px; }

  .preview-wrap  { border-radius: 12px; }
}

@media (max-width: 560px) {
  .nav           { height: 56px; padding: 0 16px; }
  .mob-nav       { top: 56px; }

  .hero-wrap     { padding: 80px 16px 48px; gap: 32px; }
  .hero-h1       { font-size: 28px; }
  .hero-sub      { font-size: 14px; margin-bottom: 28px; }
  .hero-stats    { gap: 0; margin-bottom: 32px; }
  .hs            { padding: 0 16px 0 0; }
  .hs-sep        { margin-right: 16px; height: 32px; }
  .hs-n          { font-size: 20px; }
  .hero-dl-btn   { width: 100%; justify-content: center; }
  .hero-dl-meta  { font-size: 11px; }

  .signup-card   { padding: 20px; border-radius: 16px; }
  .sc-head       { margin-bottom: 18px; }
  .btn-dl        { width: 100%; }

  .strip         { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 14px 16px; }
  .strip-item    { font-size: 12px; }

  .feat-grid     { grid-template-columns: 1fr; }
  .price-grid    { grid-template-columns: 1fr; }
  .topup-row     { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  section        { padding: 48px 16px; }
  .s-title       { font-size: 22px; }
  .s-head        { margin-bottom: 28px; }
  .step          { padding: 20px; }
  .pc            { padding: 20px; }
  .pc-price      { font-size: 26px; }

  .pt th:nth-child(4), .pt td:nth-child(4),
  .pt th:nth-child(5), .pt td:nth-child(5),
  .pt th:nth-child(6), .pt td:nth-child(6) { display: none; }

  .footer-inner  { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-links  { gap: 14px; }
  .cta-inner     { padding: 48px 16px; }
  .cta-h         { font-size: 24px; }
}

@media (max-width: 380px) {
  .hero-h1       { font-size: 24px; }
  .hero-stats    { flex-wrap: wrap; gap: 16px; }
  .hs-sep        { display: none; }
  .signup-card   { padding: 16px; }
  .strip         { grid-template-columns: 1fr; }
}
