/* ══════════════════════════════════════════════════════════════════════════
   Snipers-R-Us — public landing page (GAME-FI HUD)
   ──────────────────────────────────────────────────────────────────────────
   Standalone: shares no CSS with the app shell, so it stays small and paints
   fast for first-time visitors and crawlers. Visual language matches the
   terminal: dark arena, starfield, scanlines, sniper scope, HUD brackets.
   Accent is GREEN — the ecosystem color — with purple/cyan support. Headers
   keep Orbitron; body text stays on the system (Twitter-style) stack.
   ══════════════════════════════════════════════════════════════════════════ */

:root {
  --lp-bg:      #04060d;
  --lp-bg2:     #080b16;
  --lp-card:    rgba(255, 255, 255, 0.032);
  --lp-border:  rgba(255, 255, 255, 0.09);
  --lp-fg:      #ffffff;
  --lp-muted:   #a4a7bd;
  --lp-subtle:  #767a92;
  --lp-green:   #22c55e;
  --lp-green-2: #16C784;
  --lp-purple:  #a855f7;
  --lp-purple-2:#c77dff;
  --lp-cyan:    #22d3ee;
  --lp-radius:  16px;
  --lp-max:     1140px;
  --lp-sans:    -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --lp-display: 'Orbitron', var(--lp-sans);
  --lp-mono:    'JetBrains Mono', ui-monospace, Menlo, monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  background:
    radial-gradient(ellipse 1000px 480px at 12% -10%, rgba(168, 85, 247, 0.16), transparent 55%),
    radial-gradient(ellipse 800px 420px at 94% 4%, rgba(34, 197, 94, 0.10), transparent 50%),
    radial-gradient(ellipse 700px 480px at 50% 115%, rgba(34, 211, 238, 0.07), transparent 55%),
    var(--lp-bg);
  color: var(--lp-fg);
  font-family: var(--lp-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
/* Starfield + scanlines — the arena every section floats in */
body::before {
  content: "";
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1.4px);
  background-size: 26px 26px;
  mask-image: radial-gradient(ellipse 90% 75% at 50% 30%, #000 25%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 90% 75% at 50% 30%, #000 25%, transparent 100%);
}
body::after {
  content: "";
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background: repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.016) 0 1px, transparent 1px 3px);
}

a { color: inherit; text-decoration: none; }
main, .lp-nav, .lp-footer { position: relative; z-index: 1; }

.lp-skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  padding: 10px 16px;
  background: var(--lp-purple);
  color: #fff;
  border-radius: 0 0 8px 0;
}
.lp-skip:focus { left: 0; }

/* ── Nav ── */
.lp-nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; gap: 18px;
  padding: 13px max(20px, calc((100vw - var(--lp-max)) / 2));
  background: linear-gradient(180deg, rgba(6, 8, 16, 0.92), rgba(6, 8, 16, 0.78));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(34, 197, 94, 0.18);
}
.lp-brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--lp-display); font-weight: 900; letter-spacing: 0.14em; font-size: 0.92rem; }
.lp-brand img { border-radius: 8px; box-shadow: 0 0 14px rgba(34, 197, 94, 0.35); }
.lp-brand .bt-w { color: #fff; }
.lp-brand .bt-g { color: var(--lp-green); text-shadow: 0 0 12px rgba(34, 197, 94, 0.5); }
.lp-brand .bt-p { color: var(--lp-purple-2); text-shadow: 0 0 12px rgba(168, 85, 247, 0.5); }
.lp-nav-links { display: flex; gap: 4px; margin-left: auto; }
.lp-nav-links a {
  font-family: var(--lp-mono); font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--lp-muted); padding: 8px 12px; border-radius: 7px;
  border: 1px solid transparent;
  transition: color .16s, border-color .16s, background .16s;
}
.lp-nav-links a:hover { color: var(--lp-fg); border-color: rgba(34, 197, 94, 0.35); background: rgba(34, 197, 94, 0.07); }

/* ── Buttons (scope-green primary, bordered ghost) ── */
.lp-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--lp-mono); font-weight: 800; letter-spacing: 0.14em;
  text-transform: uppercase; font-size: 0.78rem;
  color: #06120a;
  background: linear-gradient(180deg, #4ade80, var(--lp-green));
  border: none; border-radius: 8px; padding: 12px 20px; cursor: pointer;
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
  box-shadow: 0 0 22px rgba(34, 197, 94, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.35);
  transition: transform .16s, box-shadow .16s;
  position: relative; overflow: hidden;
}
.lp-btn::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(255, 255, 255, 0.45) 50%, transparent 65%);
  background-size: 260% 100%;
  animation: lpSheen 2.8s linear infinite;
}
@keyframes lpSheen { from { background-position: 160% 0; } to { background-position: -60% 0; } }
.lp-btn:hover { transform: translateY(-2px); box-shadow: 0 0 34px rgba(34, 197, 94, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.35); }
.lp-btn-sm { padding: 9px 14px; font-size: 0.68rem; }
.lp-btn-lg { padding: 15px 26px; font-size: 0.84rem; }
.lp-btn-ghost {
  color: var(--lp-fg); background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--lp-border); box-shadow: none;
}
.lp-btn-ghost::after { display: none; }
.lp-btn-ghost:hover { border-color: rgba(34, 197, 94, 0.5); background: rgba(34, 197, 94, 0.08); box-shadow: 0 0 18px rgba(34, 197, 94, 0.12); }
.lp-btn-gold { /* lifetime tier accent — green, not yellow */
  background: linear-gradient(180deg, #4ade80, var(--lp-green-2));
}

/* ── Hero ── */
.lp-hero { padding: clamp(70px, 10vw, 130px) 20px clamp(48px, 7vw, 90px); position: relative; overflow: hidden; }
.lp-hero-glow {
  position: absolute; left: 50%; top: -30%; width: 900px; height: 600px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(34, 197, 94, 0.12), rgba(168, 85, 247, 0.10) 45%, transparent 70%);
  pointer-events: none;
}
.lp-hero-inner { position: relative; max-width: var(--lp-max); margin: 0 auto; }
.lp-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--lp-mono); font-size: 0.66rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--lp-green);
  padding: 7px 14px; border-radius: 6px;
  background: rgba(34, 197, 94, 0.10);
  box-shadow: inset 0 0 0 1px rgba(34, 197, 94, 0.35), 0 0 14px rgba(34, 197, 94, 0.15);
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}
.lp-dot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; box-shadow: 0 0 8px 1px currentColor; animation: lpDotPulse 1.8s ease-in-out infinite; }
@keyframes lpDotPulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.4; transform: scale(0.75); } }

.lp-hero h1 {
  margin: 22px 0 18px;
  font-family: var(--lp-display);
  font-size: clamp(2.3rem, 5.8vw, 4.2rem);
  font-weight: 900; line-height: 1.06; letter-spacing: 0.02em;
  animation: lpRise .7s cubic-bezier(.16, 1, .3, 1) both;
}
.lp-grad {
  background: linear-gradient(90deg, var(--lp-green) 5%, var(--lp-cyan) 55%, var(--lp-purple-2) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  filter: drop-shadow(0 0 22px rgba(34, 197, 94, 0.28));
}
@keyframes lpRise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
.lp-sub {
  color: var(--lp-muted); font-size: clamp(0.98rem, 1.6vw, 1.12rem);
  line-height: 1.75; max-width: 560px;
  animation: lpRise .7s cubic-bezier(.16, 1, .3, 1) .12s both;
}
.lp-cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; animation: lpRise .7s cubic-bezier(.16, 1, .3, 1) .22s both; }
.lp-microcopy {
  margin-top: 16px; color: var(--lp-subtle);
  font-family: var(--lp-mono); font-size: 0.72rem; letter-spacing: 0.08em;
  animation: lpRise .7s cubic-bezier(.16, 1, .3, 1) .3s both;
}
.lp-microcopy strong { color: var(--lp-green); }

.lp-stat-row {
  display: flex; flex-wrap: wrap; gap: 12px; margin-top: 40px; padding: 0;
  list-style: none; animation: lpRise .7s cubic-bezier(.16, 1, .3, 1) .4s both;
}
.lp-stat-row li {
    display: flex; flex-direction: column; gap: 2px;
    background: linear-gradient(165deg, rgba(20, 26, 44, 0.75), rgba(10, 13, 24, 0.9));
    border: 1px solid var(--lp-border); border-radius: 12px;
    padding: 14px 20px 11px; min-width: 118px;
}
.lp-stat-row strong { font-family: var(--lp-display); font-weight: 900; font-size: 1.35rem; color: var(--lp-green); text-shadow: 0 0 14px rgba(34, 197, 94, 0.4); }
.lp-stat-row li:nth-child(2) strong { color: var(--lp-cyan); text-shadow: 0 0 14px rgba(34, 211, 238, 0.4); }
.lp-stat-row li:nth-child(3) strong { color: var(--lp-purple-2); text-shadow: 0 0 14px rgba(168, 85, 247, 0.4); }
.lp-stat-row span { font-family: var(--lp-mono); font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--lp-subtle); }

/* ── Live ops deck (hero panel) ── */
.lp-hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(28px, 5vw, 64px); align-items: center; max-width: var(--lp-max); margin: 0 auto; }
.lp-ops { animation: lpRise .8s cubic-bezier(.16, 1, .3, 1) .25s both; }
.lp-ops-frame {
  position: relative;
  background: linear-gradient(165deg, rgba(20, 26, 44, 0.88), rgba(10, 13, 24, 0.94) 60%, rgba(7, 9, 17, 0.96));
  border: 1px solid var(--lp-border); border-radius: 16px;
  padding: 20px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.lp-ops-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.lp-ops-title { font-family: var(--lp-mono); font-size: 0.66rem; font-weight: 800; letter-spacing: 0.22em; color: var(--lp-green); }
.lp-ops-pill {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--lp-mono); font-size: 0.6rem; font-weight: 700; letter-spacing: 0.16em;
  color: var(--lp-green); padding: 5px 11px; border-radius: 5px;
  background: rgba(34, 197, 94, 0.10); box-shadow: inset 0 0 0 1px rgba(34, 197, 94, 0.35);
}
.lp-ops-scope-row { display: flex; align-items: center; gap: 18px; margin-bottom: 16px; }
.lp-scope { position: relative; width: 78px; height: 78px; flex: none; }
.lp-scope-ring { position: absolute; inset: 0; border-radius: 50%; border: 1.5px solid rgba(34, 197, 94, 0.40); animation: lpScopePulse 2.4s ease-in-out infinite; }
@keyframes lpScopePulse { 0%, 100% { transform: scale(1); opacity: .6; } 50% { transform: scale(1.05); opacity: 1; } }
.lp-scope-sweep {
  position: absolute; inset: 0; border-radius: 50%;
  background: conic-gradient(from 0deg, transparent 0deg, transparent 300deg, rgba(34, 197, 94, 0.35) 355deg, rgba(34, 197, 94, 0.65) 360deg);
  animation: lpScopeSpin 2.1s linear infinite;
}
@keyframes lpScopeSpin { to { transform: rotate(360deg); } }
.lp-scope-cross { position: absolute; background: rgba(34, 197, 94, 0.30); }
.lp-scope-cross.v { left: 50%; top: 8%; bottom: 8%; width: 1px; }
.lp-scope-cross.h { top: 50%; left: 8%; right: 8%; height: 1px; }
.lp-scope-dot { position: absolute; left: 50%; top: 50%; width: 7px; height: 7px; margin: -3.5px 0 0 -3.5px; border-radius: 50%; background: var(--lp-green); box-shadow: 0 0 10px 2px rgba(34, 197, 94, 0.7); animation: lpDotPulse 1.2s ease-in-out infinite; }
.lp-ops-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; flex: 1; }
.lp-ops-metric { background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.07); border-radius: 10px; padding: 10px 6px; text-align: center; }
.lp-ops-metric span { display: block; font-family: var(--lp-mono); font-size: 0.54rem; letter-spacing: 0.14em; color: var(--lp-subtle); margin-bottom: 5px; }
.lp-ops-metric strong { font-family: var(--lp-display); font-weight: 900; font-size: 1.2rem; color: var(--lp-fg); }
.lp-ops-metric strong.g { color: var(--lp-green); text-shadow: 0 0 12px rgba(34, 197, 94, 0.4); }
.lp-ops-metric strong.p { color: var(--lp-purple-2); text-shadow: 0 0 12px rgba(168, 85, 247, 0.4); }
.lp-ops-feed { display: grid; gap: 7px; }
.lp-ops-row {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255, 255, 255, 0.025); border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px; padding: 9px 11px;
}
.lp-ops-row strong { display: block; font-size: 0.76rem; letter-spacing: 0.06em; font-family: var(--lp-display); }
.lp-ops-row small { display: block; font-family: var(--lp-mono); font-size: 0.6rem; color: var(--lp-subtle); margin-top: 2px; }
.lp-ops-badge {
  font-family: var(--lp-mono); font-size: 0.56rem; font-weight: 800; letter-spacing: 0.14em;
  padding: 4px 8px; border-radius: 5px; flex: none;
  clip-path: polygon(4px 0, 100% 0, 100% calc(100% - 4px), calc(100% - 4px) 100%, 0 100%, 0 4px);
}
.lp-ops-badge.g { color: var(--lp-green); background: rgba(34, 197, 94, 0.12); box-shadow: inset 0 0 0 1px rgba(34, 197, 94, 0.35); }
.lp-ops-badge.c { color: var(--lp-cyan); background: rgba(34, 211, 238, 0.10); box-shadow: inset 0 0 0 1px rgba(34, 211, 238, 0.3); }
.lp-ops-badge.p { color: var(--lp-purple-2); background: rgba(168, 85, 247, 0.12); box-shadow: inset 0 0 0 1px rgba(168, 85, 247, 0.35); }

/* ── Sections ── */
.lp-section { padding: clamp(56px, 8vw, 96px) 20px; }
.lp-section > * { max-width: var(--lp-max); margin-left: auto; margin-right: auto; }
.lp-section-alt { background: linear-gradient(180deg, transparent, rgba(168, 85, 247, 0.045), transparent); }
.lp-section-head { text-align: center; margin-bottom: 42px; }
.lp-section-head h2 { font-family: var(--lp-display); font-size: clamp(1.6rem, 3.8vw, 2.4rem); font-weight: 900; letter-spacing: 0.04em; }
.lp-section-head p { color: var(--lp-subtle); font-family: var(--lp-mono); font-size: 0.78rem; letter-spacing: 0.08em; margin-top: 10px; }

.lp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.lp-card {
  position: relative; padding: 22px 20px;
  background: linear-gradient(165deg, rgba(20, 26, 44, 0.75), rgba(10, 13, 24, 0.9));
  border: 1px solid var(--lp-border); border-radius: var(--lp-radius);
  transition: transform .2s cubic-bezier(.16, 1, .3, 1), border-color .2s, box-shadow .2s;
  overflow: hidden;
}
.lp-card::before {
  content: ""; position: absolute; left: 0; top: 12%; bottom: 12%; width: 3px;
  border-radius: 0 3px 3px 0;
  background: linear-gradient(180deg, transparent, var(--lp-green) 25%, var(--lp-green) 75%, transparent);
  box-shadow: 0 0 10px 1px rgba(34, 197, 94, 0.45);
  opacity: 0; transition: opacity .2s;
}
.lp-card:hover::before { opacity: 1; }
.lp-card:hover { transform: translateY(-4px); border-color: rgba(34, 197, 94, 0.4); box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5), 0 0 20px rgba(34, 197, 94, 0.10); }
.lp-ico {
  width: 40px; height: 40px; border-radius: 11px;
  display: grid; place-items: center;
  font-size: 1.15rem; color: var(--lp-green);
  background: rgba(34, 197, 94, 0.10);
  border: 1px solid rgba(34, 197, 94, 0.30);
  box-shadow: 0 0 14px rgba(34, 197, 94, 0.15);
  margin-bottom: 14px;
}
.lp-card:nth-child(3n+2) .lp-ico { color: var(--lp-cyan); background: rgba(34, 211, 238, 0.09); border-color: rgba(34, 211, 238, 0.28); box-shadow: 0 0 14px rgba(34, 211, 238, 0.12); }
.lp-card:nth-child(3n) .lp-ico { color: var(--lp-purple-2); background: rgba(168, 85, 247, 0.10); border-color: rgba(168, 85, 247, 0.30); box-shadow: 0 0 14px rgba(168, 85, 247, 0.14); }
.lp-card h3 { font-family: var(--lp-display); font-size: 0.95rem; font-weight: 800; letter-spacing: 0.05em; margin-bottom: 8px; }
.lp-card p { color: var(--lp-muted); font-size: 0.88rem; line-height: 1.65; }

/* ── Fleet ── */
.lp-bots { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.lp-bot {
  position: relative; padding: 16px 16px 14px;
  background: linear-gradient(165deg, rgba(20, 26, 44, 0.7), rgba(10, 13, 24, 0.88));
  border: 1px solid var(--lp-border); border-radius: 12px;
  transition: transform .18s, border-color .18s, box-shadow .18s;
}
.lp-bot::after {
  content: ""; position: absolute; left: 50%; bottom: 8px; width: 5px; height: 5px;
  border-radius: 50%; background: var(--lp-green);
  box-shadow: 0 0 8px 1px rgba(34, 197, 94, 0.7);
  animation: lpDotPulse 2s ease-in-out infinite;
}
.lp-bot:hover { transform: translateY(-3px); border-color: rgba(34, 197, 94, 0.4); box-shadow: 0 12px 26px rgba(0, 0, 0, 0.45); }
.lp-bot h3 { font-family: var(--lp-display); font-size: 0.85rem; font-weight: 800; letter-spacing: 0.05em; margin-bottom: 6px; color: var(--lp-fg); }
.lp-bot p { color: var(--lp-subtle); font-family: var(--lp-mono); font-size: 0.64rem; line-height: 1.55; padding-bottom: 8px; }
.lp-note {
  margin-top: 22px; text-align: center;
  color: var(--lp-subtle); font-family: var(--lp-mono); font-size: 0.72rem; letter-spacing: 0.06em;
}
.lp-note strong { color: var(--lp-green); }

/* ── Pricing — loot tiers ── */
/* Five tiers: a fixed 4-column grid left the last card orphaned on its own
   row. auto-fit keeps them on one row on wide screens and reflows evenly
   instead of stranding one. */
.lp-price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 14px;
  align-items: start;
}
.lp-price {
  position: relative; display: flex; flex-direction: column; gap: 8px;
  padding: 22px 20px 18px;
  background: linear-gradient(165deg, rgba(20, 26, 44, 0.8), rgba(10, 13, 24, 0.92));
  border: 1px solid var(--lp-border); border-radius: var(--lp-radius);
  transition: transform .2s cubic-bezier(.16, 1, .3, 1), border-color .2s, box-shadow .2s;
}
.lp-price:hover { transform: translateY(-4px); border-color: rgba(34, 197, 94, 0.45); box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5); }
.lp-price h3 { font-family: var(--lp-display); font-size: 0.9rem; font-weight: 800; letter-spacing: 0.06em; }
.lp-amount { font-family: var(--lp-display); font-weight: 900; font-size: 1.9rem; color: var(--lp-green); text-shadow: 0 0 16px rgba(34, 197, 94, 0.35); line-height: 1; }
.lp-dur { color: var(--lp-subtle); font-family: var(--lp-mono); font-size: 0.64rem; letter-spacing: 0.1em; text-transform: uppercase; }
.lp-price ul { list-style: none; padding: 0; margin: 8px 0 14px; display: grid; gap: 6px; flex: 1; }
.lp-price ul li { color: var(--lp-muted); font-size: 0.8rem; line-height: 1.5; padding-left: 16px; position: relative; }
.lp-price ul li::before { content: "✓"; position: absolute; left: 0; color: var(--lp-green); font-weight: 800; }
.lp-price-featured {
  border-color: rgba(168, 85, 247, 0.55);
  box-shadow: 0 0 26px rgba(168, 85, 247, 0.16);
}
.lp-price-featured .lp-amount { color: var(--lp-purple-2); text-shadow: 0 0 16px rgba(168, 85, 247, 0.4); }
.lp-price-life {
  border-color: rgba(34, 197, 94, 0.6);
  box-shadow: 0 0 26px rgba(34, 197, 94, 0.18);
}
.lp-badge {
  position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
  font-family: var(--lp-mono); font-size: 0.58rem; font-weight: 800; letter-spacing: 0.14em;
  text-transform: uppercase; white-space: nowrap;
  color: #fff; background: var(--lp-purple);
  padding: 4px 12px; border-radius: 999px;
  box-shadow: 0 0 16px rgba(168, 85, 247, 0.5);
}

/* ── FAQ ── */
.lp-faq { display: grid; gap: 10px; max-width: 780px; margin: 0 auto; }
.lp-faq details {
  background: linear-gradient(165deg, rgba(20, 26, 44, 0.7), rgba(10, 13, 24, 0.88));
  border: 1px solid var(--lp-border); border-radius: 12px;
  padding: 16px 18px;
  transition: border-color .18s;
}
.lp-faq details[open] { border-color: rgba(34, 197, 94, 0.4); }
.lp-faq summary {
  cursor: pointer; font-family: var(--lp-display); font-weight: 700;
  font-size: 0.9rem; letter-spacing: 0.03em; list-style: none;
  display: flex; align-items: center; gap: 10px;
}
.lp-faq summary::before { content: "+"; color: var(--lp-green); font-weight: 900; font-size: 1.1rem; }
.lp-faq details[open] summary::before { content: "−"; }
.lp-faq summary::-webkit-details-marker { display: none; }
.lp-faq details p { color: var(--lp-muted); font-size: 0.88rem; line-height: 1.7; margin-top: 12px; }

/* ── Final CTA ── */
.lp-final {
  text-align: center; padding: clamp(60px, 9vw, 110px) 20px;
  background:
    radial-gradient(ellipse 700px 320px at 50% 120%, rgba(34, 197, 94, 0.14), transparent 65%);
}
.lp-final h2 { font-family: var(--lp-display); font-size: clamp(1.7rem, 4vw, 2.6rem); font-weight: 900; letter-spacing: 0.04em; margin-bottom: 12px; }
.lp-final p { color: var(--lp-muted); font-family: var(--lp-mono); font-size: 0.82rem; letter-spacing: 0.06em; margin-bottom: 28px; }

/* ── Footer ── */
.lp-footer {
  border-top: 1px solid rgba(34, 197, 94, 0.16);
  background: linear-gradient(180deg, rgba(6, 8, 16, 0.6), #04060d);
  padding: 40px 20px 30px;
}
.lp-footer-in { max-width: var(--lp-max); margin: 0 auto; }
.lp-disclaimer { color: var(--lp-subtle); font-size: 0.76rem; line-height: 1.7; max-width: 720px; }
.lp-disclaimer strong { color: var(--lp-muted); }
.lp-footer-links { display: flex; gap: 18px; margin: 20px 0 14px; flex-wrap: wrap; }
.lp-footer-links a { color: var(--lp-muted); font-family: var(--lp-mono); font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; transition: color .15s; }
.lp-footer-links a:hover { color: var(--lp-green); }
.lp-copy { color: var(--lp-subtle); font-family: var(--lp-mono); font-size: 0.66rem; }

/* ── Breach transition (landing → gate) ── */
.lp-breach { position: fixed; inset: 0; z-index: 99990; display: none; pointer-events: none; }
.lp-breach.is-live { display: block; }
.lp-breach-door { position: absolute; top: 0; bottom: 0; width: 50.5%; background: linear-gradient(180deg, #0b1220, #05070f); box-shadow: inset 0 0 40px rgba(34, 197, 94, 0.08); transform: scaleX(0); }
.lp-breach-door.left { left: 0; transform-origin: left center; border-right: 2px solid rgba(34, 197, 94, 0.6); }
.lp-breach-door.right { right: 0; transform-origin: right center; border-left: 2px solid rgba(168, 85, 247, 0.6); }
.lp-breach.is-live .lp-breach-door.left { animation: lpDoor .5s cubic-bezier(.2, .9, .2, 1) forwards; }
.lp-breach.is-live .lp-breach-door.right { animation: lpDoor .5s cubic-bezier(.2, .9, .2, 1) forwards; }
@keyframes lpDoor { from { transform: scaleX(0); } to { transform: scaleX(1); } }
.lp-breach-wipe {
  position: absolute; inset: -10% -20%;
  background: linear-gradient(105deg, transparent 0%, rgba(34, 197, 94, 0.75) 40%, #4ade80 50%, rgba(168, 85, 247, 0.75) 60%, transparent 100%);
  transform: translateX(-130%) skewX(-14deg); opacity: 0;
  box-shadow: 0 0 70px rgba(34, 197, 94, 0.45);
}
.lp-breach.is-live .lp-breach-wipe { animation: lpWipe .75s cubic-bezier(.15, .85, .2, 1) .42s forwards; }
@keyframes lpWipe {
  0% { transform: translateX(-130%) skewX(-14deg); opacity: 1; }
  60% { opacity: 1; }
  100% { transform: translateX(130%) skewX(-14deg); opacity: .2; }
}
.lp-breach-core {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%) scale(.85);
  display: flex; flex-direction: column; align-items: center; gap: 18px; opacity: 0;
}
.lp-breach.is-live .lp-breach-core { animation: lpCore .55s cubic-bezier(.16, 1, .3, 1) .45s forwards; }
@keyframes lpCore { from { opacity: 0; transform: translate(-50%, -50%) scale(.85); } to { opacity: 1; transform: translate(-50%, -50%) scale(1); } }
.lp-breach-label { font-family: var(--lp-display); font-weight: 800; font-size: 0.85rem; letter-spacing: 0.34em; color: var(--lp-green); text-shadow: 0 0 18px rgba(34, 197, 94, 0.5); }
.lp-breach .lp-scope { width: 110px; height: 110px; }

/* ── Responsive ── */
@media (max-width: 980px) {
  .lp-hero-grid { grid-template-columns: 1fr; }
  .lp-ops { max-width: 520px; }
  .lp-grid, .lp-bots, .lp-price-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .lp-nav-links { display: none; }
  .lp-grid, .lp-bots, .lp-price-grid { grid-template-columns: 1fr; }
  .lp-stat-row li { flex: 1 1 40%; }
}

@media (prefers-reduced-motion: reduce) {
  body::after { display: none; }
  .lp-btn::after, .lp-scope-ring, .lp-scope-sweep, .lp-scope-dot, .lp-dot, .lp-bot::after { animation: none !important; }
  .lp-breach, .lp-breach * { animation: none !important; }
}
