/* ==========================================================================
   BOT LBC — Landing page
   ========================================================================== */

/* ------------------------------ Brand ----------------------------------- */
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-display); }
.brand-mark { width: 38px; height: 38px; border-radius: 11px; background: linear-gradient(135deg, #FF9252, #FF6E14 50%, #E84E07); color: #fff; display: grid; place-items: center; box-shadow: var(--sh-orange), inset 0 1px 0 rgba(255,255,255,.28), inset 0 0 0 1px rgba(255,255,255,.1); }
.brand-name { font-weight: 800; font-size: 1.28rem; letter-spacing: -.02em; color: var(--ink); }
.brand-name span { color: var(--orange-500); }

/* ------------------------------ Header ---------------------------------- */
.lp-header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 14px 0; transition: all .3s var(--ease); }
.lp-header.scrolled { background: rgba(255,255,255,.82); backdrop-filter: saturate(1.4) blur(14px); border-bottom: 1px solid var(--border); padding: 10px 0; }
.lp-nav { display: flex; gap: 30px; }
.lp-nav a { font-weight: 600; font-size: .94rem; color: var(--slate-600); transition: color .18s; }
.lp-nav a:hover { color: var(--ink); }
.lp-burger { display: none; }
.lp-header-cta { display: flex; }

/* ------------------------------ Hero ------------------------------------ */
.lp-hero { position: relative; padding: calc(var(--header-h) + 60px) 0 0; overflow: hidden; }
.hero-glow { position: absolute; top: -180px; right: -120px; width: 720px; height: 720px; background: radial-gradient(circle, rgba(255,110,20,.16), transparent 62%); pointer-events: none; z-index: 0; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; position: relative; z-index: 1; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: .82rem; padding: 8px 14px; border-radius: var(--r-pill); background: var(--orange-50); color: var(--orange-700); border: 1px solid var(--orange-100); }
.hero-copy h1 { margin: 22px 0 20px; }
.hero-sub { font-size: 1.22rem; color: var(--slate-600); max-width: 540px; }
.hero-cta { display: flex; gap: 14px; margin: 32px 0 30px; flex-wrap: wrap; }
.hero-trust { display: flex; align-items: center; gap: 16px; }
.avatars { display: flex; }
.avatars .av { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; color: #fff; font-weight: 800; font-size: .76rem; border: 2.5px solid #fff; margin-left: -10px; }
.avatars .av:first-child { margin-left: 0; }
.stars { color: var(--amber-500); font-size: .95rem; letter-spacing: 1px; }
.stars strong { color: var(--ink); margin-left: 4px; }

/* Hero preview card */
.hero-visual { position: relative; }
.preview-card { background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); box-shadow: var(--sh-lg); padding: 18px; animation: float 6s ease-in-out infinite; position: relative; z-index: 2; }
.preview-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.live-pill { display: inline-flex; align-items: center; gap: 7px; font-size: .76rem; font-weight: 700; color: var(--green-500); background: var(--green-50); padding: 5px 11px; border-radius: var(--r-pill); }
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green-500); animation: blink 1.4s ease infinite; box-shadow: 0 0 0 0 rgba(18,182,107,.5); }
.radar-scan { position: relative; height: 90px; border-radius: var(--r-md); background: radial-gradient(circle at 50% 100%, rgba(255,110,20,.10), transparent 70%); border: 1px solid var(--border); overflow: hidden; margin-bottom: 14px; }
.radar-scan::before, .radar-scan::after { content: ""; position: absolute; left: 50%; bottom: 0; border-radius: 50%; border: 1px solid rgba(255,110,20,.22); transform: translateX(-50%); }
.radar-scan::before { width: 120px; height: 120px; }
.radar-scan::after { width: 200px; height: 200px; }
.radar-sweep { position: absolute; left: 50%; bottom: 0; width: 2px; height: 90px; background: linear-gradient(to top, var(--orange-500), transparent); transform-origin: bottom center; animation: radar 3.4s linear infinite; }
@keyframes radar { from { transform: rotate(-70deg); } to { transform: rotate(70deg); } }
.radar-blip { position: absolute; width: 9px; height: 9px; border-radius: 50%; background: var(--orange-500); box-shadow: 0 0 0 0 rgba(255,110,20,.5); animation: pulse-ring 2s ease infinite; }
.radar-blip.b1 { left: 30%; bottom: 38%; animation-delay: .2s; }
.radar-blip.b2 { left: 62%; bottom: 55%; animation-delay: 1s; }
.radar-blip.b3 { left: 48%; bottom: 24%; animation-delay: 1.7s; }
.preview-feed { display: flex; flex-direction: column; gap: 8px; }
.feed-row { display: flex; align-items: center; gap: 12px; padding: 11px; border-radius: var(--r-sm); background: var(--slate-50); border: 1px solid var(--border); animation: rise .5s var(--ease-spring) both; }
.feed-ic { width: 38px; height: 38px; border-radius: 10px; background: #fff; display: grid; place-items: center; color: var(--orange-600); flex: none; box-shadow: var(--sh-xs); }
.feed-row strong { font-size: .9rem; display: block; }
.feed-right { display: flex; align-items: center; gap: 10px; }
.feed-price { font-weight: 800; font-size: .96rem; }
.preview-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--border); font-size: .82rem; font-weight: 600; }
.preview-card .live-dot { background: var(--green-500); }

/* Marquee */
.hero-marquee { margin-top: 64px; padding: 16px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--surface); overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; gap: 36px; width: max-content; animation: ticker 32s linear infinite; }
.marquee-track span { display: inline-flex; align-items: center; gap: 7px; font-weight: 600; font-size: .9rem; color: var(--slate-600); white-space: nowrap; }
.marquee-track span svg { color: var(--orange-500); }

/* ------------------------------ Stats strip ----------------------------- */
.lp-stats { padding: 56px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat-item { text-align: center; }
.stat-num { display: block; font-family: var(--font-display); font-weight: 800; font-size: clamp(2rem, 4vw, 3rem); background: linear-gradient(120deg, var(--orange-500), var(--orange-700)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat-lab { font-size: .92rem; }

/* ------------------------------ Problem --------------------------------- */
.lp-problem { background: var(--surface); }
.problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.problem-list { display: flex; flex-direction: column; gap: 12px; margin-top: 22px; }
.problem-list li { display: flex; align-items: center; gap: 12px; font-weight: 600; color: var(--slate-700); }
.problem-list li svg { color: var(--red-500); flex: none; }
.problem-card { background: linear-gradient(160deg, var(--orange-50), #fff); border: 1px solid var(--orange-100); border-radius: var(--r-lg); padding: 28px; box-shadow: var(--sh-md); }
.pc-head { display: inline-flex; align-items: center; gap: 8px; font-weight: 800; color: var(--orange-700); margin-bottom: 18px; font-family: var(--font-display); }
.pc-row { display: flex; gap: 14px; padding: 14px 0; border-top: 1px solid var(--orange-100); }
.pc-row:first-of-type { border-top: none; }
.pc-row svg { color: var(--green-500); flex: none; }
.pc-row strong { display: block; }
.pc-row span { font-size: .9rem; }

/* ------------------------------ Features -------------------------------- */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feat-card { padding: 26px; border-radius: var(--r-lg); transition: transform .3s var(--ease), box-shadow .3s var(--ease); overflow: hidden; }
.feat-card:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); }
.feat-ic { width: 48px; height: 48px; border-radius: 13px; display: grid; place-items: center; margin-bottom: 16px; }
.feat-ic.orange { background: var(--orange-50); color: var(--orange-600); }
.feat-ic.blue { background: var(--blue-50); color: var(--blue-500); }
.feat-ic.green { background: var(--green-50); color: var(--green-500); }
.feat-ic.violet { background: var(--violet-50); color: var(--violet-500); }
.feat-ic.amber { background: var(--amber-50); color: var(--amber-500); }
.feat-card h3 { font-size: 1.18rem; margin-bottom: 8px; }
.feat-card p { font-size: .94rem; }
.feat-demo { margin-top: 18px; }

/* Mini démos */
.d-chips { display: flex; flex-wrap: wrap; gap: 7px; }
.d-chip { font-size: .76rem; font-weight: 700; padding: 6px 11px; border-radius: var(--r-pill); background: var(--orange-50); color: var(--orange-700); animation: pop .5s var(--ease-spring) both; }
.d-chip.add { background: var(--slate-100); color: var(--slate-500); display: inline-flex; align-items: center; }
.d-alert { display: flex; align-items: center; gap: 12px; padding: 12px; border-radius: var(--r-sm); background: var(--slate-50); border: 1px solid var(--border); }
.d-alert-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--blue-500); flex: none; animation: pulse-ring 1.8s infinite; box-shadow: 0 0 0 0 rgba(47,107,255,.5); }
.d-alert strong { display: block; font-size: .88rem; }
.d-alert span.muted { font-size: .76rem; }
.d-price { background: var(--slate-50); border: 1px solid var(--border); border-radius: var(--r-sm); padding: 14px; font-size: .86rem; display: flex; flex-direction: column; gap: 6px; }
.d-meter { position: relative; height: 6px; border-radius: 999px; background: linear-gradient(90deg, var(--green-400, #6ee7b7), var(--amber-500), var(--red-500)); margin: 6px 0; }
.d-meter-dot { position: absolute; top: 50%; left: 26%; width: 14px; height: 14px; border-radius: 50%; background: #fff; border: 3px solid var(--green-500); transform: translate(-50%, -50%); box-shadow: var(--sh-sm); }
.d-spark { background: var(--slate-50); border: 1px solid var(--border); border-radius: var(--r-sm); padding: 12px; }
.d-spark svg { width: 100%; height: 56px; }
.d-spark .badge { margin-top: 6px; }
.d-gauge { display: flex; align-items: center; gap: 16px; }
.gauge-ring { width: 76px; height: 76px; border-radius: 50%; display: grid; place-items: center; background: conic-gradient(var(--amber-500) 0 84%, var(--slate-200) 84% 100%); position: relative; }
.gauge-ring::before { content: ""; position: absolute; inset: 9px; border-radius: 50%; background: #fff; }
.gauge-val { position: relative; font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; }
.gauge-max { position: relative; font-size: .7rem; margin-top: -4px; }
.gauge-bars { display: flex; align-items: flex-end; gap: 6px; height: 60px; flex: 1; }
.gauge-bars span { flex: 1; background: linear-gradient(var(--amber-500), var(--orange-500)); border-radius: 5px; min-height: 8px; }
.d-reco { display: flex; flex-direction: column; gap: 8px; }
.reco-row { display: flex; align-items: center; justify-content: space-between; padding: 9px 12px; border-radius: var(--r-sm); background: var(--slate-50); border: 1px solid var(--border); animation: rise .5s both; font-size: .8rem; }

/* ------------------------------ AutoBuy --------------------------------- */
.lp-autobuy { background: linear-gradient(150deg, #1a1c26, #14161f 60%); position: relative; overflow: hidden; border-radius: var(--r-xl); margin: 0 16px; }
.lp-autobuy::before { content: ""; position: absolute; top: -100px; left: -80px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(255,110,20,.22), transparent 60%); }
.autobuy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; position: relative; z-index: 1; }
.autobuy-list { display: flex; flex-direction: column; gap: 12px; margin: 22px 0 30px; }
.autobuy-list li { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.9); font-weight: 600; }
.autobuy-list li svg { color: var(--orange-400); flex: none; }
.ab-terminal { background: #0d0e14; border: 1px solid rgba(255,255,255,.1); border-radius: var(--r-md); overflow: hidden; box-shadow: var(--sh-lg); }
.ab-head { display: flex; align-items: center; gap: 7px; padding: 12px 16px; background: rgba(255,255,255,.04); border-bottom: 1px solid rgba(255,255,255,.08); }
.ab-dot { width: 11px; height: 11px; border-radius: 50%; background: #3a3d4a; }
.ab-lines { padding: 14px 16px; font-family: ui-monospace, 'SF Mono', Menlo, monospace; font-size: .8rem; display: flex; flex-direction: column; gap: 9px; }
.ab-line { display: grid; grid-template-columns: auto auto 1fr auto; gap: 12px; align-items: center; animation: rise .5s both; }
.ab-time { color: #5a5e70; }
.ab-tag { font-weight: 700; padding: 2px 8px; border-radius: 6px; font-size: .72rem; }
.ab-line.ok .ab-tag { background: rgba(18,182,107,.15); color: #3ee08a; }
.ab-line.skip .ab-tag { background: rgba(150,150,160,.12); color: #8b90a3; }
.ab-msg { color: #c7ccd9; }
.ab-ms { color: var(--orange-400); font-weight: 700; }
.ab-line.skip .ab-ms { color: #5a5e70; }

/* ------------------------------ Modules --------------------------------- */
.mod-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.mod-card { display: flex; gap: 16px; padding: 24px; }
.mod-ic { width: 46px; height: 46px; border-radius: 12px; background: var(--orange-50); color: var(--orange-600); display: grid; place-items: center; flex: none; }
.mod-card h4 { font-size: 1.05rem; margin-bottom: 6px; }
.mod-card p { font-size: .9rem; }

/* ------------------------------ How ------------------------------------- */
.lp-how { background: var(--surface); }
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; position: relative; }
.how-grid::before { content: ""; position: absolute; top: 38px; left: 16%; right: 16%; height: 2px; background: repeating-linear-gradient(90deg, var(--orange-200) 0 8px, transparent 8px 16px); z-index: 0; }
.how-step { text-align: center; position: relative; z-index: 1; padding: 0 12px; }
.how-num { width: 34px; height: 34px; margin: 0 auto 16px; border-radius: 50%; background: var(--orange-500); color: #fff; font-weight: 800; display: grid; place-items: center; font-family: var(--font-display); box-shadow: var(--sh-orange); }
.how-ic { width: 64px; height: 64px; margin: 0 auto 18px; border-radius: 18px; background: #fff; border: 1px solid var(--border); color: var(--orange-600); display: grid; place-items: center; box-shadow: var(--sh-sm); }
.how-step h3 { font-size: 1.2rem; margin-bottom: 8px; }

/* ------------------------------ Showcase -------------------------------- */
.showcase-frame { position: relative; background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); box-shadow: var(--sh-lg); overflow: hidden; max-width: 960px; margin: 0 auto; }
.sc-bar { display: flex; align-items: center; gap: 8px; padding: 13px 18px; background: var(--slate-50); border-bottom: 1px solid var(--border); }
.sc-dot { width: 11px; height: 11px; border-radius: 50%; background: var(--slate-300); }
.sc-url { margin-left: 14px; font-size: .8rem; color: var(--slate-500); background: #fff; padding: 5px 14px; border-radius: var(--r-pill); border: 1px solid var(--border); }
.sc-body { padding: 26px; background: var(--canvas); }
.sc-kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 18px; }
.sc-kpi { background: #fff; border: 1px solid var(--border); border-radius: var(--r-md); padding: 16px; position: relative; }
.sc-kpi-dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; margin-bottom: 10px; }
.sc-kpi-dot.green { background: var(--green-500); } .sc-kpi-dot.orange { background: var(--orange-500); } .sc-kpi-dot.blue { background: var(--blue-500); } .sc-kpi-dot.violet { background: var(--violet-500); }
.sc-kpi-val { display: block; font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; }
.sc-kpi .muted { font-size: .78rem; }
.sc-deals { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.sc-deal { display: flex; align-items: center; gap: 12px; background: #fff; border: 1px solid var(--border); border-radius: var(--r-md); padding: 12px; }
.sc-deal-thumb { width: 42px; height: 42px; border-radius: 10px; background: linear-gradient(135deg, var(--orange-400), var(--orange-600)); flex: none; }
.sc-overlay-cta { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); opacity: 0; transition: opacity .3s, transform .3s; }
.showcase-frame:hover .sc-overlay-cta { opacity: 1; transform: translateX(-50%) translateY(-4px); }

/* ------------------------------ Testimonials ---------------------------- */
.testi-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.testi-card { padding: 28px; border-radius: var(--r-lg); }
.testi-card .stars { font-size: 1rem; margin-bottom: 14px; }
.testi-card p { font-size: 1.05rem; color: var(--ink); line-height: 1.6; margin-bottom: 20px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-author strong { display: block; }
.testi-author span.muted { font-size: .84rem; }

/* ------------------------------ Pricing --------------------------------- */
.lp-pricing { background: var(--surface); }
.price-toggle { display: flex; justify-content: center; margin-top: 22px; }
.pricing-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 380px)); gap: 24px; justify-content: center; align-items: start; }
.plan { padding: 32px; border-radius: var(--r-lg); position: relative; }
.plan-featured { border: 2px solid var(--orange-500); box-shadow: var(--sh-lg); transform: scale(1.02); }
.plan-tag { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--orange-500); color: #fff; font-size: .76rem; font-weight: 700; padding: 6px 14px; border-radius: var(--r-pill); display: inline-flex; align-items: center; gap: 5px; box-shadow: var(--sh-orange); }
.plan h3 { font-size: 1.5rem; }
.plan-tagline { font-size: .92rem; margin: 6px 0 20px; }
.plan-price { display: flex; align-items: baseline; gap: 4px; }
.plan-price .amount { font-family: var(--font-display); font-weight: 800; font-size: 3.4rem; letter-spacing: -.03em; }
.plan-price .per { font-weight: 700; color: var(--slate-500); }
.plan-price .per small { font-weight: 600; }
.plan-billing { font-size: .82rem; margin: 4px 0 22px; }
.plan-feats { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.plan-feats li { display: flex; align-items: flex-start; gap: 10px; font-size: .94rem; color: var(--slate-700); }
.plan-feats li svg { color: var(--green-500); flex: none; margin-top: 2px; }
.plan-featured .plan-feats li svg { color: var(--orange-500); }

/* ------------------------------ FAQ ------------------------------------- */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-md); overflow: hidden; transition: box-shadow .2s; }
.faq-item.open { box-shadow: var(--sh-sm); border-color: var(--border-2); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 22px; font-weight: 700; font-size: 1.02rem; text-align: left; color: var(--ink); }
.faq-q svg { color: var(--slate-400); transition: transform .25s; flex: none; }
.faq-item.open .faq-q svg { transform: rotate(180deg); color: var(--orange-500); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s var(--ease); }
.faq-item.open .faq-a { max-height: 240px; }
.faq-a p { padding: 0 22px 22px; font-size: .96rem; }

/* ------------------------------ Final CTA ------------------------------- */
.final-band { position: relative; text-align: center; background: linear-gradient(150deg, var(--orange-500), var(--orange-700)); border-radius: var(--r-xl); padding: 64px 32px; overflow: hidden; }
.final-glow { position: absolute; inset: 0; background: radial-gradient(circle at 30% 20%, rgba(255,255,255,.22), transparent 50%); }
.final-band > * { position: relative; z-index: 1; }

/* ------------------------------ Footer ---------------------------------- */
.lp-footer { background: var(--surface); border-top: 1px solid var(--border); padding: 56px 0 28px; }
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; }
.foot-col h5 { font-size: .82rem; text-transform: uppercase; letter-spacing: .05em; color: var(--slate-500); margin-bottom: 14px; }
.foot-col a { display: block; color: var(--slate-600); font-size: .92rem; padding: 5px 0; transition: color .15s; }
.foot-col a:hover { color: var(--orange-600); }
.foot-bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 44px; padding-top: 24px; border-top: 1px solid var(--border); flex-wrap: wrap; }

/* ------------------------------ Responsive ------------------------------ */
@media (max-width: 980px) {
  .hero-grid, .problem-grid, .autobuy-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; max-width: 460px; }
  .feat-grid, .mod-grid, .how-grid { grid-template-columns: repeat(2, 1fr); }
  .how-grid::before { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .testi-grid { grid-template-columns: 1fr; }
  .lp-nav { display: none; }
  .lp-header-cta { display: none; }
  .lp-burger { display: grid; }
}
@media (max-width: 680px) {
  .feat-grid, .mod-grid, .how-grid, .pricing-grid, .sc-kpis, .sc-deals, .foot-grid { grid-template-columns: 1fr; }
  .plan-featured { transform: none; }
  .hero-sub { font-size: 1.08rem; }
  .lp-autobuy { margin: 0 8px; border-radius: var(--r-lg); }
  .foot-grid { gap: 24px; }
}
