/* ================================================================
   Outboundex — Design System
   Dark, clean, professional. Lucide icons. No emojis.
   ================================================================ */

:root {
  --bg:       #0b0d11;
  --bg2:      #0f1218;
  --bg3:      #151921;
  --surface:  #1a1f2b;
  --surface2: #222836;
  --border:   #262d3d;
  --border2:  #333d52;
  --text:     #d8dce6;
  --text2:    #8891a4;
  --text3:    #5b6478;
  --accent:   #00e676;
  --accent2:  #00c853;
  --accent-bg:rgba(0,230,118,0.08);
  --accent-b: rgba(0,230,118,0.25);
  --red:      #ff4c6a;
  --orange:   #ff9f43;
  --blue:     #4c9aff;
  --purple:   #a78bfa;
  --r:        10px;
  --r2:       14px;
  --r3:       20px;
  --sh:       0 2px 16px rgba(0,0,0,0.35);
  --sh2:      0 8px 40px rgba(0,0,0,0.5);
  --tr:       all .25s ease;
  --font:     'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

body { font-family:var(--font); background:var(--bg); color:var(--text); line-height:1.6; overflow-x:hidden; -webkit-font-smoothing:antialiased; }
.container { max-width:1140px; margin:0 auto; padding:0 24px; }
a { color:var(--accent); text-decoration:none; transition:var(--tr); }
a:hover { color:var(--accent2); }
img { max-width:100%; }

/* ===== BUTTONS ===== */
.btn {
  display:inline-flex; align-items:center; gap:6px;
  padding:10px 22px; border:none; border-radius:var(--r);
  background:var(--accent); color:#000; font-weight:600; font-size:14px;
  cursor:pointer; transition:var(--tr); text-decoration:none; white-space:nowrap;
}
.btn:hover { background:var(--accent2); color:#000; transform:translateY(-1px); box-shadow:0 6px 24px rgba(0,230,118,0.2); }
.btn-sm { padding:7px 16px; font-size:13px; }
.btn-lg { padding:13px 28px; font-size:15px; }
.btn-ghost { background:transparent; color:var(--text); border:1.5px solid var(--border2); }
.btn-ghost:hover { border-color:var(--accent); color:var(--accent); background:var(--accent-bg); }
.btn-full { width:100%; justify-content:center; }
.btn i[data-lucide] { width:16px; height:16px; }

/* ===== NAV ===== */
.nav {
  position:fixed; top:0; left:0; right:0; z-index:100;
  background:rgba(11,13,17,0.85); backdrop-filter:blur(20px) saturate(1.5);
  border-bottom:1px solid rgba(38,45,61,0.6);
  padding:10px 0;
}
.nav-inner { display:flex; align-items:center; justify-content:space-between; }
.nav-logo { display:flex; align-items:center; gap:10px; color:var(--text); font-size:18px; text-decoration:none; letter-spacing:-0.3px; }
.nav-logo strong { color:var(--accent); font-weight:800; }
.logo-mark { width:36px; height:36px; border-radius:10px; background:linear-gradient(135deg, #00e676, #00c853); display:flex; align-items:center; justify-content:center; box-shadow:0 2px 12px rgba(0,230,118,0.3); }
.logo-mark .logo-icon { width:18px; height:18px; color:#000; }
.nav-links { display:flex; gap:28px; }
.nav-links a { color:var(--text2); font-size:14px; font-weight:500; }
.nav-links a:hover { color:var(--text); }

/* ===== HERO ===== */
.hero {
  padding:160px 0 100px; text-align:center; position:relative;
}
.hero-glow {
  position:absolute; top:10%; left:50%; transform:translateX(-50%);
  width:600px; height:600px; border-radius:50%;
  background:radial-gradient(circle, rgba(0,230,118,0.06) 0%, transparent 70%);
  pointer-events:none;
}
.hero-badge {
  display:inline-flex; align-items:center; gap:6px;
  padding:6px 16px; border-radius:50px;
  background:var(--accent-bg); border:1px solid var(--accent-b);
  color:var(--accent); font-size:13px; font-weight:600; margin-bottom:24px;
}
.hero-badge i[data-lucide] { width:14px; height:14px; }
.hero h1 { font-size:54px; font-weight:800; line-height:1.15; letter-spacing:-1.5px; margin-bottom:20px; }
.gradient-text { background:linear-gradient(135deg, var(--accent) 0%, var(--blue) 100%); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.hero-sub { font-size:18px; color:var(--text2); max-width:580px; margin:0 auto 36px; line-height:1.7; }
.hero-sub em { color:var(--accent); font-style:normal; font-weight:600; }
.hero-actions { display:flex; gap:14px; justify-content:center; margin-bottom:60px; }
.hero-metrics { display:flex; justify-content:center; gap:40px; align-items:center; }
.metric { text-align:center; }
.metric-val { display:block; font-size:28px; font-weight:800; color:var(--text); }
.metric-label { font-size:12px; color:var(--text3); text-transform:uppercase; letter-spacing:0.5px; }
.metric-sep { width:1px; height:36px; background:var(--border); }

/* ===== SECTIONS ===== */
.section { padding:100px 0; }
.section-dark { background:var(--bg2); }
.section-label {
  display:inline-flex; align-items:center; gap:6px;
  font-size:13px; color:var(--accent); font-weight:600;
  text-transform:uppercase; letter-spacing:1px; margin-bottom:12px;
}
.section-label i[data-lucide] { width:14px; height:14px; }
.section-title { font-size:36px; font-weight:800; letter-spacing:-0.5px; margin-bottom:48px; }

/* ===== STEPS ===== */
.steps { display:grid; grid-template-columns:repeat(4, 1fr); gap:16px; }
.step {
  padding:28px 22px; background:var(--bg2); border:1px solid var(--border);
  border-radius:var(--r2); position:relative; transition:var(--tr);
  display:flex; flex-direction:column;
}
.step:hover { border-color:var(--accent); transform:translateY(-4px); }
.step-icon { margin-bottom:16px; }
.step-icon i[data-lucide], .step-icon svg { width:28px; height:28px; color:var(--accent); }
.step-num { position:absolute; top:16px; right:16px; font-size:36px; font-weight:900; color:var(--border); }
.step h3 { font-size:16px; margin-bottom:8px; }
.step p { font-size:13px; color:var(--text2); line-height:1.6; flex:1; }
.step-line { display:none; }

/* ===== PLATFORMS ===== */
.platforms-grid { display:grid; grid-template-columns:repeat(3, 1fr); gap:16px; }
.platform-card {
  padding:28px; background:var(--bg); border:1px solid var(--border);
  border-radius:var(--r2); transition:var(--tr);
}
.platform-card:hover { border-color:var(--accent); }
.platform-icon { margin-bottom:16px; }
.platform-icon i[data-lucide] { width:24px; height:24px; color:var(--accent); }
.platform-icon svg { width:48px; height:48px; border-radius:10px; }
.platform-card h3 { font-size:16px; margin-bottom:6px; }
.platform-card p { font-size:13px; color:var(--text2); }

/* ===== AGENTS ===== */
.agents-grid { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.agent-card {
  padding:24px; background:var(--bg2); border:1px solid var(--border);
  border-radius:var(--r2); transition:var(--tr);
}
.agent-card:hover { border-color:var(--accent); }
.agent-header { display:flex; align-items:center; gap:12px; margin-bottom:12px; }
.agent-icon-wrap {
  width:40px; height:40px; border-radius:10px; background:var(--accent-bg);
  display:flex; align-items:center; justify-content:center;
}
.agent-icon-wrap i[data-lucide] { width:20px; height:20px; color:var(--accent); }
.closer-icon { background:rgba(76,154,255,0.1); }
.closer-icon i[data-lucide] { color:var(--blue); }
.finance-icon { background:rgba(255,159,67,0.1); }
.finance-icon i[data-lucide] { color:var(--orange); }
.guardian-icon { background:rgba(167,139,250,0.1); }
.guardian-icon i[data-lucide] { color:var(--purple); }
.agent-card h3 { font-size:15px; }
.agent-role { font-size:12px; color:var(--text3); }
.agent-status {
  margin-left:auto; font-size:11px; font-weight:600; color:var(--accent);
  padding:3px 10px; border-radius:50px; background:var(--accent-bg); border:1px solid var(--accent-b);
}
.agent-card p { font-size:13px; color:var(--text2); }

/* ===== PRICING ===== */
.pricing-grid { display:grid; grid-template-columns:repeat(3, 1fr); gap:20px; margin-bottom:32px; }
.price-card {
  padding:32px; background:var(--bg); border:1px solid var(--border);
  border-radius:var(--r2); position:relative; transition:var(--tr);
}
.price-card:hover { border-color:var(--accent); }
.price-featured { border-color:var(--accent); box-shadow:0 0 40px rgba(0,230,118,0.08); }
.price-popular {
  position:absolute; top:-12px; right:20px;
  background:var(--accent); color:#000; padding:4px 14px;
  border-radius:50px; font-size:11px; font-weight:700;
}
.price-name { font-size:14px; color:var(--text2); margin-bottom:4px; text-transform:uppercase; letter-spacing:1px; }
.price-amount { font-size:42px; font-weight:800; margin-bottom:24px; }
.price-amount span { font-size:16px; font-weight:400; color:var(--text3); }
.price-card ul { list-style:none; margin-bottom:24px; }
.price-card li {
  display:flex; align-items:center; gap:8px;
  padding:8px 0; font-size:14px; color:var(--text2);
  border-bottom:1px solid rgba(255,255,255,0.03);
}
.price-card li i[data-lucide] { width:16px; height:16px; color:var(--accent); flex-shrink:0; }
.crypto-row { display:flex; justify-content:center; gap:14px; }
.crypto-chip {
  display:inline-flex; align-items:center; gap:6px;
  padding:8px 18px; border:1px solid var(--border); border-radius:50px;
  font-size:13px; color:var(--text2);
}
.crypto-chip i[data-lucide] { width:14px; height:14px; }

/* ===== FAQ ===== */
.faq-list { max-width:680px; margin:0 auto; }
.faq-item {
  border:1px solid var(--border); border-radius:var(--r); margin-bottom:10px;
  cursor:pointer; transition:var(--tr); overflow:hidden;
}
.faq-item:hover { border-color:var(--border2); }
.faq-q {
  padding:16px 20px; font-weight:600; font-size:15px;
  display:flex; justify-content:space-between; align-items:center;
}
.faq-q i[data-lucide] { width:16px; height:16px; color:var(--text3); transition:transform .25s; }
.faq-item.open .faq-q i[data-lucide] { transform:rotate(180deg); }
.faq-a {
  max-height:0; overflow:hidden; transition:max-height .3s, padding .3s;
  padding:0 20px; font-size:14px; color:var(--text2); line-height:1.7;
}
.faq-item.open .faq-a { max-height:300px; padding:0 20px 16px; }

/* ===== CONTACT ===== */
.contact-container { display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; }
.contact-text h2 { font-size:32px; font-weight:800; margin-bottom:12px; }
.contact-text p { color:var(--text2); font-size:15px; }
.contact-form { display:flex; flex-direction:column; gap:12px; }
.contact-form input, .contact-form textarea, .contact-form select {
  padding:12px 16px; background:var(--surface); border:1px solid var(--border);
  border-radius:var(--r); color:var(--text); font-size:14px; font-family:var(--font);
  outline:none; transition:var(--tr);
}
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { border-color:var(--accent); }
.contact-form select { appearance:none; cursor:pointer; }
.contact-result { font-size:14px; text-align:center; min-height:20px; }
.contact-result.ok { color:var(--accent); }
.contact-result.err { color:var(--red); }

/* ===== PAYMENT MODAL ===== */
.modal-overlay {
  position:fixed; top:0; left:0; right:0; bottom:0; z-index:200;
  background:rgba(0,0,0,0.7); backdrop-filter:blur(6px);
  display:flex; align-items:center; justify-content:center;
  animation:fadeIn .2s;
}
@keyframes fadeIn { from { opacity:0 } to { opacity:1 } }
.modal {
  background:var(--bg2); border:1px solid var(--border); border-radius:var(--r3);
  padding:36px; max-width:440px; width:90%; position:relative;
  box-shadow:var(--sh2); max-height:90vh; overflow-y:auto;
}
.modal-close {
  position:absolute; top:14px; right:18px; background:none; border:none;
  color:var(--text3); font-size:24px; cursor:pointer; transition:var(--tr);
}
.modal-close:hover { color:var(--text); }
.modal h3 { font-size:20px; font-weight:700; margin-bottom:6px; }
.pay-crypto-select { margin-bottom:20px; }
.pay-crypto-options { display:flex; gap:8px; }
.crypto-opt {
  flex:1; padding:10px; background:var(--surface); border:1px solid var(--border);
  border-radius:var(--r); color:var(--text2); font-size:13px; font-weight:600;
  cursor:pointer; transition:var(--tr); text-align:center;
}
.crypto-opt:hover { border-color:var(--accent); color:var(--text); }
.crypto-opt.active { border-color:var(--accent); background:var(--accent-bg); color:var(--accent); }

/* ===== FOOTER ===== */
.footer { padding:40px 0; border-top:1px solid var(--border); }
.footer-inner { display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:20px; }
.footer-brand { display:flex; flex-direction:column; gap:8px; font-size:16px; font-weight:600; }
.footer-brand .nav-logo { display:inline-flex; align-items:center; gap:10px; color:var(--text); }
.footer-brand .nav-logo .logo-mark { background:var(--accent); width:32px; height:32px; border-radius:8px; display:flex; align-items:center; justify-content:center; }
.footer-brand strong { color:var(--accent); }
.footer-brand p { font-size:12px; color:var(--text3); margin-top:4px; }
.footer-links { display:flex; gap:20px; }
.footer-links a { color:var(--text3); font-size:13px; }
.footer-links a:hover { color:var(--text); }
.footer-legal { display:flex; gap:16px; width:100%; justify-content:center; margin-top:4px; }
.footer-legal a { color:var(--text3); font-size:12px; text-decoration:underline; }
.footer-legal a:hover { color:var(--accent); }
.footer-copy { width:100%; text-align:center; font-size:11px; color:var(--text3); margin-top:12px; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width:6px; }
::-webkit-scrollbar-track { background:transparent; }
::-webkit-scrollbar-thumb { background:var(--border); border-radius:3px; }

/* ===== RESPONSIVE ===== */
@media (max-width:900px) {
  .hero h1 { font-size:36px; }
  .hero-metrics { gap:20px; flex-wrap:wrap; }
  .platforms-grid { grid-template-columns:1fr 1fr; }
  .agents-grid { grid-template-columns:1fr; }
  .pricing-grid { grid-template-columns:1fr; max-width:380px; margin-left:auto; margin-right:auto; }
  .steps { grid-template-columns:1fr; max-width:400px; margin:0 auto; }
  .contact-container { grid-template-columns:1fr; gap:32px; }
  .nav-links { display:none; }
  .hero-actions { flex-direction:column; align-items:center; }
}
