/* ================================================================
   VALOR PERKS — css/index.css  v5.0
   Design reference: Debitum (dark teal gradient hero, centered,
   white stats panel below), FX scanner signals reference.
   All existing JS hooks preserved. Zero logic changes.
   ================================================================ */

/* ── RESET + BASE ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  background: #f7f9fc;
  color: #0f1623;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; border: none; background: none; cursor: pointer; }
ul, ol { list-style: none; }
input, textarea, select { font: inherit; }

/* ── CONTAINERS ─────────────────────────────────────────────── */
.container    { width: min(1200px, 100% - 40px); margin-inline: auto; }
.container--sm{ width: min(760px,  100% - 40px); margin-inline: auto; }
.text-center  { text-align: center; }
.hidden       { display: none !important; }

/* ── CSS CUSTOM PROPS (mirrors design-system for standalone use) */
:root {
  --blue-500:    #3b82f6;
  --blue-400:    #60a5fa;
  --blue-dim:    rgba(59,130,246,0.10);
  --emerald-500: #10b981;
  --emerald-400: #34d399;
  --emerald-dim: rgba(16,185,129,0.10);
  --amber-500:   #f59e0b;
  --amber-400:   #fbbf24;
  --amber-dim:   rgba(245,158,11,0.10);
  --red-500:     #ef4444;
  --red-400:     #f87171;
  --navy-950:    #040d1a;
  --navy-900:    #071128;
  --slate-700:   #151e2e;
  --s-4:4px;--s-6:6px;--s-8:8px;--s-10:10px;--s-12:12px;--s-16:16px;
  --s-20:20px;--s-24:24px;--s-28:28px;--s-32:32px;--s-40:40px;
  --s-48:48px;--s-56:56px;--s-64:64px;--s-80:80px;
  --r-xs:4px;--r-sm:8px;--r-md:12px;--r-lg:16px;--r-xl:24px;--r-2xl:32px;--r-pill:100px;
  --font-display:'Plus Jakarta Sans','DM Sans',sans-serif;
  --font-mono:'JetBrains Mono','DM Mono',monospace;
  --font-number:'Syne','Plus Jakarta Sans',sans-serif;
  --ease-out:cubic-bezier(0.16,1,0.3,1);
  --dur-base:220ms;--dur-slow:380ms;--dur-fast:120ms;
  /* sp aliases */
  --sp-4:var(--s-4);--sp-5:var(--s-20);--sp-8:var(--s-32);
  --sp-10:var(--s-40);--sp-12:var(--s-48);--sp-16:var(--s-64);
  --sp-20:var(--s-80);
  /* colour aliases (for existing index.css deps) */
  --em-400:var(--emerald-400);--em-500:var(--emerald-500);
  --bl-400:var(--blue-400);--bl-500:var(--blue-500);
  --am-400:var(--amber-400);--am-500:var(--amber-500);
  --text-1:#e8edf5;--text-2:#8898b4;--text-3:#4a5a78;
  --border-faint:rgba(180,200,255,0.05);
  --border-subtle:rgba(180,200,255,0.09);
  --border-base:rgba(180,200,255,0.13);
}

/* ── SHARED BUTTON STYLES ───────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.01em;
  padding: 11px 22px;
  border-radius: var(--r-sm);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--dur-base) var(--ease-out);
  white-space: nowrap;
}
.btn-primary  { background: var(--blue-500); color: #fff; border-color: var(--blue-500); box-shadow: 0 4px 14px rgba(59,130,246,0.25); }
.btn-primary:hover { background: #2563eb; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(59,130,246,0.35); }
.btn-secondary{ background: var(--emerald-500); color: #fff; border-color: var(--emerald-500); }
.btn-secondary:hover { background: var(--emerald-400); transform: translateY(-1px); }
.btn-ghost    { background: transparent; color: #3d5280; border-color: rgba(0,0,0,0.14); }
.btn-ghost:hover { background: rgba(0,0,0,0.04); color: #0f1623; }
.btn-lg       { padding: 13px 26px; font-size: 15px; border-radius: var(--r-md); }
.btn-xl       { padding: 15px 32px; font-size: 16px; border-radius: var(--r-md); }
.btn-full     { width: 100%; }

/* Toast */
.toast-container { position: fixed; bottom: 24px; right: 24px; z-index: 9999; display: flex; flex-direction: column; gap: 8px; pointer-events: none; }
.toast { display: flex; align-items: center; gap: 12px; padding: 14px 16px; background: #fff; border: 1px solid rgba(0,0,0,0.1); border-radius: var(--r-md); box-shadow: 0 8px 32px rgba(0,0,0,0.12); font-size: 14px; color: #0f1623; pointer-events: all; animation: toastIn 0.3s ease both; min-width: 260px; max-width: 360px; }
.toast.hiding { animation: toastOut 0.25s ease forwards; }
.toast--success { border-left: 3px solid var(--emerald-500); }
.toast--error   { border-left: 3px solid var(--red-500); }
.toast--info    { border-left: 3px solid var(--blue-500); }
.toast--warning { border-left: 3px solid var(--amber-500); }
@keyframes toastIn  { from { opacity: 0; transform: translateX(16px); } to { opacity: 1; transform: none; } }
@keyframes toastOut { to   { opacity: 0; transform: translateX(16px); } }

/* ── REVEAL ANIMATION ───────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out); }
.reveal.visible { opacity: 1; transform: none; }
.reveal[data-delay="50"]  { transition-delay:  50ms; }
.reveal[data-delay="100"] { transition-delay: 100ms; }
.reveal[data-delay="150"] { transition-delay: 150ms; }
.reveal[data-delay="200"] { transition-delay: 200ms; }
.reveal[data-delay="250"] { transition-delay: 250ms; }
.reveal[data-delay="300"] { transition-delay: 300ms; }

/* ── NAVBAR ─────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: 64px;
  display: flex;
  align-items: center;
  /* Starts transparent over the dark hero */
  background: transparent;
  transition: background var(--dur-slow), box-shadow var(--dur-slow);
}
.navbar.scrolled {
  background: rgba(4,13,26,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.05);
}
.nav-inner {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.nav-logo-img { height: 30px; width: auto; }
.nav-logo-wordmark { font-family: var(--font-display); font-size: 17px; font-weight: 800; color: #fff; letter-spacing: -0.03em; }
.nav-logo-wordmark span { color: var(--blue-400); }
.nav-links { display: flex; align-items: center; gap: 4px; margin-left: auto; list-style: none; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  font-weight: 500;
  /* White links over dark hero */
  color: rgba(255,255,255,0.75);
  padding: 7px 12px;
  border-radius: var(--r-sm);
  text-decoration: none;
  transition: color var(--dur-fast), background var(--dur-fast);
  white-space: nowrap;
}
.nav-link:hover { color: #fff; background: rgba(255,255,255,0.08); }
.nav-badge {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 600;
  background: var(--emerald-500);
  color: #fff;
  padding: 2px 5px;
  border-radius: 3px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.nav-actions { display: flex; align-items: center; gap: 8px; margin-left: 16px; flex-shrink: 0; }

/* Nav buttons — white style on dark hero */
.btn-nav-ghost {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--r-sm);
  padding: 7px 16px;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--dur-fast);
  white-space: nowrap;
}
.btn-nav-ghost:hover { color: #fff; border-color: rgba(255,255,255,0.4); background: rgba(255,255,255,0.07); }
.btn-nav-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  /* Lime/accent CTA — matching image reference */
  background: #c8f135;
  color: #0a1a00;
  border: none;
  border-radius: var(--r-pill);
  padding: 8px 18px;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--dur-base) var(--ease-out);
  white-space: nowrap;
}
.btn-nav-primary:hover { background: #d4f74c; transform: translateY(-1px); box-shadow: 0 4px 14px rgba(200,241,53,0.3); }

/* Hamburger */
.nav-hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; border-radius: var(--r-sm); }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: rgba(255,255,255,0.8); border-radius: 2px; transition: all var(--dur-base) var(--ease-out); }
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); background: #fff; }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); background: #fff; }

/* ── MOBILE NAV DRAWER ──────────────────────────────────────── */
.nav-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(300px, 88vw);
  background: #0c1a3a;
  z-index: 950;
  padding: 24px 28px 40px;
  display: flex; flex-direction: column; gap: 4px;
  transform: translateX(110%);
  transition: transform var(--dur-slow) var(--ease-out);
  overflow-y: auto;
}
.nav-drawer.open { transform: translateX(0); }
.nav-drawer-backdrop {
  position: fixed; inset: 0;
  background: rgba(4,13,26,0.6);
  backdrop-filter: blur(3px);
  z-index: 940;
  opacity: 0; visibility: hidden;
  transition: opacity var(--dur-base), visibility var(--dur-base);
}
.nav-drawer-backdrop.open { opacity: 1; visibility: visible; }
.nav-drawer-close {
  position: absolute; top: 18px; right: 18px;
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-sm);
  color: rgba(255,255,255,0.5);
  display: grid; place-items: center;
  cursor: pointer;
  transition: all var(--dur-fast);
}
.nav-drawer-close:hover { color: #fff; border-color: rgba(255,255,255,0.3); }
.nav-drawer-brand { margin-bottom: 24px; padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.nav-drawer-links { display: flex; flex-direction: column; flex: 1; }
.nav-drawer-link {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-display);
  font-size: 16px; font-weight: 600;
  color: rgba(255,255,255,0.65);
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  text-decoration: none; letter-spacing: -0.01em;
  transition: color var(--dur-fast), padding-left var(--dur-fast);
}
.nav-drawer-link:hover { color: #fff; padding-left: 4px; }
.nav-drawer-badge { font-family: var(--font-mono); font-size: 9px; font-weight: 600; background: var(--emerald-500); color: #fff; padding: 2px 5px; border-radius: 3px; letter-spacing: 0.04em; text-transform: uppercase; }
.nav-drawer-actions { margin-top: 28px; display: flex; flex-direction: column; gap: 10px; }
.nav-drawer-actions .btn-ghost { color: rgba(255,255,255,0.65); border-color: rgba(255,255,255,0.15); }
.nav-drawer-actions .btn-ghost:hover { color: #fff; border-color: rgba(255,255,255,0.3); background: rgba(255,255,255,0.06); }

/* ── TICKER BAR ─────────────────────────────────────────────── */
.vp-ticker-bar {
  position: fixed;
  top: 64px; left: 0; right: 0;
  z-index: 800;
  height: 36px;
  background: rgba(7,17,40,0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 4%, black 96%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 4%, black 96%, transparent);
}
.ticker-track { display: flex; white-space: nowrap; animation: tickerScroll 36s linear infinite; }
@keyframes tickerScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.ticker-item { display: inline-flex; align-items: center; gap: 6px; padding: 0 24px; font-family: var(--font-mono); font-size: 11px; border-right: 1px solid rgba(255,255,255,0.05); }
.ticker-pair  { color: rgba(255,255,255,0.35); font-weight: 500; }
.ticker-price { color: rgba(255,255,255,0.75); font-weight: 500; }
.ticker-change { font-size: 10px; font-weight: 600; }
.ticker-change.up   { color: var(--emerald-400); }
.ticker-change.down { color: var(--red-400); }

/* ── HERO ─────────────────────────────────────────────────────
   Dark teal-to-white gradient, centered content.
   Matches Debitum reference image exactly.
═══════════════════════════════════════════════════════════ */
.vp-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding-top: 100px; /* nav + ticker */
}
.vp-hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.vp-hero-bg-img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  opacity: 0.12 !important;
}
/* The signature gradient: deep teal/navy at top, fades to white */
.vp-hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 10%, rgba(14,30,60,0.95) 0%, rgba(7,22,50,0.85) 40%, rgba(240,245,252,0.0) 100%),
    linear-gradient(180deg, #071128 0%, #0c1e40 25%, #1a3560 45%, #b8cce8 70%, #f0f5fc 85%, #f7f9fc 100%);
}
.vp-hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(100,160,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(100,160,255,0.04) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(ellipse 90% 60% at 50% 20%, black 0%, transparent 70%);
  pointer-events: none;
}

/* Hero content — centered */
.vp-hero-inner {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 24px 80px;
  max-width: 860px;
  margin-inline: auto;
  width: 100%;
}

/* Live dot eyebrow */
.vp-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-pill);
  padding: 5px 14px;
  margin-bottom: 28px;
  letter-spacing: 0.04em;
}
.vp-live-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--emerald-400);
  position: relative;
  flex-shrink: 0;
}
.vp-live-dot::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: var(--emerald-400);
  opacity: 0.3;
  animation: vpPulse 2s ease-out infinite;
}
@keyframes vpPulse { 0%{transform:scale(1);opacity:0.3;} 100%{transform:scale(2.4);opacity:0;} }

/* Hero headline — large, centered, white */
.vp-hero-headline {
  font-family: var(--font-display);
  font-size: clamp(38px, 7vw, 76px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: #ffffff;
  margin-bottom: 24px;
}
.vp-hero-headline em {
  font-style: italic;
  /* Subtle gradient on the italic — accent touches */
  background: linear-gradient(135deg, #a8d4ff 0%, #7cf5c4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.vp-hero-sub {
  font-size: clamp(15px, 1.8vw, 18px);
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto 36px;
}

/* Hero CTA row */
.vp-hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.vp-btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  /* Dark pill matching reference — prominent CTA */
  background: #0f1623;
  color: #ffffff;
  border: none;
  border-radius: var(--r-pill);
  padding: 14px 28px;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--dur-base) var(--ease-out);
  letter-spacing: -0.01em;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.vp-btn-hero-primary:hover { background: #1c2e50; transform: translateY(-1px); box-shadow: 0 6px 24px rgba(0,0,0,0.4); }
.vp-btn-hero-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  background: transparent;
  color: rgba(255,255,255,0.8);
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: var(--r-pill);
  padding: 13px 26px;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--dur-base) var(--ease-out);
  letter-spacing: -0.01em;
}
.vp-btn-hero-ghost:hover { color: #fff; border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.07); }

/* Trust row */
.vp-hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
}
.vp-trust-item { display: flex; align-items: center; gap: 6px; }
.vp-trust-item svg { color: rgba(255,255,255,0.4); flex-shrink: 0; }
.vp-trust-sep { color: rgba(255,255,255,0.2); }

/* ── STATS PANEL — white cards below dark gradient ──────────── */
.vp-stats-panel {
  position: relative;
  z-index: 2;
  background: #ffffff;
  border-top: 1px solid rgba(0,0,0,0.06);
  padding: 0;
}
.vp-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.vp-stat-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 28px 28px;
  border-right: 1px solid rgba(0,0,0,0.06);
  transition: background var(--dur-fast);
}
.vp-stat-card:last-child { border-right: none; }
.vp-stat-card:hover { background: #f7f9fc; }
.vp-stat-icon {
  width: 40px; height: 40px;
  border-radius: var(--r-md);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.vp-stat-icon--blue   { background: rgba(59,130,246,0.09); color: var(--blue-500); border: 1px solid rgba(59,130,246,0.14); }
.vp-stat-icon--emerald{ background: rgba(16,185,129,0.09); color: var(--emerald-500); border: 1px solid rgba(16,185,129,0.14); }
.vp-stat-icon--amber  { background: rgba(245,158,11,0.09); color: var(--amber-500); border: 1px solid rgba(245,158,11,0.14); }
.vp-stat-num { font-family: var(--font-number); font-size: 26px; font-weight: 800; color: #0f1623; letter-spacing: -0.03em; line-height: 1; margin-bottom: 4px; }
.h-stat-num  { font-family: var(--font-number); font-size: 26px; font-weight: 800; color: #0f1623; letter-spacing: -0.03em; }
.vp-stat-lbl { font-family: var(--font-mono); font-size: 10px; color: #5a6e96; letter-spacing: 0.07em; text-transform: uppercase; }

/* ── SECTION BASE ───────────────────────────────────────────── */
.vp-section { padding: 96px 0; }
.vp-section--white  { background: #ffffff; }
.vp-section--raised { background: #f7f9fc; }

.vp-section-intro { margin-bottom: 56px; }

/* Eyebrow pill — matches Debitum "WHY CHOOSE DEBITUM" capsule */
.vp-eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #3d5280;
  background: #f0f4fa;
  border: 1px solid rgba(0,0,0,0.09);
  border-radius: var(--r-pill);
  padding: 5px 14px;
  margin-bottom: 20px;
}

.vp-section-headline {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.8vw, 44px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #0f1623;
  margin-bottom: 16px;
}
.vp-section-headline em { font-style: italic; color: var(--blue-500); }

.vp-section-body {
  font-size: 16px;
  color: #3d5280;
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 24px;
}

/* ── WHY VALOR PERKS ────────────────────────────────────────── */
.vp-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}
.vp-why-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  transition: border-color var(--dur-base), transform var(--dur-base), box-shadow var(--dur-base);
}
.vp-why-card:hover { border-color: rgba(59,130,246,0.2); transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,0,0,0.07); }
.vp-why-icon { width: 44px; height: 44px; border-radius: var(--r-md); display: grid; place-items: center; margin-bottom: 18px; }
.vp-icon--blue   { background: rgba(59,130,246,0.08); color: var(--blue-500); border: 1px solid rgba(59,130,246,0.14); }
.vp-icon--emerald{ background: rgba(16,185,129,0.08); color: var(--emerald-500); border: 1px solid rgba(16,185,129,0.14); }
.vp-icon--amber  { background: rgba(245,158,11,0.08); color: var(--amber-500); border: 1px solid rgba(245,158,11,0.14); }
.vp-why-card h3 { font-family: var(--font-display); font-size: 15px; font-weight: 700; color: #0f1623; letter-spacing: -0.02em; margin-bottom: 8px; }
.vp-why-card p  { font-size: 13px; color: #3d5280; line-height: 1.7; }

/* Trust strip */
.vp-trust-strip { background: #fff; border: 1px solid rgba(0,0,0,0.07); border-radius: var(--r-lg); padding: 24px 32px; }
.vp-trust-strip-inner { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.vp-trust-strip-label { font-family: var(--font-mono); font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: #5a6e96; flex-shrink: 0; }
.vp-trust-badge-img { height: 32px !important; width: auto !important; object-fit: contain !important; flex-shrink: 0; }
.vp-trust-strip-div { width: 1px; height: 32px; background: rgba(0,0,0,0.08); flex-shrink: 0; }
.vp-trust-strip-desc { font-size: 13px; color: #5a6e96; line-height: 1.6; flex: 1; min-width: 200px; }

/* ── HOW IT WORKS — step grid ───────────────────────────────── */
.vp-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(0,0,0,0.06);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
}
.vp-step {
  background: #fff;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  transition: background var(--dur-base);
}
.vp-step:hover { background: #f7f9fc; }
.vp-step-num {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--blue-500);
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}
.vp-step-icon-wrap { color: #3d5280; margin-bottom: 14px; }
.vp-step-img { width: 100%; height: 130px; object-fit: cover; border-radius: var(--r-md); margin-bottom: 16px; border: 1px solid rgba(0,0,0,0.06); }
.vp-step h3 { font-family: var(--font-display); font-size: 15px; font-weight: 700; color: #0f1623; letter-spacing: -0.02em; margin-bottom: 8px; }
.vp-step p  { font-size: 13px; color: #3d5280; line-height: 1.7; margin-bottom: 16px; flex: 1; }
.vp-step-link { display: inline-flex; align-items: center; gap: 4px; font-size: 12px; font-weight: 600; color: var(--blue-500); text-decoration: none; transition: gap var(--dur-fast); margin-top: auto; }
.vp-step-link:hover { gap: 8px; }

/* ── EARN ───────────────────────────────────────────────────── */
.vp-earn-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.vp-earn-streams { display: flex; flex-direction: column; gap: 8px; margin-top: 24px; }
.vp-earn-stream {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 18px; border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--r-md); background: #fff;
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
}
.vp-earn-stream:hover { border-color: rgba(59,130,246,0.2); box-shadow: 0 4px 12px rgba(0,0,0,0.05); }
.vp-earn-icon { width: 34px; height: 34px; border-radius: var(--r-sm); display: grid; place-items: center; flex-shrink: 0; }
.vp-earn-icon--em { background: rgba(16,185,129,0.08); color: var(--emerald-500); border: 1px solid rgba(16,185,129,0.14); }
.vp-earn-icon--bl { background: rgba(59,130,246,0.08); color: var(--blue-500);    border: 1px solid rgba(59,130,246,0.14); }
.vp-earn-icon--am { background: rgba(245,158,11,0.08); color: var(--amber-500);   border: 1px solid rgba(245,158,11,0.14); }
.vp-earn-stream-body { flex: 1; }
.vp-earn-stream-body strong { display: block; font-size: 13px; font-weight: 600; color: #0f1623; margin-bottom: 4px; }
.vp-earn-stream-body p { font-size: 12px; color: #3d5280; line-height: 1.6; margin: 0; }
.vp-earn-rate { font-family: var(--font-mono); font-size: 11px; font-weight: 700; color: var(--emerald-500); background: rgba(16,185,129,0.08); border: 1px solid rgba(16,185,129,0.18); padding: 4px 9px; border-radius: var(--r-xs); white-space: nowrap; flex-shrink: 0; align-self: flex-start; margin-top: 2px; }
.vp-earn-illus { width: 100%; max-height: 240px; object-fit: cover; border-radius: var(--r-xl); border: 1px solid rgba(0,0,0,0.07); margin-bottom: 18px; }
.vp-tiers-card { background: #fff; border: 1px solid rgba(0,0,0,0.07); border-radius: var(--r-lg); padding: 20px; }
.vp-tiers-card-hdr { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; font-family: var(--font-display); font-size: 13px; font-weight: 700; color: #0f1623; }
.vp-tiers-link { font-size: 12px; color: var(--blue-500); }
.vp-tier-row { display: flex; align-items: center; gap: 10px; padding: 10px 0; border-bottom: 1px solid rgba(0,0,0,0.05); }
.vp-tier-row:last-child { border-bottom: none; }
.vp-tier-nm { font-size: 13px; font-weight: 600; color: #0f1623; min-width: 46px; }
.vp-tier-desc { flex: 1; font-size: 12px; color: #5a6e96; }
.vp-tier-badge { display: inline-flex; align-items: center; font-family: var(--font-mono); font-size: 9px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; padding: 3px 7px; border-radius: var(--r-xs); border: 1px solid; white-space: nowrap; }
.vp-tier-badge--neutral { color: #5a6e96; background: rgba(0,0,0,0.04); border-color: rgba(0,0,0,0.1); }
.vp-tier-badge--blue    { color: var(--blue-500); background: rgba(59,130,246,0.07); border-color: rgba(59,130,246,0.18); }
.vp-tier-badge--amber   { color: var(--amber-500); background: rgba(245,158,11,0.07); border-color: rgba(245,158,11,0.18); }
.vp-tier-badge--emerald { color: var(--emerald-500); background: rgba(16,185,129,0.07); border-color: rgba(16,185,129,0.18); }

/* ── SCANNER PROMO ──────────────────────────────────────────── */
.vp-scanner-layout { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center; }
.vp-scanner-terminal { background: #0b1120; border: 1px solid rgba(255,255,255,0.07); border-radius: var(--r-xl); overflow: hidden; box-shadow: 0 24px 64px rgba(0,0,0,0.2); font-family: var(--font-mono); }
.vp-term-bar { display: flex; align-items: center; gap: 10px; padding: 10px 16px; background: rgba(255,255,255,0.03); border-bottom: 1px solid rgba(255,255,255,0.05); }
.vp-term-dots { display: flex; gap: 6px; }
.vp-term-dots span { width: 11px; height: 11px; border-radius: 50%; }
.vp-term-dots span:nth-child(1) { background: #ff5f57; }
.vp-term-dots span:nth-child(2) { background: #febc2e; }
.vp-term-dots span:nth-child(3) { background: #28c840; }
.vp-term-title { font-size: 11px; color: rgba(255,255,255,0.25); margin: 0 auto; }
.vp-term-body { padding: 14px; }
.vp-term-hdr { display: grid; grid-template-columns: 68px 68px 62px 62px 62px 40px; gap: 4px; padding: 8px 4px; border-bottom: 1px solid rgba(255,255,255,0.06); margin-bottom: 4px; font-size: 9px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.18); }
.vp-term-row { display: grid; grid-template-columns: 68px 68px 62px 62px 62px 40px; gap: 4px; padding: 7px 4px; border-radius: 4px; font-size: 11px; transition: background var(--dur-fast); }
.vp-term-row:hover { background: rgba(255,255,255,0.03); }
/* Accent left bar (matching FX scanner image reference) */
.vp-term-row--buy  { border-left: 2px solid rgba(16,185,129,0.5); }
.vp-term-row--sell { border-left: 2px solid rgba(239,68,68,0.5); }
.vp-term-row--wait { border-left: 2px solid rgba(255,255,255,0.1); opacity: 0.4; }
.t-pair  { color: rgba(255,255,255,0.85); font-weight: 500; }
.t-buy   { color: #34d399; font-weight: 700; }
.t-sell  { color: #f87171; font-weight: 700; }
.t-wait  { color: rgba(255,255,255,0.3); }
.t-val   { color: rgba(255,255,255,0.55); }
.t-sl    { color: rgba(239,68,68,0.65); }
.t-tp    { color: rgba(16,185,129,0.65); }
.t-str-hi  { color: #60a5fa; font-weight: 600; }
.t-str-vhi { color: #34d399; font-weight: 600; }
.vp-term-cursor { display: flex; align-items: center; gap: 8px; padding-top: 10px; margin-top: 6px; border-top: 1px solid rgba(255,255,255,0.05); font-size: 10px; color: rgba(255,255,255,0.2); }
.vp-cursor-blink { color: #34d399; animation: cursorBlink 1s step-end infinite; }
@keyframes cursorBlink { 0%,100%{opacity:1;} 50%{opacity:0;} }
.vp-term-data-badge { height: 24px !important; width: auto !important; object-fit: contain !important; margin: 10px 14px 12px !important; }
.vp-scan-feats { display: flex; flex-direction: column; gap: 10px; margin-bottom: 8px; }
.vp-scan-feat { display: flex; align-items: center; gap: 8px; font-size: 14px; color: #3d5280; }

/* ── SECURITY ───────────────────────────────────────────────── */
.vp-security-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.vp-sec-badge-img { height: 32px !important; width: auto !important; object-fit: contain !important; }
.vp-security-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.vp-sec-card { background: #fff; border: 1px solid rgba(0,0,0,0.07); border-radius: var(--r-lg); padding: 24px; transition: border-color var(--dur-base), box-shadow var(--dur-base); }
.vp-sec-card:hover { border-color: rgba(59,130,246,0.18); box-shadow: 0 6px 20px rgba(0,0,0,0.06); }
.vp-sec-icon { width: 38px; height: 38px; color: var(--blue-500); margin-bottom: 14px; }
.vp-sec-icon svg { width: 100%; height: 100%; }
.vp-sec-card h4 { font-family: var(--font-display); font-size: 14px; font-weight: 700; color: #0f1623; letter-spacing: -0.01em; margin-bottom: 8px; }
.vp-sec-card p  { font-size: 13px; color: #3d5280; line-height: 1.7; }

/* ── TESTIMONIALS ───────────────────────────────────────────── */
.vp-testi-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.vp-tcard { background: #fff; border: 1px solid rgba(0,0,0,0.07); border-radius: var(--r-lg); padding: 24px; transition: border-color var(--dur-base), box-shadow var(--dur-base); }
.vp-tcard:hover { border-color: rgba(59,130,246,0.16); box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
.vp-tcard-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.vp-tcard-av { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; font-family: var(--font-display); font-size: 13px; font-weight: 700; color: #fff; }
.vp-tcard-stars { color: var(--amber-500); font-size: 13px; letter-spacing: 2px; }
.vp-tcard > p { font-size: 14px; color: #3d5280; line-height: 1.75; margin-bottom: 16px; font-style: italic; }
.vp-tcard-author strong { display: block; font-size: 13px; color: #0f1623; margin-bottom: 2px; }
.vp-tcard-author span   { font-size: 12px; color: #5a6e96; }
.vp-tcard-payout { display: flex; align-items: center; gap: 10px; margin-top: 14px; padding-top: 14px; border-top: 1px solid rgba(0,0,0,0.05); }
.vp-tcard-amount { font-family: var(--font-number); font-size: 14px; font-weight: 700; color: var(--emerald-500); margin-left: auto; }

/* ── FAQ ───────────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 4px; }
.faq-item { background: #fff; border: 1px solid rgba(0,0,0,0.07); border-radius: var(--r-md); overflow: hidden; transition: border-color var(--dur-fast); }
.faq-item.open { border-color: rgba(59,130,246,0.25); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 18px 24px; text-align: left; font-family: var(--font-display); font-size: 15px; font-weight: 600; color: #0f1623; letter-spacing: -0.01em; cursor: pointer; background: none; border: none; transition: color var(--dur-fast); }
.faq-q:hover { color: var(--blue-500); }
.faq-chev { flex-shrink: 0; color: #5a6e96; transition: transform var(--dur-base), color var(--dur-fast); }
.faq-item.open .faq-chev { transform: rotate(180deg); color: var(--blue-500); }
.faq-panel { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease-out); }
.faq-item.open .faq-panel { max-height: 400px; }
.faq-panel p { padding: 0 24px 20px; font-size: 14px; color: #3d5280; line-height: 1.75; }

/* ── CTA SECTION ────────────────────────────────────────────── */
.vp-cta-section { background: #fff; padding: 80px 0; }
.vp-cta-inner { display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center; background: linear-gradient(135deg, #f0f5ff 0%, #e8f4f0 100%); border: 1px solid rgba(59,130,246,0.12); border-radius: 28px; padding: 48px 56px; }
.vp-cta-actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
.vp-cta-actions .btn-ghost { color: #3d5280; border-color: rgba(0,0,0,0.14); }
.vp-cta-token-img { width: 160px !important; height: 160px !important; object-fit: cover !important; border-radius: var(--r-xl) !important; border: 1px solid rgba(0,0,0,0.08) !important; box-shadow: 0 8px 24px rgba(0,0,0,0.10) !important; }
.vp-cta-img-col { flex-shrink: 0; }

/* ── FOOTER ─────────────────────────────────────────────────── */
.vp-footer { background: #0f1623; border-top: 1px solid rgba(255,255,255,0.06); padding: 64px 0 32px; }
.vp-footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.vp-footer-logo { height: 28px !important; width: auto !important; margin-bottom: 14px; }
.vp-footer-brand p { font-size: 13px; color: rgba(255,255,255,0.38); line-height: 1.7; max-width: 240px; margin-bottom: 14px; }
.vp-footer-email { font-size: 13px; color: var(--blue-400); text-decoration: none; display: block; margin-bottom: 18px; }
.vp-footer-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.vp-footer-badge { height: 26px !important; width: auto !important; object-fit: contain !important; border-radius: 4px !important; }
.vp-footer-col h5 { font-family: var(--font-mono); font-size: 10px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.28); margin-bottom: 16px; }
.vp-footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.vp-footer-col a { font-size: 13px; color: rgba(255,255,255,0.42); text-decoration: none; transition: color var(--dur-fast); }
.vp-footer-col a:hover { color: rgba(255,255,255,0.75); }
.vp-footer-bottom { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.vp-footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.28); line-height: 1.6; }
.vp-footer-bottom a { color: var(--blue-400); }
.vp-footer-legal { font-size: 11px; color: rgba(255,255,255,0.18); max-width: 480px; line-height: 1.6; }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .vp-steps-grid     { grid-template-columns: repeat(2,1fr); }
  .vp-scanner-layout { grid-template-columns: 1fr; gap: 40px; }
  .vp-why-grid       { grid-template-columns: repeat(2,1fr); }
  .vp-footer-grid    { grid-template-columns: 1fr 1fr; gap: 32px; }
  .vp-cta-inner      { grid-template-columns: 1fr; padding: 40px 40px; }
  .vp-cta-img-col    { display: none; }
  .vp-stats-row      { grid-template-columns: repeat(2,1fr); }
  .vp-stat-card:nth-child(2) { border-right: none; }
  .vp-stat-card:nth-child(1),
  .vp-stat-card:nth-child(2) { border-bottom: 1px solid rgba(0,0,0,0.06); }
}

@media (max-width: 900px) {
  .vp-earn-layout      { grid-template-columns: 1fr; gap: 40px; }
  .vp-earn-right       { order: -1; }
  .vp-security-layout  { grid-template-columns: 1fr; gap: 40px; }
  .vp-security-cards   { grid-template-columns: 1fr 1fr; }
  .vp-testi-grid       { grid-template-columns: 1fr; max-width: 540px; margin-inline: auto; }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-actions .btn-nav-ghost,
  .nav-actions .btn-nav-primary { display: none; }
  .nav-hamburger { display: flex; }

  .vp-hero-inner  { padding: 48px 20px 64px; }
  .vp-hero-headline { font-size: clamp(32px, 9vw, 52px); }
  .vp-hero-actions { flex-direction: column; align-items: center; }
  .vp-btn-hero-primary, .vp-btn-hero-ghost { width: 100%; justify-content: center; }

  .vp-stats-row   { grid-template-columns: 1fr 1fr; }
  .vp-stat-card   { padding: 20px 16px; }

  .vp-steps-grid  { grid-template-columns: 1fr; gap: 1px; }
  .vp-step        { border-radius: 0; }
  .vp-why-grid    { grid-template-columns: 1fr; }
  .vp-security-cards { grid-template-columns: 1fr; }

  .vp-footer-grid  { grid-template-columns: 1fr; gap: 32px; }
  .vp-footer-bottom { flex-direction: column; }
  .vp-trust-strip-inner { flex-direction: column; align-items: flex-start; gap: 14px; }
  .vp-trust-strip-div { display: none; }
  .vp-cta-inner   { padding: 32px 24px; }
}

@media (max-width: 580px) {
  .vp-hero-trust  { flex-direction: column; align-items: center; gap: 8px; }
  .vp-trust-sep   { display: none; }
  .vp-hero-eyebrow { font-size: 10px; }
  .vp-stats-row   { grid-template-columns: 1fr 1fr; }
  .vp-testi-grid  { grid-template-columns: 1fr; }
}

@media (max-width: 400px) {
  .nav-inner       { padding-inline: 16px; }
  .vp-hero-inner   { padding: 40px 16px 56px; }
  .vp-stat-card    { flex-direction: column; align-items: flex-start; gap: 10px; }
  .vp-stats-row    { grid-template-columns: 1fr 1fr; }
}