/* =====================================================================
   globals.css — Neon.ai-fidelity dark theme. Pure black, purple/blue glow.
   Fonts: Satoshi (display) + Inter (body). Premium motion via framer-motion.
   ===================================================================== */

:root {
  --bg: #0a0a0a;
  --bg-2: #0d0d0d;
  --card: #131316;
  --card-2: #17171b;
  --inset: #0e0e11;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);

  --text: #ffffff;
  --text-2: rgba(255, 255, 255, 0.62);
  --text-3: rgba(255, 255, 255, 0.40);

  --blue: #0099ff;
  --purple: #814ac8;
  --violet: #a855f7;
  --pink: #df7afe;
  --gold: #e6c910;
  --grad: linear-gradient(120deg, #0099ff 0%, #6d5efc 48%, #a855f7 100%);
  --grad-text: linear-gradient(120deg, #8fb6ff 0%, #c9a2ff 60%, #df7afe 100%);

  --font-display: "Satoshi", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;

  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 26px;
  --r-xl: 34px;
  --r-pill: 300px;

  --container: 1200px;
  --pad-y: 130px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  background: var(--bg);
  color: var(--text-2);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--text); line-height: 1.05; letter-spacing: -0.02em; font-weight: 500; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
::selection { background: rgba(168, 85, 247, 0.35); }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: var(--pad-y) 0; position: relative; }
.center { text-align: center; }

/* ---- badge pill ---- */
.badge {
  display: inline-block; font-family: var(--font-body); font-size: 14px; font-weight: 500;
  color: var(--text); padding: 8px 16px; border-radius: var(--r-sm);
  background: var(--card); border: 1px solid var(--border);
}

/* ---- headings ---- */
.h-section { font-size: clamp(34px, 5vw, 60px); font-weight: 500; margin: 24px 0 0; }
.intro { font-size: clamp(16px, 1.5vw, 19px); color: var(--text-2); max-width: 680px; margin: 22px auto 0; }
.grad-text { background: var(--grad-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

/* ---- buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-body); font-weight: 600; font-size: 15px;
  padding: 14px 26px; border-radius: var(--r-pill); cursor: pointer;
  border: 1px solid transparent; transition: transform .25s, box-shadow .25s, background .25s;
}
.btn-primary { background: #fff; color: #0a0a0a; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(255,255,255,0.16); }
.btn-ghost { background: var(--card); color: #fff; border-color: var(--border-strong); }
.btn-ghost:hover { transform: translateY(-2px); border-color: rgba(255,255,255,0.3); }
.btn-grad { background: var(--grad); color: #fff; box-shadow: 0 10px 30px rgba(109,94,252,0.4); }
.btn-grad:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(109,94,252,0.55); }

/* ---- cards ---- */
.card { background: var(--card); border: 1px solid var(--border); border-radius: var(--r-lg); }
.glow { position: relative; }
.glow::before {
  content: ""; position: absolute; inset: -1px; border-radius: inherit; padding: 1px; pointer-events: none;
  background: linear-gradient(135deg, rgba(168,85,247,0.5), rgba(0,153,255,0.1) 40%, transparent 70%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; opacity: .8;
}

/* ---- nav ---- */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between; height: 64px;
  margin-top: 14px; padding: 0 10px 0 18px; border-radius: var(--r-pill);
  background: rgba(20,20,24,0.6); backdrop-filter: blur(18px); border: 1px solid var(--border);
}
.nav-logo { display: flex; align-items: center; gap: 9px; font-family: var(--font-display); font-weight: 600; font-size: 19px; color: #fff; }
.nav-logo img { width: 28px; height: 28px; }
.nav-links { display: flex; gap: 8px; }
.nav-links a { font-size: 14.5px; font-weight: 500; color: var(--text-2); padding: 8px 14px; border-radius: var(--r-pill); transition: color .2s, background .2s; }
.nav-links a:hover { color: #fff; background: var(--card); }
.nav-right { display: flex; align-items: center; gap: 10px; }
.mobile-btn { display: none; background: none; border: none; color: #fff; cursor: pointer; }

/* ---- hero ---- */
.hero { padding: 180px 0 80px; text-align: center; position: relative; overflow: hidden; }
.hero-glow {
  position: absolute; top: -120px; left: 50%; transform: translateX(-50%);
  width: 900px; height: 600px; pointer-events: none;
  background: radial-gradient(50% 50% at 50% 50%, rgba(129,74,200,0.42), rgba(10,10,10,0) 70%);
  filter: blur(20px);
}
.hero-glow.two { top: 60px; width: 1100px; height: 520px; background: radial-gradient(50% 50% at 50% 50%, rgba(0,153,255,0.18), rgba(10,10,10,0) 70%); }
.hero-inner { position: relative; max-width: 940px; margin: 0 auto; }
.hero h1 { font-size: clamp(40px, 6.4vw, 78px); font-weight: 500; letter-spacing: -0.03em; margin: 22px 0; }
.hero-sub { font-size: clamp(16px,1.7vw,20px); color: var(--text-2); max-width: 600px; margin: 0 auto 36px; }
.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* trust marquee */
.trust { margin-top: 84px; }
.trust-label { font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--text-3); margin-bottom: 26px; }
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 14%, #000 86%, transparent); mask-image: linear-gradient(90deg, transparent, #000 14%, #000 86%, transparent); }
.marquee-track { display: flex; gap: 26px; width: max-content; animation: marquee 30s linear infinite; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.logo-chip { display: flex; align-items: center; gap: 11px; padding: 13px 22px; border: 1px solid var(--border); border-radius: var(--r-md); background: var(--card); white-space: nowrap; color: var(--text-2); }
.logo-mono { width: 32px; height: 32px; border-radius: 8px; display: grid; place-items: center; font-weight: 800; font-size: 12px; color: #fff; background: var(--grad); }

/* ---- section head ---- */
.section-head { max-width: 760px; margin: 0 auto 60px; }

/* ---- process ---- */
.proc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.proc-card { padding: 34px; }
.proc-step { display: inline-block; font-size: 12.5px; font-weight: 500; color: var(--text-2); padding: 5px 12px; border-radius: 8px; background: var(--card-2); border: 1px solid var(--border); }
.proc-card h3 { font-size: 24px; font-weight: 500; margin: 18px 0 12px; }
.proc-card p { font-size: 15px; color: var(--text-2); margin-bottom: 26px; }
.inset { background: var(--inset); border: 1px solid var(--border); border-radius: var(--r-md); padding: 20px; }

/* mock status rows */
.mrow { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border-radius: 12px; background: var(--card-2); border: 1px solid var(--border); margin-bottom: 10px; }
.mrow:last-child { margin-bottom: 0; }
.micon { width: 34px; height: 34px; border-radius: 9px; flex: none; display: grid; place-items: center; background: var(--inset); border: 1px solid var(--border); color: var(--text-2); }
.mrow .mt { font-size: 13.5px; font-weight: 600; color: #fff; }
.mrow .ms { font-size: 12px; color: var(--text-3); }
.mstatus { margin-left: auto; color: var(--violet); display: grid; place-items: center; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { font-size: 12.5px; font-weight: 500; padding: 7px 13px; border-radius: var(--r-pill); background: var(--card-2); border: 1px solid var(--border); color: var(--text-2); }

/* connection diagram (step 3) */
.conn { display: flex; align-items: center; justify-content: space-around; padding: 22px 6px; }
.conn-node { text-align: center; }
.conn-orb { width: 56px; height: 56px; border-radius: 50%; margin: 0 auto 10px; background: radial-gradient(circle at 35% 30%, #c9a2ff, #6d5efc 55%, #2a1a55); box-shadow: 0 0 30px rgba(129,74,200,0.6); }
.conn-orb.disc { background: #5865F2; display: grid; place-items: center; box-shadow: 0 0 26px rgba(88,101,242,0.5); }
.conn-label { font-size: 12px; color: var(--text-3); }
.conn-line { flex: 1; height: 1px; background: repeating-linear-gradient(90deg, var(--border-strong) 0 6px, transparent 6px 12px); margin: 0 8px; margin-bottom: 22px; }

/* ---- services ---- */
.svc-row { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding: 40px 0; }
.svc-row.rev .svc-visual { order: -1; }
.svc-badge { font-size: 12.5px; font-weight: 500; color: var(--text-2); padding: 6px 13px; border-radius: 8px; background: var(--card); border: 1px solid var(--border); }
.svc-row h3 { font-size: clamp(26px, 3.2vw, 38px); font-weight: 500; margin: 16px 0 16px; }
.svc-row > div > p { font-size: 16px; color: var(--text-2); margin-bottom: 22px; }
.svc-bul li { display: flex; gap: 11px; align-items: flex-start; font-size: 15px; color: var(--text-2); margin-bottom: 12px; }
.svc-bul li svg { flex: none; margin-top: 3px; color: var(--violet); }
.svc-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }

.svc-visual { min-height: 380px; border-radius: var(--r-xl); padding: 28px; position: relative; overflow: hidden; background: var(--card); border: 1px solid var(--border); }
.svc-visual::after { content: ""; position: absolute; top: -30%; right: -20%; width: 70%; height: 80%; background: var(--grad); opacity: .22; filter: blur(70px); border-radius: 50%; pointer-events: none; }
.vhead { display: flex; align-items: center; gap: 8px; margin-bottom: 18px; position: relative; z-index: 1; }
.vdot { width: 10px; height: 10px; border-radius: 50%; }

/* ---- frontier ---- */
.frontier { text-align: center; position: relative; overflow: hidden; }
.frontier-body { max-width: 720px; margin: 26px auto 30px; }
.frontier-body p { font-size: 16px; color: var(--text-2); margin-bottom: 14px; }
.frontier-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---- benefits ---- */
.ben-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.ben-card { padding: 32px; }
.ben-icon { width: 46px; height: 46px; border-radius: 13px; background: var(--card-2); border: 1px solid var(--border); display: grid; place-items: center; margin-bottom: 20px; color: var(--violet); }
.ben-card h3 { font-size: 19px; font-weight: 500; margin-bottom: 10px; }
.ben-card p { font-size: 14.5px; color: var(--text-2); }

/* ---- testimonials ---- */
.testi-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.testi-card { padding: 32px; display: flex; flex-direction: column; }
.testi-body { font-size: 15.5px; color: var(--text-2); margin-bottom: 24px; flex: 1; }
.testi-auth { display: flex; align-items: center; gap: 14px; }
.testi-auth img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; border: 1px solid var(--border-strong); }
.testi-auth .nm { font-weight: 600; color: #fff; font-size: 15px; }
.testi-auth .rl { font-size: 12.5px; color: var(--text-3); }

/* ---- faq ---- */
.faq-wrap { max-width: 760px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border); border-radius: var(--r-md); background: var(--card); margin-bottom: 14px; overflow: hidden; }
.faq-q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; padding: 22px 24px; font-family: var(--font-display); font-size: 17px; font-weight: 500; color: #fff; display: flex; justify-content: space-between; gap: 16px; align-items: center; }
.faq-ic { flex: none; width: 26px; height: 26px; display: grid; place-items: center; color: var(--violet); transition: transform .3s; font-size: 20px; }
.faq-item.open .faq-ic { transform: rotate(45deg); }
.faq-a { overflow: hidden; }
.faq-a-in { padding: 0 24px 22px; font-size: 15px; color: var(--text-2); }

/* ---- cta ---- */
.cta-box { padding: 80px 40px; border-radius: var(--r-xl); position: relative; overflow: hidden; text-align: center; background: var(--card); border: 1px solid var(--border); }
.cta-box::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 120% at 50% 0%, rgba(129,74,200,0.32), transparent 70%); }
.cta-box h2 { position: relative; font-size: clamp(28px, 3.8vw, 46px); font-weight: 500; max-width: 720px; margin: 0 auto 30px; }

/* ---- footer ---- */
.footer { border-top: 1px solid var(--border); padding: 70px 0 36px; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; margin-bottom: 44px; }
.footer-blurb { font-size: 14.5px; color: var(--text-2); max-width: 320px; margin-top: 16px; }
.footer-col h4 { font-size: 14px; font-weight: 600; color: #fff; margin-bottom: 16px; }
.footer-col a { display: block; font-size: 14px; color: var(--text-2); margin-bottom: 11px; transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-legal { font-size: 12px; color: var(--text-3); line-height: 1.7; border-top: 1px solid var(--border); padding-top: 24px; }

/* ---- responsive ---- */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .mobile-btn { display: inline-flex; }
  .proc-grid, .ben-grid, .testi-grid { grid-template-columns: 1fr; }
  .svc-row { grid-template-columns: 1fr; gap: 30px; }
  .svc-row.rev .svc-visual { order: 0; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  :root { --pad-y: 80px; }
}
