/* SmartMoneyOS Landing Preview V2 — scoped to .lp-root only */

.lp-root {
  --lp-bg: #03050a;
  --lp-bg-2: #070b14;
  --lp-surface: rgba(12, 18, 32, 0.72);
  --lp-glass: rgba(16, 24, 42, 0.55);
  --lp-border: rgba(148, 163, 184, 0.14);
  --lp-border-bright: rgba(56, 189, 248, 0.28);
  --lp-text: #f8fafc;
  --lp-muted: #94a3b8;
  --lp-dim: #64748b;
  --lp-cyan: #22d3ee;
  --lp-aqua: #2dd4bf;
  --lp-blue: #38bdf8;
  --lp-purple: #a78bfa;
  --lp-green: #34d399;
  --lp-red: #fb7185;
  --lp-grad: linear-gradient(135deg, #22d3ee 0%, #38bdf8 40%, #a78bfa 100%);
  --lp-shadow: 0 32px 80px rgba(0, 0, 0, 0.55);
  --lp-radius: 20px;
  --lp-nav-h: 72px;
  --lp-max: 1240px;
  --lp-font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --lp-mono: "JetBrains Mono", "SF Mono", Consolas, monospace;
  color: var(--lp-text);
  background: var(--lp-bg);
  font-family: var(--lp-font);
  line-height: 1.5;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  margin: 0;
  padding: 0;
}

.lp-root *, .lp-root *::before, .lp-root *::after { box-sizing: border-box; }

/* Ambient layers */
.lp-root::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 70% 55% at 15% -5%, rgba(34, 211, 238, 0.14), transparent 55%),
    radial-gradient(ellipse 50% 45% at 85% 10%, rgba(167, 139, 250, 0.12), transparent 50%),
    radial-gradient(ellipse 40% 30% at 50% 100%, rgba(45, 212, 191, 0.08), transparent 45%);
}

.lp-root::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.lp-root > * { position: relative; z-index: 1; }

@media (prefers-reduced-motion: reduce) {
  .lp-root { scroll-behavior: auto; }
  .lp-root *, .lp-root *::before, .lp-root *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }
}

/* Operator badge — small, floating */
.lp-op-badge {
  position: fixed;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 200;
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--lp-dim);
  background: rgba(7, 11, 20, 0.85);
  border: 1px solid var(--lp-border);
  border-radius: 999px;
  padding: 0.35rem 0.65rem;
  backdrop-filter: blur(8px);
}

/* Nav */
.lp-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--lp-nav-h);
  display: flex;
  align-items: center;
  backdrop-filter: blur(16px) saturate(1.2);
  background: rgba(3, 5, 10, 0.72);
  border-bottom: 1px solid var(--lp-border);
}

.lp-container { width: min(calc(100vw - 2.5rem), var(--lp-max)); margin-inline: auto; }
@media (max-width: 480px) {
  .lp-container { width: min(calc(100vw - 1.25rem), var(--lp-max)); }
}

.lp-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
}

.lp-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--lp-text);
}

.lp-mark {
  width: 36px;
  height: 36px;
  border-radius: 11px;
  background: var(--lp-grad);
  display: grid;
  place-items: center;
  box-shadow: 0 0 24px rgba(34, 211, 238, 0.35);
  flex-shrink: 0;
}

.lp-wordmark {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.lp-wordmark span {
  background: var(--lp-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lp-nav-links {
  display: none;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.lp-nav-links a {
  color: var(--lp-muted);
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}
.lp-nav-links a:hover, .lp-nav-links a:focus-visible { color: var(--lp-cyan); outline: none; }

.lp-nav-actions { display: flex; gap: 0.65rem; align-items: center; flex-shrink: 0; }
@media (max-width: 520px) {
  .lp-nav-actions .lp-btn--ghost { display: none; }
  .lp-nav-actions .lp-btn { padding: 0.5rem 0.85rem; font-size: 0.82rem; }
  .lp-wordmark { font-size: 1rem; }
  .lp-mark { width: 30px; height: 30px; }
}

.lp-btn {
  border-radius: 12px;
  border: 1px solid transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.65rem 1.25rem;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  white-space: nowrap;
}
.lp-btn:focus-visible { outline: 2px solid var(--lp-cyan); outline-offset: 2px; }
.lp-btn--primary {
  background: var(--lp-grad);
  color: #031018;
  box-shadow: 0 8px 32px rgba(34, 211, 238, 0.28);
}
.lp-btn--primary:hover { transform: translateY(-1px); box-shadow: 0 12px 40px rgba(34, 211, 238, 0.35); }
.lp-btn--secondary {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--lp-border-bright);
  color: var(--lp-text);
  backdrop-filter: blur(8px);
}
.lp-btn--ghost {
  background: transparent;
  border-color: var(--lp-border);
  color: var(--lp-muted);
  font-size: 0.85rem;
  padding: 0.55rem 1rem;
  cursor: not-allowed;
  opacity: 0.7;
}

.lp-menu-toggle {
  display: flex;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--lp-border);
  border-radius: 10px;
  color: var(--lp-text);
  padding: 0.45rem 0.7rem;
  font-size: 0.85rem;
}

@media (min-width: 960px) {
  .lp-nav-links { display: flex; }
  .lp-menu-toggle { display: none; }
}

.lp-mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0.85rem;
  padding: 1rem 1.25rem 1.25rem;
  border-bottom: 1px solid var(--lp-border);
  background: rgba(7, 11, 20, 0.95);
}
.lp-mobile-nav.is-open { display: flex; }
.lp-mobile-nav a { color: var(--lp-muted); text-decoration: none; font-weight: 500; }

/* Hero — first viewport */
.lp-hero {
  min-height: calc(100vh - var(--lp-nav-h));
  min-height: calc(100dvh - var(--lp-nav-h));
  display: flex;
  align-items: center;
  padding: 1.5rem 0 2rem;
}

.lp-hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
  width: 100%;
}
.lp-hero-grid > * { min-width: 0; max-width: 100%; }

@media (min-width: 1080px) {
  .lp-hero-grid {
    grid-template-columns: 52fr 48fr;
    gap: 2.5rem;
  }
}

.lp-hero-copy { max-width: 34rem; }

.lp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lp-aqua);
  margin-bottom: 1rem;
}
.lp-eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--lp-grad);
  border-radius: 2px;
}

.lp-hero h1 {
  font-size: clamp(2.35rem, 4.8vw, 3.75rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin: 0 0 1.1rem;
}

.lp-grad-text {
  background: var(--lp-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lp-hero-lead {
  color: var(--lp-muted);
  font-size: 1.1rem;
  line-height: 1.55;
  margin: 0 0 1.75rem;
  max-width: 28ch;
}

.lp-hero-cta { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-bottom: 1.75rem; }

.lp-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.lp-trust-chip {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--lp-muted);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--lp-border);
  border-radius: 999px;
  padding: 0.4rem 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.lp-trust-chip::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lp-aqua);
  box-shadow: 0 0 8px var(--lp-aqua);
}

/* Hero composition */
.lp-composition {
  position: relative;
  min-height: 420px;
  aspect-ratio: 1 / 0.92;
  max-height: min(72vh, 620px);
  width: 100%;
  max-width: 100%;
  margin-inline: auto;
  perspective: 1200px;
  overflow: hidden;
}

@media (min-width: 1080px) {
  .lp-composition { min-height: 480px; max-height: 580px; }
}

.lp-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  opacity: 0.55;
}
.lp-orb--cyan { width: 45%; height: 45%; top: 5%; left: 10%; background: rgba(34, 211, 238, 0.35); }
.lp-orb--purple { width: 40%; height: 40%; bottom: 10%; right: 5%; background: rgba(167, 139, 250, 0.3); }

.lp-stage {
  position: absolute;
  inset: 0;
  border-radius: var(--lp-radius);
  background: linear-gradient(145deg, rgba(14, 22, 38, 0.9), rgba(8, 12, 22, 0.95));
  border: 1px solid var(--lp-border-bright);
  box-shadow: var(--lp-shadow), inset 0 1px 0 rgba(255,255,255,0.06);
  overflow: hidden;
}

.lp-stage-grid {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(56,189,248,0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56,189,248,0.5) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 45%, black, transparent);
}

.lp-core-sphere {
  position: absolute;
  left: 50%;
  top: 42%;
  width: 28%;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #67e8f9, #0ea5e9 45%, #6366f1 85%);
  box-shadow:
    0 0 60px rgba(34, 211, 238, 0.5),
    0 0 120px rgba(99, 102, 241, 0.25),
    inset 0 -8px 24px rgba(0,0,0,0.35);
  animation: lp-pulse 4s ease-in-out infinite;
}

@keyframes lp-pulse {
  0%, 100% { box-shadow: 0 0 60px rgba(34,211,238,0.45), 0 0 120px rgba(99,102,241,0.2), inset 0 -8px 24px rgba(0,0,0,0.35); }
  50% { box-shadow: 0 0 80px rgba(34,211,238,0.65), 0 0 140px rgba(99,102,241,0.35), inset 0 -8px 24px rgba(0,0,0,0.35); }
}

.lp-float-card {
  position: absolute;
  background: rgba(10, 16, 28, 0.88);
  border: 1px solid var(--lp-border-bright);
  border-radius: 14px;
  padding: 0.65rem 0.8rem;
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
  font-size: 0.7rem;
  min-width: 120px;
  animation: lp-float 6s ease-in-out infinite;
}
.lp-float-card strong { display: block; color: var(--lp-text); font-size: 0.75rem; margin-bottom: 0.15rem; }
.lp-float-card span { color: var(--lp-muted); }
.lp-float-card--a { top: 12%; left: 6%; animation-delay: 0s; }
  .lp-float-card--b { top: 18%; right: 8%; animation-delay: -2s; }
.lp-float-card--c { bottom: 28%; left: 4%; animation-delay: -4s; }

@keyframes lp-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.lp-mini-panel {
  position: absolute;
  background: rgba(8, 14, 26, 0.92);
  border: 1px solid var(--lp-border);
  border-radius: 12px;
  padding: 0.55rem 0.65rem;
  font-size: 0.65rem;
  backdrop-filter: blur(10px);
}
.lp-mini-panel--chart { bottom: 14%; right: 8%; width: 38%; }
.lp-mini-panel--feed { bottom: 14%; left: 8%; width: 36%; }
.lp-mini-panel--pnl { top: 58%; right: 10%; width: 34%; }
.lp-pnl-line {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  margin: 0.2rem 0 0;
  font-size: 0.62rem;
  color: var(--lp-muted);
}
.lp-pnl-line strong { color: var(--lp-text); font-size: 0.68rem; }
.lp-mini-panel h4 {
  margin: 0 0 0.35rem;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--lp-dim);
}

.lp-candles { display: flex; align-items: flex-end; gap: 3px; height: 36px; }
.lp-candles i {
  display: block;
  width: 5px;
  border-radius: 2px;
  background: var(--lp-green);
  opacity: 0.85;
}
.lp-candles i:nth-child(even) { background: var(--lp-red); height: 55% !important; }

.lp-signal {
  position: absolute;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.2rem 0.45rem;
  border-radius: 6px;
  animation: lp-signal 3s ease-in-out infinite;
}
.lp-signal--buy { top: 38%; left: 22%; color: var(--lp-green); background: rgba(52,211,153,0.12); }
.lp-signal--sell { top: 52%; right: 20%; color: var(--lp-red); background: rgba(251,113,133,0.12); animation-delay: -1.5s; }

@keyframes lp-signal { 0%,100%{opacity:0.7} 50%{opacity:1} }

.lp-chip-row { display: flex; gap: 0.35rem; flex-wrap: wrap; margin-top: 0.35rem; }
.lp-chip {
  font-size: 0.58rem;
  padding: 0.15rem 0.4rem;
  border-radius: 6px;
  background: rgba(34,211,238,0.1);
  color: var(--lp-cyan);
  border: 1px solid rgba(34,211,238,0.2);
}

.lp-coin-bg {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(167,139,250,0.2);
  opacity: 0.25;
}
.lp-coin-bg--1 { width: 18%; height: 18%; top: 8%; right: 22%; }
.lp-coin-bg--2 { width: 12%; height: 12%; bottom: 42%; right: 30%; }

/* Floating sign-in card */
.lp-signin-float {
  position: absolute;
  top: 8%;
  right: 6%;
  width: min(220px, 42%);
  z-index: 10;
  background: rgba(12, 18, 32, 0.82);
  border: 1px solid var(--lp-border-bright);
  border-radius: 16px;
  padding: 1rem 1.1rem;
  backdrop-filter: blur(20px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.05);
}

.lp-signin-float .lp-mark { width: 28px; height: 28px; border-radius: 8px; margin-bottom: 0.65rem; }
.lp-signin-float h2 { font-size: 1rem; margin: 0 0 0.15rem; font-weight: 700; }
.lp-signin-float .lp-preview-note {
  font-size: 0.62rem;
  color: #fbbf24;
  background: rgba(251,191,36,0.08);
  border: 1px solid rgba(251,191,36,0.25);
  border-radius: 6px;
  padding: 0.35rem 0.5rem;
  margin-bottom: 0.75rem;
  line-height: 1.35;
}

.lp-field { margin-bottom: 0.55rem; }
.lp-field label { display: block; font-size: 0.68rem; color: var(--lp-dim); margin-bottom: 0.2rem; }
.lp-field input {
  width: 100%;
  padding: 0.5rem 0.6rem;
  border-radius: 8px;
  border: 1px solid var(--lp-border);
  background: rgba(3,5,10,0.6);
  color: var(--lp-muted);
  font-size: 0.78rem;
}
.lp-signin-float .lp-btn--login-preview {
  width: 100%;
  margin-top: 0.35rem;
  opacity: 0.45;
  cursor: not-allowed;
  font-size: 0.8rem;
  padding: 0.55rem;
}
.lp-signin-float .lp-login-link {
  display: block;
  text-align: center;
  margin-top: 0.65rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--lp-cyan);
  text-decoration: none;
}
.lp-signin-float .lp-login-link:hover { text-decoration: underline; }

@media (max-width: 1079px) {
  .lp-composition {
    max-height: none;
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    aspect-ratio: auto;
    min-height: 0;
  }
  .lp-stage {
    position: relative;
    inset: auto;
    min-height: 320px;
    aspect-ratio: 1 / 0.85;
    flex-shrink: 0;
  }
  .lp-signin-float {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    max-width: 100%;
    margin: 0;
  }
  .lp-hero { min-height: auto; padding: 2rem 0; }
}

/* Sections */
.lp-section { padding: 5rem 0; }
.lp-section--alt {
  background: linear-gradient(180deg, rgba(7,11,20,0.5), rgba(3,5,10,0.8));
  border-block: 1px solid var(--lp-border);
}

.lp-section h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 0.65rem;
}

.lp-section-intro { color: var(--lp-muted); font-size: 1.05rem; max-width: 52ch; margin: 0 0 2.5rem; }

/* Dashboard showcase */
.lp-showcase {
  border-radius: 24px;
  border: 1px solid var(--lp-border-bright);
  background: linear-gradient(160deg, #0c1220, #060a12);
  box-shadow: var(--lp-shadow);
  overflow: hidden;
}

.lp-showcase-chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0.85rem 1.25rem;
  background: rgba(0,0,0,0.35);
  border-bottom: 1px solid var(--lp-border);
}
.lp-showcase-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(148,163,184,0.25); }

.lp-showcase-body {
  display: grid;
  gap: 1px;
  background: var(--lp-border);
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .lp-showcase-body { grid-template-columns: 1.2fr 1fr; }
}

.lp-showcase-panel {
  background: #0a0f1a;
  padding: 1.25rem;
  min-height: 180px;
}
.lp-showcase-panel h3 {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--lp-dim);
  margin: 0 0 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.lp-demo-badge {
  font-size: 0.58rem;
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
  background: rgba(34,211,238,0.12);
  color: var(--lp-cyan);
  border: 1px solid rgba(34,211,238,0.25);
}

.lp-table { width: 100%; border-collapse: collapse; font-size: 0.78rem; }
.lp-table th { color: var(--lp-dim); font-weight: 500; text-align: left; padding: 0.45rem 0.35rem; border-bottom: 1px solid var(--lp-border); }
.lp-table td { padding: 0.5rem 0.35rem; border-bottom: 1px solid rgba(148,163,184,0.06); }
.lp-pill { font-size: 0.62rem; font-weight: 700; padding: 0.2rem 0.45rem; border-radius: 6px; }
.lp-pill--buy { background: rgba(52,211,153,0.15); color: var(--lp-green); }
.lp-pill--sell { background: rgba(251,113,133,0.15); color: var(--lp-red); }

/* Flow */
.lp-flow {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 800px) {
  .lp-flow { grid-template-columns: repeat(3, 1fr); }
}

.lp-flow-card {
  padding: 1.75rem 1.5rem;
  border-radius: var(--lp-radius);
  background: var(--lp-glass);
  border: 1px solid var(--lp-border);
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
}
.lp-flow-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--lp-grad);
}
.lp-flow-num {
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--lp-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.lp-flow-card h3 { margin: 0 0 0.5rem; font-size: 1.1rem; }
.lp-flow-card p { margin: 0; color: var(--lp-muted); font-size: 0.9rem; }

/* Bento */
.lp-bento {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) {
  .lp-bento { grid-template-columns: repeat(4, 1fr); grid-auto-rows: minmax(120px, auto); }
}
.lp-bento-card {
  padding: 1.35rem;
  border-radius: var(--lp-radius);
  background: var(--lp-glass);
  border: 1px solid var(--lp-border);
  backdrop-filter: blur(10px);
}
.lp-bento-card h3 { font-size: 0.95rem; margin: 0 0 0.35rem; }
.lp-bento-card p { font-size: 0.8rem; color: var(--lp-muted); margin: 0; }
.lp-bento-card--wide { grid-column: span 1; }
@media (min-width: 700px) {
  .lp-bento-card--wide { grid-column: span 2; }
  .lp-bento-card--tall { grid-row: span 2; }
}

/* Transparency pipeline */
.lp-pipeline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
  margin-top: 1.5rem;
}
.lp-pipe-step {
  padding: 0.75rem 1.25rem;
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--lp-border);
  font-size: 0.85rem;
  font-weight: 600;
}
.lp-pipe-arrow { color: var(--lp-dim); font-size: 1.25rem; }

/* Security visual */
.lp-security-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 900px) {
  .lp-security-grid { grid-template-columns: 1fr 1fr; }
}
.lp-shield-visual {
  aspect-ratio: 1;
  max-width: 320px;
  margin-inline: auto;
  position: relative;
}
.lp-shield-visual svg { width: 100%; height: 100%; filter: drop-shadow(0 0 40px rgba(34,211,238,0.25)); }

.lp-list { margin: 0; padding: 0; list-style: none; }
.lp-list li {
  padding: 0.65rem 0 0.65rem 1.5rem;
  position: relative;
  color: var(--lp-muted);
  border-bottom: 1px solid rgba(148,163,184,0.06);
}
.lp-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 1rem;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--lp-aqua);
}

/* FAQ */
.lp-faq details {
  border: 1px solid var(--lp-border);
  border-radius: 14px;
  margin-bottom: 0.65rem;
  padding: 1rem 1.15rem;
  background: var(--lp-glass);
  backdrop-filter: blur(8px);
}
.lp-faq summary { cursor: pointer; font-weight: 600; font-size: 0.95rem; }
.lp-faq summary:focus-visible { outline: 2px solid var(--lp-cyan); outline-offset: 2px; }
.lp-faq p { color: var(--lp-muted); font-size: 0.88rem; margin: 0.65rem 0 0; line-height: 1.55; }

.lp-disclaimer {
  margin-top: 2rem;
  padding: 1.15rem 1.25rem;
  border-radius: 14px;
  border: 1px solid rgba(251,113,133,0.25);
  background: rgba(251,113,133,0.06);
  color: var(--lp-muted);
  font-size: 0.82rem;
  line-height: 1.55;
}

.lp-cta-final { text-align: center; padding: 4rem 0 5rem; }
.lp-cta-final h2 { margin-bottom: 1.5rem; }
.lp-cta-final .lp-btn { margin: 0 0.35rem; }

/* Footer */
.lp-footer {
  padding: 2.5rem 0;
  border-top: 1px solid var(--lp-border);
  color: var(--lp-dim);
  font-size: 0.8rem;
}
.lp-footer-links { display: flex; flex-wrap: wrap; gap: 1.25rem; margin-bottom: 1rem; }
.lp-footer-links a { color: var(--lp-dim); text-decoration: none; opacity: 0.7; }

/* ===== V3 — authentic showcases, no hero sign-in ===== */

.lp-composition--v3 .lp-core-sphere--lg {
  width: 34%;
  top: 44%;
}

.lp-composition--v3 .lp-float-card--a { top: 10%; left: 8%; }
.lp-composition--v3 .lp-float-card--b { top: 14%; right: 6%; }
.lp-composition--v3 .lp-float-card--c { bottom: 30%; left: 6%; }

.lp-mini-panel--prominent {
  box-shadow: 0 12px 32px rgba(0,0,0,0.45);
  border-color: var(--lp-border-bright);
}

.lp-composition--v3 .lp-mini-panel--chart { bottom: 12%; right: 6%; width: 42%; }
.lp-composition--v3 .lp-mini-panel--feed { bottom: 12%; left: 6%; width: 40%; }

.lp-section-kicker {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lp-aqua);
  margin: 0 0 0.5rem;
}

.lp-showcase-nav {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  margin-top: 1.5rem;
}
@media (min-width: 800px) {
  .lp-showcase-nav { grid-template-columns: repeat(3, 1fr); }
}

.lp-showcase-nav-card {
  display: block;
  padding: 1.35rem 1.25rem;
  border-radius: var(--lp-radius);
  background: var(--lp-glass);
  border: 1px solid var(--lp-border);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.lp-showcase-nav-card:hover,
.lp-showcase-nav-card:focus-visible {
  border-color: var(--lp-border-bright);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(34,211,238,0.12);
  outline: none;
}
.lp-showcase-nav-num {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--lp-cyan);
}
.lp-showcase-nav-card h3 { margin: 0.35rem 0; font-size: 1rem; }
.lp-showcase-nav-card p { margin: 0; font-size: 0.82rem; color: var(--lp-muted); }

.lp-showcase-row {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}
@media (min-width: 1024px) {
  .lp-showcase-row { grid-template-columns: 1.05fr 0.95fr; gap: 3rem; }
  .lp-showcase-row--reverse .lp-showcase-media { order: 2; }
  .lp-showcase-row--reverse .lp-showcase-copy { order: 1; }
}

.lp-showcase-copy h2 {
  font-size: clamp(1.65rem, 2.8vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 0.85rem;
}
.lp-showcase-lead {
  color: var(--lp-muted);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0 0 1.25rem;
}
.lp-showcase-note {
  margin-top: 1rem;
  font-size: 0.82rem;
  color: var(--lp-dim);
  font-style: italic;
}

.lp-callout-list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: lp-callout;
}
.lp-callout-list li {
  counter-increment: lp-callout;
  position: relative;
  padding: 0.55rem 0 0.55rem 2.25rem;
  border-bottom: 1px solid rgba(148,163,184,0.08);
  color: var(--lp-muted);
  font-size: 0.88rem;
  line-height: 1.45;
}
.lp-callout-list li::before {
  content: counter(lp-callout);
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 8px;
  background: rgba(34,211,238,0.12);
  border: 1px solid rgba(34,211,238,0.25);
  color: var(--lp-cyan);
  font-size: 0.72rem;
  font-weight: 700;
  display: grid;
  place-items: center;
}
.lp-callout-list strong { color: var(--lp-text); }

.lp-shot-frame {
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(160deg, rgba(14,22,38,0.95), rgba(6,10,18,0.98));
  border: 1px solid rgba(56,189,248,0.22);
  box-shadow:
    0 24px 64px rgba(0,0,0,0.5),
    0 0 0 1px rgba(167,139,250,0.08) inset,
    0 0 48px rgba(34,211,238,0.08);
}
.lp-shot-frame--wide { margin-top: 1.5rem; }

.lp-shot-trigger {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  line-height: 0;
}
.lp-shot-trigger:focus-visible {
  outline: 2px solid var(--lp-cyan);
  outline-offset: 3px;
}
.lp-shot-trigger img {
  width: 100%;
  height: auto;
  max-height: min(72vh, 680px);
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.35s ease;
}
@media (prefers-reduced-motion: no-preference) {
  .lp-shot-trigger:hover img,
  .lp-shot-trigger:focus-visible img {
    transform: scale(1.015);
  }
}
.lp-shot-frame--wide .lp-shot-trigger img { max-height: none; }

.lp-shot-label--muted {
  padding: 0.55rem 0.85rem;
  font-size: 0.75rem;
  letter-spacing: normal;
  text-transform: none;
  color: #94a3b8;
  background: rgba(0, 0, 0, 0.2);
  border-top: 1px solid var(--lp-border);
  text-align: center;
  line-height: 1.45;
}

.lp-showcase-note--identity {
  margin-top: 0.85rem;
  font-size: 0.82rem;
  color: var(--lp-muted);
  line-height: 1.5;
}

.lp-shot-label {
  padding: 0.55rem 0.85rem;
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--lp-dim);
  background: rgba(0,0,0,0.35);
  border-top: 1px solid var(--lp-border);
  text-align: center;
}

.lp-explain-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) {
  .lp-explain-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1100px) {
  .lp-explain-grid { grid-template-columns: repeat(3, 1fr); }
}
.lp-explain-card {
  padding: 1.15rem 1.2rem;
  border-radius: 14px;
  background: var(--lp-glass);
  border: 1px solid var(--lp-border);
}
.lp-explain-card h3 { margin: 0 0 0.4rem; font-size: 0.92rem; }
.lp-explain-card p { margin: 0; font-size: 0.82rem; color: var(--lp-muted); line-height: 1.5; }

.lp-transparency-note {
  margin-top: 1.5rem;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--lp-border-bright);
  background: rgba(34,211,238,0.06);
  color: var(--lp-muted);
  font-size: 0.85rem;
  text-align: center;
}

.lp-lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(3,5,10,0.92);
  backdrop-filter: blur(12px);
  display: grid;
  place-items: center;
  padding: 1.25rem;
}
.lp-lightbox[hidden] { display: none !important; }
.lp-lightbox-img {
  max-width: min(100%, 1200px);
  max-height: calc(100vh - 5rem);
  width: auto;
  height: auto;
  border-radius: 12px;
  border: 1px solid var(--lp-border-bright);
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
}
.lp-lightbox-caption {
  margin: 0.75rem 0 0;
  color: var(--lp-dim);
  font-size: 0.8rem;
  text-align: center;
  grid-row: 2;
}
.lp-lightbox-close {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 501;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 10px;
  border: 1px solid var(--lp-border);
  background: rgba(12,18,32,0.9);
  color: var(--lp-text);
  font-size: 1.1rem;
  cursor: pointer;
}
.lp-lightbox-close:focus-visible {
  outline: 2px solid var(--lp-cyan);
  outline-offset: 2px;
}

@media (max-width: 1079px) {
  .lp-composition--v3 .lp-core-sphere--lg { width: 38%; }
}
