/* ================================================================
   ZENANCE TRADING — ULTRA-PREMIUM PURPLE GRADIENT LANDING PAGE CSS
   Primary Color: #6c00ff
   Background: Shaded Purple-White Gradient
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@400;500;600;700;800;900&display=swap');

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

:root {
  /* Brand Colors */
  --primary: #6c00ff;
  --primary-hover: #5800d4;
  --primary-active: #4a00b3;
  --primary-light: #8d3dff;
  --primary-glow: rgba(108, 0, 255, 0.28);
  --primary-subtle: rgba(108, 0, 255, 0.08);
  --primary-gradient: linear-gradient(135deg, #6c00ff 0%, #8b3dff 100%);
  --purple-badge-bg: rgba(108, 0, 255, 0.06);

  /* Page Canvas & Shaded Gradients */
  --bg-page: #fafbff;
  --bg-page-gradient: linear-gradient(180deg, #ffffff 0%, #ffffff 110px, #f7f5ff 38%, #efeaff 68%, #f9f8ff 100%);
  --bg-card: #ffffff;
  --bg-card-glass: rgba(255, 255, 255, 0.88);
  --bg-card-glass-hover: rgba(255, 255, 255, 0.96);
  --bg-secondary: #f4f3fb;

  /* Typography */
  --text-primary: #10111a;
  --text-secondary: #525672;
  --text-muted: #8c93a8;
  --text-dim: #a6acc2;

  /* Borders & Dividers */
  --border-light: rgba(108, 0, 255, 0.1);
  --border-glass: rgba(255, 255, 255, 0.9);
  --border-subtle: rgba(0, 0, 0, 0.06);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(108, 0, 255, 0.04), 0 1px 3px rgba(0, 0, 0, 0.02);
  --shadow-md: 0 12px 32px rgba(108, 0, 255, 0.08), 0 2px 8px rgba(0, 0, 0, 0.03);
  --shadow-lg: 0 24px 60px rgba(108, 0, 255, 0.12), 0 4px 16px rgba(0, 0, 0, 0.04);
  --shadow-showcase: 0 35px 90px rgba(108, 0, 255, 0.14), 0 6px 24px rgba(0, 0, 0, 0.04);
  --shadow-button: 0 6px 20px rgba(108, 0, 255, 0.32);

  /* Radii */
  --radius-pill: 9999px;
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;

  /* Success & Alert */
  --success: #10b981;
  --success-bg: rgba(16, 185, 129, 0.1);
  --danger: #ef4444;
  --danger-bg: rgba(239, 68, 68, 0.1);
}

html {
  scroll-behavior: smooth;
}

body.lp-body {
  background-color: var(--bg-page);
  background-image: var(--bg-page-gradient);
  color: var(--text-primary);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ================================================================
   GRID LINES & CROSSHAIR ACCENTS
   ================================================================ */
.lp-grid-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: 
    linear-gradient(to right, rgba(108, 0, 255, 0.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(108, 0, 255, 0.035) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 30%, transparent 80%);
}

.lp-crosshair {
  position: absolute;
  color: rgba(108, 0, 255, 0.25);
  font-family: monospace;
  font-size: 14px;
  font-weight: 300;
  user-select: none;
  pointer-events: none;
  z-index: 1;
}

.lp-ambient-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(90px);
  z-index: 0;
}

.lp-ambient-center {
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
  width: 750px;
  height: 500px;
  background: radial-gradient(circle, rgba(108, 0, 255, 0.16) 0%, rgba(141, 61, 255, 0.06) 50%, transparent 75%);
}

/* ================================================================
   TOP NAVIGATION BAR — IPHONE DYNAMIC ISLAND LIQUID GLASS
   ================================================================ */
.lp-nav {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 1240px;
  height: 64px;
  z-index: 1000;
  padding: 6px 14px 6px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 999px;
  box-sizing: border-box;
  
  /* Authentic Profile Liquid Glass Dock Base — Enhanced Transparency for Visible Blur */
  background: rgba(255, 255, 255, 0.28) !important;
  backdrop-filter: blur(28px) saturate(210%) !important;
  -webkit-backdrop-filter: blur(28px) saturate(210%) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.65) !important;
  box-shadow: 0 12px 35px rgba(108, 0, 255, 0.08), 
              0 4px 14px rgba(0, 0, 0, 0.03),
              inset 0 1.5px 2px rgba(255, 255, 255, 0.85), 
              inset 0 -1.5px 2px rgba(0, 0, 0, 0.02) !important;
  
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Dynamic Island Condensation on Scroll */
.lp-nav.scrolled {
  top: 12px;
  height: 58px;
  max-width: 1180px;
  background: rgba(255, 255, 255, 0.45) !important;
  backdrop-filter: blur(32px) saturate(220%) !important;
  -webkit-backdrop-filter: blur(32px) saturate(220%) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.75) !important;
  box-shadow: 0 16px 40px rgba(108, 0, 255, 0.12), 
              0 6px 18px rgba(0, 0, 0, 0.04),
              inset 0 1.5px 2px rgba(255, 255, 255, 0.9), 
              inset 0 -1.5px 2px rgba(0, 0, 0, 0.03) !important;
}

.lp-nav-container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.lp-nav-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 10px;
  transition: transform 0.2s ease;
}

.lp-nav-brand:hover {
  transform: scale(1.02);
}

.lp-nav-brand img {
  height: 32px;
  width: auto;
  object-fit: contain;
  display: block;
}

.lp-nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}

.lp-nav-menu a {
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 600;
  color: #475569;
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  display: inline-flex;
  align-items: center;
}

.lp-nav-menu a:hover {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(235, 242, 255, 0.65) 100%) !important;
  border-color: rgba(139, 92, 246, 0.45) !important;
  color: #6c00ff !important;
  box-shadow: 0 8px 24px rgba(108, 0, 255, 0.15), inset 0 2px 3px rgba(255, 255, 255, 1) !important;
}

.lp-nav-menu a.active {
  background: linear-gradient(135deg, #7c3aed 0%, #6c00ff 50%, #4f46e5 100%) !important;
  color: #ffffff !important;
  border: 1.5px solid rgba(255, 255, 255, 0.6) !important;
  box-shadow: 0 8px 25px rgba(108, 0, 255, 0.5), 0 2px 8px rgba(108, 0, 255, 0.35), inset 0 2px 2.5px rgba(255, 255, 255, 0.7), inset 0 -2px 3px rgba(0, 0, 0, 0.3) !important;
}

.lp-nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lp-nav-right-link {
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 600;
  color: #475569;
  transition: all 0.25s ease;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1.5px solid transparent;
}

.lp-nav-right-link:hover {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(235, 242, 255, 0.65) 100%) !important;
  border-color: rgba(139, 92, 246, 0.45) !important;
  color: #6c00ff !important;
  box-shadow: 0 8px 24px rgba(108, 0, 255, 0.15), inset 0 2px 3px rgba(255, 255, 255, 1) !important;
}

.lp-lang-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78) 0%, rgba(245, 248, 255, 0.45) 100%) !important;
  backdrop-filter: blur(20px) saturate(190%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(190%) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.95) !important;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: #475569;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(108, 0, 255, 0.05), inset 0 1.5px 2px rgba(255, 255, 255, 0.95), inset 0 -1.5px 2px rgba(0, 0, 0, 0.03) !important;
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.lp-lang-pill:hover {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(235, 242, 255, 0.65) 100%) !important;
  color: #6c00ff !important;
  border-color: rgba(139, 92, 246, 0.45) !important;
  box-shadow: 0 8px 24px rgba(108, 0, 255, 0.15), inset 0 2px 3px rgba(255, 255, 255, 1) !important;
}

.lp-btn-login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78) 0%, rgba(245, 248, 255, 0.45) 100%) !important;
  backdrop-filter: blur(20px) saturate(190%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(190%) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.95) !important;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 700;
  color: #475569;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(108, 0, 255, 0.05), inset 0 1.5px 2px rgba(255, 255, 255, 0.95), inset 0 -1.5px 2px rgba(0, 0, 0, 0.03) !important;
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.lp-btn-login:hover {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(235, 242, 255, 0.65) 100%) !important;
  border-color: rgba(139, 92, 246, 0.45) !important;
  color: #6c00ff !important;
  box-shadow: 0 8px 24px rgba(108, 0, 255, 0.15), inset 0 2px 3px rgba(255, 255, 255, 1) !important;
}

.lp-btn-signup {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 24px;
  background: linear-gradient(135deg, #7c3aed 0%, #6c00ff 50%, #4f46e5 100%) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.6) !important;
  border-radius: 999px;
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(108, 0, 255, 0.5), 0 2px 8px rgba(108, 0, 255, 0.35), inset 0 2px 2.5px rgba(255, 255, 255, 0.7), inset 0 -2px 3px rgba(0, 0, 0, 0.3) !important;
  backdrop-filter: blur(20px) saturate(200%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(200%) !important;
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
}

.lp-btn-signup:hover {
  filter: brightness(1.08);
  box-shadow: 0 10px 30px rgba(108, 0, 255, 0.65), 0 3px 10px rgba(108, 0, 255, 0.4), inset 0 2px 2.5px rgba(255, 255, 255, 0.85) !important;
  transform: translateY(-1px);
}

.lp-btn-signup:active {
  transform: translateY(1px);
}

.lp-hamburger {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.lp-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  margin: 5px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

/* Mobile Slide Menu — Matching Floating Glass Card */
.lp-mobile-menu {
  display: none;
  position: fixed;
  top: 76px;
  left: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.75) !important;
  backdrop-filter: blur(24px) saturate(200%) !important;
  -webkit-backdrop-filter: blur(24px) saturate(200%) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.9) !important;
  border-radius: 24px;
  padding: 22px;
  flex-direction: column;
  gap: 14px;
  z-index: 999;
  box-shadow: 0 20px 48px rgba(108, 0, 255, 0.12), inset 0 1.5px 2px rgba(255, 255, 255, 1);
  transform: translateY(-12px) scale(0.97);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.lp-mobile-menu.open {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
}

.lp-mobile-menu a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  padding: 8px 12px;
  border-radius: 12px;
  transition: all 0.2s ease;
}

.lp-mobile-menu a:hover {
  background: rgba(108, 0, 255, 0.06);
  color: var(--primary);
}

/* ================================================================
   SCROLL-DRIVEN 3D CRYPTO & DASHBOARD INTERACTIVE STAGE
   ================================================================ */
.lp-scroll-track {
  position: relative;
  height: 380vh;
  width: 100%;
}

@media (max-width: 768px) {
  .lp-scroll-track {
    height: 280vh;
  }
}

.lp-sticky-stage {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--bg-page-gradient);
  z-index: 10;
}

/* Hero Text Wrap — sits above banner & coins, below rising dashboard */
.lp-hero-text-wrap {
  position: absolute;
  top: 115px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 10;
  width: 94%;
  max-width: 1100px;
  pointer-events: auto;
  will-change: transform, opacity;
}

/* Hero Typography — Luxury Mixed Modern Sans & Calligraphic Serif (Strictly 2 Lines) */
.lp-hero-title {
  font-family: 'Plus Jakarta Sans', 'Outfit', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.24;
  letter-spacing: -0.025em;
  max-width: 1040px;
  margin: 0 auto 16px;
  text-align: center;
}

.lp-font-calligraphy {
  font-family: 'Instrument Serif', 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.14em;
  letter-spacing: -0.01em;
  background: linear-gradient(135deg, #6c00ff 10%, #9333ea 55%, #c084fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  padding: 0 4px;
}

.lp-mobile-br {
  display: none;
}

.lp-desktop-br {
  display: inline;
}

.lp-hero-sub {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 560px;
  margin: 0 auto 24px;
}

.lp-hero-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ================================================================
   CRISP GLOWING AURORA SPINNING BORDER BUTTON
   ================================================================ */
.lp-aurora-btn-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}

.button-container {
  position: relative;
  width: 156px;
  height: 48px;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

.button-border {
  position: relative;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 2px;
  border-radius: var(--radius-pill);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px -4px rgba(108, 0, 255, 0.35), 0 2px 6px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.button {
  width: 100%;
  height: 100%;
  background: #111218;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: 0.3px;
  z-index: 2;
  user-select: none;
  transition: background 0.3s ease, color 0.3s ease;
}

.real-button {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  outline: none;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  opacity: 0;
  text-decoration: none;
}

.spin {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: inherit;
  pointer-events: none;
}

/* Crisp Spinning Border Beam — Pure Purple & White Theme (Lightweight & Fast) */
.spin-beam {
  z-index: 1;
}

.spin-beam::before {
  content: "";
  position: absolute;
  inset: -150%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    #6c00ff 60deg,
    #a855f7 120deg,
    #ffffff 180deg,
    #c084fc 240deg,
    #6c00ff 300deg,
    transparent 360deg
  );
  animation: speen 4.5s linear infinite;
  will-change: transform;
}

/* Subtle Soft Ambient Glow (Tight, Clean & Mobile Optimized) */
.spin-glow {
  position: absolute;
  inset: -3px;
  border-radius: var(--radius-pill);
  z-index: -1;
  opacity: 0.55;
  filter: blur(8px);
  transition: opacity 0.25s ease;
}

.spin-glow::before {
  content: "";
  position: absolute;
  inset: -100%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    #6c00ff 70deg,
    #a855f7 140deg,
    #ffffff 200deg,
    #6c00ff 280deg,
    transparent 360deg
  );
  animation: speen 4.5s linear infinite;
  will-change: transform;
}

/* Hover & Active States */
.real-button:hover ~ .button-container .button-border {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -4px rgba(108, 0, 255, 0.55), 0 3px 8px rgba(0, 0, 0, 0.12);
}

.real-button:hover ~ .button-container .button {
  background: #181924;
  color: #ffffff;
}

.real-button:hover ~ .button-container .spin-glow {
  opacity: 0.85;
}

.real-button:active ~ .button-container .button-border {
  transform: translateY(0) scale(0.98);
}

@keyframes speen {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Symmetrical Connecting Arcs SVG */
.lp-arcs-svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1200px;
  height: 650px;
  pointer-events: none;
  z-index: 1;
  overflow: visible;
}

.lp-arc-line {
  stroke: rgba(108, 0, 255, 0.12);
  stroke-width: 1.2;
  stroke-dasharray: 4 5;
  fill: none;
}

/* 3D Standalone Crypto Coins Layer — BEHIND the dashboard (z-index: 2) */
.lp-coins-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.lp-3d-coin {
  position: absolute;
  width: 160px;
  height: 160px;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  will-change: transform, opacity;
  filter: drop-shadow(0 16px 30px rgba(108, 0, 255, 0.18)) drop-shadow(0 6px 12px rgba(0, 0, 0, 0.06));
  transition: none;
}

.lp-3d-coin img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  animation: lp-coin-float 4s ease-in-out infinite;
}

.lp-3d-coin:nth-child(1) img { animation-delay: 0s; }
.lp-3d-coin:nth-child(2) img { animation-delay: -0.7s; }
.lp-3d-coin:nth-child(3) img { animation-delay: -1.4s; }
.lp-3d-coin:nth-child(4) img { animation-delay: -2.1s; }
.lp-3d-coin:nth-child(5) img { animation-delay: -2.8s; }
.lp-3d-coin:nth-child(6) img { animation-delay: -3.5s; }

@keyframes lp-coin-float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(2deg); }
}

@media (max-width: 768px) {
  .lp-hero-text-wrap {
    top: 7%;
  }
  .lp-hero-title {
    font-size: 32px;
    line-height: 1.2;
  }
  .lp-hero-sub {
    font-size: 14px;
  }
  .lp-3d-coin {
    width: 80px;
    height: 80px;
  }
}

/* Desktop Hero Ecosystem Banner (Fills empty space above Dashboard & glides behind rising card) */
.lp-desktop-hero-banner {
  position: absolute;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  z-index: 4; /* Below "Join Zenance" CTA (z-index: 10) & rising Dashboard (z-index: 15) */
  width: 900px;
  max-width: 90vw;
  pointer-events: none;
  will-change: transform, opacity;
}

.lp-banner-border {
  position: relative;
  width: 100%;
  padding: 3.5px 3.5px 0 3.5px;
  border-top-left-radius: 32px;
  border-top-right-radius: 32px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  overflow: hidden;
  box-shadow: 0 -18px 55px rgba(108, 0, 255, 0.45), 0 8px 30px rgba(0, 0, 0, 0.08);
}

.lp-banner-spin {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
  pointer-events: none;
}

/* Crisp Spinning Border Beam — Matches Join Zenance Theme (Vivid & Thick) */
.lp-banner-beam {
  z-index: 1;
}

.lp-banner-beam::before {
  content: "";
  position: absolute;
  inset: -180%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    #6c00ff 40deg,
    #a855f7 90deg,
    #ffffff 150deg,
    #ffffff 180deg,
    #c084fc 230deg,
    #6c00ff 290deg,
    transparent 360deg
  );
  animation: speen 6s linear infinite;
  will-change: transform;
}

/* Optimized Vivid Ambient Glow */
.lp-banner-glow {
  position: absolute;
  inset: -6px -6px 0 -6px;
  z-index: 0;
  opacity: 0.85;
  filter: blur(14px);
}

.lp-banner-glow::before {
  content: "";
  position: absolute;
  inset: -140%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    #6c00ff 50deg,
    #a855f7 110deg,
    #ffffff 180deg,
    #6c00ff 270deg,
    transparent 360deg
  );
  animation: speen 6s linear infinite;
  will-change: transform;
}

.lp-banner-content {
  position: relative;
  z-index: 2;
  width: 100%;
  background: #0d0e14;
  border-top-left-radius: 28px;
  border-top-right-radius: 28px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  overflow: hidden;
}

.lp-banner-img {
  width: 100%;
  height: auto;
  aspect-ratio: 1274 / 637;
  display: block;
  border-top-left-radius: 28px;
  border-top-right-radius: 28px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

/* Dashboard Showcase — ABOVE coins & banner (z-index: 15), starts peeking from bottom */
.lp-showcase-wrapper {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%) translateY(76%);
  z-index: 15;
  width: 90%;
  max-width: 1040px;
  pointer-events: auto;
  will-change: transform;
}

/* Tablet & Intermediate Desktop Viewports (769px to 1150px) — Flawless Scaling */
@media (min-width: 769px) and (max-width: 1150px) {
  .lp-nav-menu {
    gap: 14px;
  }
  .lp-nav-menu a {
    font-size: 13px;
  }
  .lp-nav-right {
    gap: 10px;
  }
  .lp-nav-right-link,
  .lp-lang-pill {
    display: none;
  }
  .lp-btn-login,
  .lp-btn-signup {
    padding: 6px 16px;
    font-size: 13px;
  }
  .lp-hero-text-wrap {
    top: 60px;
  }
  .lp-hero-title {
    font-size: 38px;
  }
  .lp-desktop-hero-banner {
    bottom: 45px;
    width: 86%;
    max-width: 820px;
  }
  .lp-showcase-wrapper {
    transform: translateX(-50%) translateY(74%);
  }
}

.lp-showcase-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(108, 0, 255, 0.14);
  box-shadow: var(--shadow-showcase);
  padding: 28px;
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.lp-showcase-card:hover {
  box-shadow: 0 45px 110px rgba(108, 0, 255, 0.18), 0 8px 30px rgba(0, 0, 0, 0.05);
}

/* Top App Header Row */
.lp-app-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  margin-bottom: 24px;
  gap: 16px;
  flex-wrap: wrap;
}

.lp-app-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lp-app-brand img {
  height: 26px;
  width: auto;
  object-fit: contain;
}

.lp-app-center-pills {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lp-pill-referral {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f1f3f9;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}

.lp-pill-referral-count {
  background: #ffffff;
  padding: 2px 7px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  margin-left: 2px;
}

.lp-btn-copy-code {
  background: #10111a;
  color: #ffffff;
  border: none;
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  font-size: 12.5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.lp-btn-copy-code:hover {
  background: var(--primary);
  transform: translateY(-1px);
}

.lp-app-user-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lp-app-search {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f4f6fa;
  border: 1px solid rgba(0, 0, 0, 0.04);
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  color: var(--text-muted);
}

.lp-app-icon-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #f4f6fa;
  border: 1px solid rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  position: relative;
  cursor: pointer;
}

.lp-app-icon-btn::after {
  content: '';
  position: absolute;
  top: 7px; right: 7px;
  width: 6px; height: 6px;
  background: #ef4444;
  border-radius: 50%;
}

.lp-app-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary-gradient);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(108, 0, 255, 0.25);
}

/* App Main Layout (Sidebar + Content) */
.lp-app-body {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
}

/* App Sidebar Menu */
.lp-app-sidebar {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lp-app-menu-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.lp-app-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.2s ease;
}

.lp-app-nav-item.active {
  background: var(--primary-subtle);
  color: var(--primary);
  font-weight: 600;
}

.lp-app-nav-item:hover:not(.active) {
  background: #f4f6fa;
  color: var(--text-primary);
}

/* App Main Dashboard View */
.lp-app-content {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.lp-app-greeting {
  font-family: 'Outfit', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Metrics Top Row */
.lp-app-metrics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.lp-metric-card {
  padding: 18px 20px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lp-metric-card.card-blue {
  background: linear-gradient(135deg, #eef5ff 0%, #e3efff 100%);
  border-color: rgba(59, 130, 246, 0.15);
}

.lp-metric-card.card-purple {
  background: linear-gradient(135deg, #f5efff 0%, #ebe0ff 100%);
  border-color: rgba(108, 0, 255, 0.15);
}

.lp-metric-info-label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.lp-metric-info-val {
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--text-primary);
}

.lp-metric-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
  background: #ffffff;
  color: #10b981;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

/* Earning Statistics Chart Card */
.lp-chart-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
}

.lp-chart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.lp-chart-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
}

.lp-chart-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lp-dropdown-pill {
  padding: 5px 12px;
  background: #f4f6fa;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
}

/* SVG Chart Area */
.lp-svg-chart-container {
  width: 100%;
  height: 180px;
  position: relative;
}

.lp-svg-chart {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.lp-chart-days-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 4px 0;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
}

.lp-app-live-strip {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(108, 0, 255, 0.08);
}

.lp-app-live-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(108, 0, 255, 0.04);
  border: 1px solid rgba(108, 0, 255, 0.08);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-primary);
}

.lp-live-dot {
  width: 6px;
  height: 6px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(16, 185, 129, 0.6);
  animation: liveDotPulse 1.5s infinite ease-in-out;
}

@keyframes liveDotPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.6; }
}

.lp-live-pair {
  font-weight: 700;
  color: var(--text-primary);
}

.lp-live-badge-up {
  color: #10b981;
  font-weight: 700;
}

/* ================================================================
   LIVE MARKET MARQUEE / TICKER SECTION
   ================================================================ */
.lp-ticker-section {
  position: relative;
  z-index: 2;
  padding: 20px 0;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  margin-top: 50px;
  overflow: hidden;
}

.lp-ticker-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: ticker-scroll 35s linear infinite;
}

.lp-ticker-track:hover {
  animation-play-state: paused;
}

@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.lp-ticker-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  border: 1px solid rgba(108, 0, 255, 0.08);
  border-radius: var(--radius-pill);
  padding: 8px 18px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
  white-space: nowrap;
  transition: all 0.2s ease;
}

.lp-ticker-card:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 14px rgba(108, 0, 255, 0.12);
  transform: translateY(-1px);
}

.lp-ticker-symbol {
  font-weight: 700;
  font-size: 13.5px;
  color: var(--text-primary);
}

.lp-ticker-price {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--text-primary);
}

.lp-ticker-change {
  font-size: 12px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 6px;
}

.lp-ticker-change.up {
  color: #10b981;
  background: rgba(16, 185, 129, 0.1);
}

.lp-ticker-change.down {
  color: #ef4444;
  background: rgba(239, 68, 68, 0.1);
}

/* ================================================================
   FEATURES / PLATFORM CAPABILITIES SECTION
   ================================================================ */
.lp-section {
  position: relative;
  padding: 100px 24px;
  max-width: 1240px;
  margin: 0 auto;
}

.lp-section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}

.lp-badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  background: var(--purple-badge-bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-pill);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 14px;
}

.lp-section-title {
  font-family: 'Plus Jakarta Sans', 'Outfit', sans-serif;
  font-size: 44px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.22;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}

.lp-section-title .lp-font-calligraphy {
  font-family: 'Instrument Serif', 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.15em;
  letter-spacing: -0.01em;
  background: linear-gradient(135deg, #6c00ff 10%, #9333ea 55%, #c084fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  padding: 0 4px;
}

.lp-section-desc {
  font-size: 16.5px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Feature Cards Grid (3D Half Out / Half Inside Icons) */
.lp-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 52px 24px;
  margin-top: 56px;
}

.lp-feature-card {
  background: #ffffff;
  border: 1.5px solid rgba(108, 0, 255, 0.12);
  border-radius: 24px;
  padding: 56px 28px 30px 28px;
  box-shadow: 0 12px 35px rgba(108, 0, 255, 0.05);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: visible;
}

.lp-feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(108, 0, 255, 0.35);
  box-shadow: 0 20px 48px rgba(108, 0, 255, 0.12);
}

.lp-feature-icon-wrap {
  position: absolute;
  top: -38px;
  left: 28px;
  width: 76px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.lp-feature-3d-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 12px 20px rgba(108, 0, 255, 0.28)) drop-shadow(0 4px 8px rgba(0, 0, 0, 0.12));
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.4s ease;
}

.lp-feature-card:hover .lp-feature-icon-wrap {
  transform: translateY(-6px) scale(1.1) rotate(4deg);
}

.lp-feature-card:hover .lp-feature-3d-icon {
  filter: drop-shadow(0 18px 28px rgba(108, 0, 255, 0.45)) drop-shadow(0 6px 12px rgba(0, 0, 0, 0.18));
}

.lp-feature-title {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.lp-feature-text {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ================================================================
   INTERACTIVE LIVE TRADING SIMULATOR
   ================================================================ */
/* ================================================================
   $10,000 FREE DEMO ACCOUNT SHOWCASE
   ================================================================ */
.lp-demo-card {
  background: linear-gradient(180deg, #ffffff 0%, #faf8ff 100%);
  border-radius: 32px;
  border: 1.5px solid rgba(108, 0, 255, 0.16);
  box-shadow: 0 20px 60px -15px rgba(108, 0, 255, 0.08), 0 0 0 1px rgba(108, 0, 255, 0.04);
  padding: 52px 48px;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 52px;
  align-items: center;
  position: relative;
  overflow: visible;
  transition: all 0.35s ease;
}

.lp-demo-card:hover {
  box-shadow: 0 28px 70px -15px rgba(108, 0, 255, 0.14), 0 0 0 1px rgba(108, 0, 255, 0.1);
  border-color: rgba(108, 0, 255, 0.28);
}

.lp-demo-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.lp-demo-heading {
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.25;
  letter-spacing: -0.3px;
}

.lp-demo-subtext {
  font-size: 15px;
  color: #64748b;
  line-height: 1.65;
}

.lp-demo-perks-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 6px;
}

.lp-demo-perk-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.lp-demo-perk-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(108, 0, 255, 0.08);
  border: 1px solid rgba(108, 0, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
  transition: all 0.3s ease;
}

.lp-demo-card:hover .lp-demo-perk-icon {
  background: rgba(108, 0, 255, 0.12);
  border-color: rgba(108, 0, 255, 0.3);
  transform: scale(1.05);
}

.lp-demo-perk-title {
  font-size: 16px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 4px;
}

.lp-demo-perk-desc {
  font-size: 13.5px;
  color: #64748b;
  line-height: 1.5;
}

.lp-demo-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.lp-demo-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 16px;
  background: linear-gradient(135deg, #6c00ff 0%, #8b5cf6 100%);
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(108, 0, 255, 0.32);
  transition: all 0.3s ease;
}

.lp-demo-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(108, 0, 255, 0.45);
  filter: brightness(1.06);
}

.lp-demo-note {
  font-size: 13px;
  font-weight: 600;
  color: #64748b;
}

/* Right Column: Visual Virtual Terminal Card */
.lp-demo-visual-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.lp-demo-terminal-box {
  width: 100%;
  background: linear-gradient(155deg, #0d0f22 0%, #131631 50%, #19143b 100%);
  border-radius: 26px;
  border: 1.5px solid rgba(168, 85, 247, 0.28);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35), 0 0 40px rgba(108, 0, 255, 0.18), inset 0 1px 1px rgba(255, 255, 255, 0.12);
  padding: 32px 30px;
  color: #ffffff;
  position: relative;
  box-sizing: border-box;
}

.lp-demo-term-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 16px;
  margin-bottom: 22px;
}

.lp-demo-acc-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #6c00ff !important;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(108, 0, 255, 0.35);
}

.lp-demo-term-reload-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: #ffffff !important;
  background: #6c00ff !important;
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 6px 14px;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(108, 0, 255, 0.4);
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}

.lp-demo-term-reload-badge:hover {
  background: #7c3aed !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(108, 0, 255, 0.55);
}

.lp-demo-term-balance-wrap {
  margin-bottom: 20px;
}

.lp-demo-balance-label {
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.9px;
  color: rgba(255, 255, 255, 0.55);
  display: block;
  margin-bottom: 8px;
}

.lp-demo-balance-val {
  font-family: 'Outfit', sans-serif;
  font-size: 40px;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.lp-demo-currency {
  font-size: 30px;
  color: #a855f7;
  font-weight: 700;
}

.lp-demo-cents {
  font-size: 26px;
  color: rgba(255, 255, 255, 0.65);
}

.lp-demo-usd-tag {
  font-size: 12px;
  font-weight: 800;
  color: #ffffff !important;
  background: #10b981 !important;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 3px 9px;
  border-radius: 6px;
  margin-left: 8px;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.35);
  letter-spacing: 0.5px;
}

.lp-demo-gain-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.lp-demo-gain-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #10b981 !important;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff !important;
  font-size: 12px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.lp-demo-gain-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
}

/* Mini Chart Box */
.lp-demo-chart-box {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 14px 16px;
  margin-bottom: 20px;
}

.lp-demo-chart-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.lp-demo-chart-pair {
  font-size: 13.5px;
  font-weight: 800;
  color: #ffffff;
}

.lp-demo-chart-payout {
  font-size: 11.5px;
  font-weight: 800;
  color: #ffffff !important;
  background: #10b981 !important;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 3px 10px;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.lp-demo-chart-svg-wrap {
  height: 68px;
  width: 100%;
}

.lp-demo-term-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}

.lp-demo-stat-pill {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 11px 8px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.lp-demo-stat-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
}

.lp-demo-stat-val {
  font-size: 13px;
  font-weight: 700;
}

.lp-demo-stat-val.text-green { color: #34d399; }
.lp-demo-stat-val.text-purple { color: #c084fc; }
.lp-demo-stat-val.text-blue { color: #60a5fa; }

.lp-demo-term-switch-banner {
  background: rgba(108, 0, 255, 0.18);
  border: 1px dashed rgba(168, 85, 247, 0.38);
  border-radius: 14px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.lp-demo-switch-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--primary);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lp-demo-switch-text {
  font-size: 12.5px;
  font-weight: 600;
  color: #e9d5ff;
  line-height: 1.4;
}

/* ================================================================
   HOW IT WORKS (3 EASY STEPS)
   ================================================================ */
.lp-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
}

.lp-step-card {
  background: #ffffff;
  border: 1px solid rgba(108, 0, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(108, 0, 255, 0.04);
  position: relative;
}

.lp-step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 6px 16px rgba(108, 0, 255, 0.3);
}

.lp-step-title {
  font-family: 'Outfit', sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.lp-step-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ================================================================
   PRE-FOOTER CALL TO ACTION BANNER
   ================================================================ */
.lp-cta-banner {
  background: linear-gradient(135deg, #10111a 0%, #1e1b38 60%, #2f1d5e 100%);
  border-radius: var(--radius-xl);
  padding: 65px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-top: 40px;
  border: 1px solid rgba(108, 0, 255, 0.3);
}

.lp-cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(circle, rgba(108, 0, 255, 0.35) 0%, transparent 70%);
  pointer-events: none;
}

.lp-cta-title {
  font-family: 'Outfit', sans-serif;
  font-size: 44px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.lp-cta-desc {
  font-size: 17px;
  color: #b0b4c8;
  max-width: 600px;
  margin: 0 auto 32px;
  position: relative;
  z-index: 1;
}

.lp-btn-cta-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 40px;
  background: var(--primary);
  border: 1.5px solid var(--primary);
  border-radius: var(--radius-pill);
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 8px 30px rgba(108, 0, 255, 0.45);
  transition: all 0.25s ease;
  position: relative;
  z-index: 1;
}

.lp-btn-cta-white:hover {
  background: var(--primary-hover);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 12px 40px rgba(108, 0, 255, 0.6);
}

/* ================================================================
   FOOTER
   ================================================================ */
.lp-footer {
  background: #ffffff;
  border-top: 1px solid var(--border-light);
  padding: 60px 24px 30px;
  position: relative;
  z-index: 2;
}

.lp-footer-container {
  max-width: 1240px;
  margin: 0 auto;
}

.lp-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.lp-footer-brand img {
  height: 32px;
  width: auto;
  margin-bottom: 16px;
}

.lp-footer-about {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 320px;
}

.lp-footer-col-title {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 18px;
}

.lp-footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lp-footer-links a {
  text-decoration: none;
  font-size: 13.5px;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.lp-footer-links a:hover {
  color: var(--primary);
}

.lp-footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12.5px;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 12px;
}

.lp-footer-disclaimer {
  font-size: 11.5px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-top: 16px;
}

/* ================================================================
   GUEST SUPPORT CHAT WIDGET (PURPLE THEME)
   ================================================================ */
#gx-chat-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--primary);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(108, 0, 255, 0.4);
  z-index: 9999;
  border: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#gx-chat-fab:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 32px rgba(108, 0, 255, 0.55);
}

#gx-chat-badge {
  position: absolute;
  top: -3px;
  right: -3px;
  background: #ef4444;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  border-radius: 10px;
  padding: 2px 6px;
  border: 2px solid #ffffff;
  display: none;
}

#gx-chat-window {
  position: fixed;
  bottom: 94px;
  right: 24px;
  width: 380px;
  height: 520px;
  max-width: calc(100vw - 32px);
  max-height: calc(100vh - 120px);
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid rgba(108, 0, 255, 0.15);
  box-shadow: 0 25px 70px rgba(108, 0, 255, 0.2), 0 4px 16px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  z-index: 9998;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#gx-chat-window.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.gx-header {
  background: var(--primary);
  color: #ffffff;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.gx-title {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 700;
}

.gx-close-btn {
  background: transparent;
  border: none;
  color: #ffffff;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
}

.gx-body {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.gx-input-group {
  margin-bottom: 14px;
}

.gx-input-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.gx-input-group input,
.gx-input-group textarea {
  width: 100%;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  font-family: inherit;
  font-size: 13.5px;
  color: var(--text-primary);
  outline: none;
  transition: border-color 0.2s ease;
}

.gx-input-group input:focus,
.gx-input-group textarea:focus {
  border-color: var(--primary);
}

.gx-start-btn {
  width: 100%;
  padding: 12px;
  background: var(--primary);
  color: #ffffff;
  border: none;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 8px;
  box-shadow: 0 4px 14px rgba(108, 0, 255, 0.3);
  transition: background 0.2s ease;
}

.gx-start-btn:hover {
  background: var(--primary-hover);
}

/* ================================================================
   RESPONSIVE ADJUSTMENTS
   ================================================================ */
@media (max-width: 1024px) {
  .lp-hero-title {
    font-size: 44px;
  }
  .lp-showcase-wrapper {
    max-width: 100%;
  }
}

/* ================================================================
   MOBILE & TABLET OPTIMIZED VIEWPORT (<= 768px)
   - Zero Scroll Pinning: Pure, fluid vertical scroll
   - Curated Optical Depth-of-Field 3D Floating Coins
   - Majestic Rising Glow Dashboard Showcase
   - Single-line compact navbar buttons
   - Perfectly balanced 3-line hero title
   ================================================================ */
@media (max-width: 768px) {
  /* 1. Header & Navigation — Mobile Dynamic Island */
  .lp-nav {
    top: 12px !important;
    left: 12px !important;
    right: 12px !important;
    transform: none !important;
    width: auto !important;
    height: 54px !important;
    padding: 0 12px 0 16px !important;
    border-radius: 20px !important;
  }
  .lp-nav-brand img {
    height: 26px !important;
  }
  .lp-nav-menu,
  .lp-nav-right-link,
  .lp-lang-pill,
  .lp-btn-login {
    display: none !important;
  }
  .lp-nav-right {
    gap: 8px !important;
  }
  .lp-btn-signup {
    padding: 6px 14px !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    white-space: nowrap !important;
    border-radius: var(--radius-pill) !important;
  }
  .lp-hamburger {
    display: block !important;
  }
  .lp-mobile-menu {
    display: flex !important;
  }

  /* 2. Scroll Stage & Layout Flow (Remove Sticky Pinning on Mobile) */
  .lp-scroll-track {
    height: auto !important;
    position: relative !important;
  }
  .lp-sticky-stage {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    height: auto !important;
    min-height: auto !important;
    overflow: visible !important;
    padding: 78px 16px 64px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
  }

  /* 3. Hero Text Content */
  .lp-hero-text-wrap {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto 32px !important;
    padding: 0 6px !important;
    box-sizing: border-box !important;
    z-index: 4 !important;
    text-align: center !important;
  }

  .lp-hero-title {
    font-size: 26px !important;
    line-height: 1.34 !important;
    letter-spacing: -0.02em !important;
    margin: 0 auto 12px !important;
    max-width: 100% !important;
    word-wrap: break-word !important;
    text-align: center !important;
  }

  .lp-desktop-br {
    display: none !important;
  }

  .lp-mobile-br {
    display: block !important;
  }

  .lp-font-calligraphy {
    font-size: 1.1em !important;
    display: inline !important;
    padding: 0 2px !important;
  }

  .lp-hero-sub {
    font-size: 13.5px !important;
    line-height: 1.5 !important;
    margin: 0 auto 20px !important;
    max-width: 310px !important;
    color: var(--text-secondary) !important;
  }

  .lp-hero-cta-row {
    margin: 0 auto !important;
  }

  .button-container {
    width: 148px !important;
    height: 44px !important;
  }

  .button {
    font-size: 13.5px !important;
  }

  /* 4. Symmetrical Blueprint Arcs Background */
  .lp-arcs-svg {
    display: none !important;
  }

  /* 5. Hero 3D Coins: Curated Multi-Layer Optical Depth with Massive BTC near CTA */
  .lp-coins-layer {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    pointer-events: none !important;
    z-index: 2 !important;
    overflow: visible !important;
  }

  /* Coin 1: Bitcoin (BTC 3D) — Lifted UP and MASSIVE (170px) beside Join Zenance CTA */
  #coin-btc {
    display: flex !important;
    top: 170px !important;
    right: -20px !important;
    left: auto !important;
    width: 170px !important;
    height: 170px !important;
    opacity: 1 !important;
    filter: drop-shadow(0 24px 48px rgba(108, 0, 255, 0.5)) drop-shadow(0 6px 20px rgba(245, 158, 11, 0.4)) !important;
    z-index: 6 !important;
    pointer-events: none !important;
  }

  /* Coin 2: Solana (SOL 3D) — Lifted UP beside Left of Join Zenance CTA */
  #coin-sol {
    display: flex !important;
    top: 185px !important;
    left: -18px !important;
    right: auto !important;
    width: 110px !important;
    height: 110px !important;
    opacity: 0.92 !important;
    filter: drop-shadow(0 16px 32px rgba(108, 0, 255, 0.32)) !important;
    z-index: 4 !important;
    pointer-events: none !important;
  }

  /* Coin 3: Ethereum (ETH 3D) — Upper Left Background Soft Depth of Field */
  #coin-eth {
    display: flex !important;
    top: 8px !important;
    left: -16px !important;
    right: auto !important;
    width: 96px !important;
    height: 96px !important;
    opacity: 0.45 !important;
    filter: blur(2px) drop-shadow(0 10px 20px rgba(108, 0, 255, 0.2)) !important;
    z-index: 2 !important;
    pointer-events: none !important;
  }

  /* Coin 4: Tether (USDT 3D) — Upper Right Ambient Blur */
  #coin-usdt {
    display: flex !important;
    top: 8px !important;
    right: -16px !important;
    left: auto !important;
    width: 92px !important;
    height: 92px !important;
    opacity: 0.4 !important;
    filter: blur(2.5px) drop-shadow(0 10px 20px rgba(108, 0, 255, 0.18)) !important;
    z-index: 2 !important;
    pointer-events: none !important;
  }

  /* Coin 5: Litecoin (LTC 3D) — Mid-Lower Left Ambient Accent */
  #coin-ltc {
    display: flex !important;
    top: 360px !important;
    left: -14px !important;
    right: auto !important;
    width: 80px !important;
    height: 80px !important;
    opacity: 0.48 !important;
    filter: blur(1.5px) drop-shadow(0 8px 16px rgba(108, 0, 255, 0.14)) !important;
    z-index: 2 !important;
    pointer-events: none !important;
  }

  /* Coin 6: Ravencoin (RVN 3D) — Mid-Lower Right Ambient Accent */
  #coin-rvn {
    display: flex !important;
    top: 350px !important;
    right: -14px !important;
    left: auto !important;
    width: 82px !important;
    height: 82px !important;
    opacity: 0.42 !important;
    filter: blur(2px) drop-shadow(0 8px 16px rgba(108, 0, 255, 0.14)) !important;
    z-index: 2 !important;
    pointer-events: none !important;
  }

  /* Desktop Ecosystem Banner — Strictly hidden on mobile */
  .lp-desktop-hero-banner {
    display: none !important;
  }

  /* 6. Ultra-Smooth, Sleek Rising Dashboard Showcase */
  .lp-showcase-wrapper {
    position: relative !important;
    left: auto !important;
    bottom: auto !important;
    transform: none !important;
    width: 100% !important;
    max-width: 420px !important;
    margin: 28px auto 0 !important;
    z-index: 5 !important;
    padding: 0 4px !important;
    box-sizing: border-box !important;
    overflow: visible !important;
  }

  /* Soft Upward Ambient Glow Aura behind rising card */
  .lp-showcase-wrapper::before {
    content: "" !important;
    position: absolute !important;
    top: -40px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 90% !important;
    height: 120px !important;
    background: radial-gradient(ellipse 70% 50% at 50% 50%, rgba(108, 0, 255, 0.28), transparent 80%) !important;
    filter: blur(30px) !important;
    pointer-events: none !important;
    z-index: -1 !important;
  }

  /* Smooth, Single-Border Clean Card — Zero rough or stepped edges */
  .lp-showcase-card {
    padding: 16px !important;
    border-radius: 20px !important;
    border: 1px solid rgba(108, 0, 255, 0.14) !important;
    box-shadow: 0 18px 45px rgba(108, 0, 255, 0.12), 0 2px 8px rgba(0, 0, 0, 0.04) !important;
    background: #ffffff !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    width: 100% !important;
  }

  .lp-app-header {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 8px !important;
    padding-bottom: 12px !important;
    margin-bottom: 14px !important;
    border-bottom: 1px solid #f3f0fb !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .lp-app-brand img {
    height: 22px !important;
  }

  .lp-app-center-pills {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
  }

  .lp-pill-referral {
    padding: 4px 8px !important;
    font-size: 11.5px !important;
    background: #f3f0fb !important;
    color: #10111a !important;
  }

  .lp-pill-referral-count {
    padding: 1px 5px !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    color: #6c00ff !important;
  }

  .lp-btn-copy-code {
    padding: 5px 8px !important;
    font-size: 11.5px !important;
    background: #10111a !important;
  }

  .lp-btn-copy-code span {
    display: none !important;
  }

  .lp-app-search,
  .lp-app-icon-btn {
    display: none !important;
  }

  .lp-app-avatar {
    width: 28px !important;
    height: 28px !important;
    font-size: 11px !important;
    background: linear-gradient(135deg, #6c00ff 0%, #8b3dff 100%) !important;
  }

  .lp-app-body {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    width: 100% !important;
  }

  .lp-app-sidebar {
    display: none !important;
  }

  .lp-app-content {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    width: 100% !important;
  }

  .lp-app-greeting {
    font-size: 18px !important;
    font-weight: 800 !important;
    color: #10111a !important;
    margin-bottom: 2px !important;
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
  }

  /* Metrics Grid (2 Side-by-Side Cards Fitting 100% Perfectly) */
  .lp-app-metrics-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
    width: 100% !important;
    margin-bottom: 4px !important;
    box-sizing: border-box !important;
  }

  .lp-metric-card {
    padding: 10px 12px !important;
    border-radius: 12px !important;
    min-width: 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    gap: 4px !important;
  }

  .lp-metric-card.card-blue {
    background: linear-gradient(135deg, #f0f6ff 0%, #e5efff 100%) !important;
    border: 1px solid rgba(59, 130, 246, 0.18) !important;
  }

  .lp-metric-card.card-purple {
    background: linear-gradient(135deg, #f8f4ff 0%, #ede5ff 100%) !important;
    border: 1px solid rgba(108, 0, 255, 0.18) !important;
  }

  .lp-metric-info-label {
    font-size: 11px !important;
    font-weight: 600 !important;
    color: #64748b !important;
    white-space: nowrap !important;
    margin-bottom: 2px !important;
  }

  .lp-metric-info-val {
    font-size: 16px !important;
    font-weight: 800 !important;
    color: #0f172a !important;
    white-space: nowrap !important;
    letter-spacing: -0.01em !important;
  }

  .lp-metric-badge {
    font-size: 10px !important;
    font-weight: 700 !important;
    padding: 2px 6px !important;
    border-radius: 9999px !important;
    background: rgba(16, 185, 129, 0.14) !important;
    color: #10b981 !important;
    box-shadow: none !important;
  }

  /* High-Converting Chart Card — Smooth Seamless Frame */
  .lp-chart-card {
    padding: 14px !important;
    border-radius: 14px !important;
    background: #faf8ff !important;
    border: 1px solid rgba(108, 0, 255, 0.08) !important;
    box-shadow: none !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .lp-chart-header {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    margin-bottom: 8px !important;
  }

  .lp-chart-title {
    font-size: 13px !important;
    font-weight: 700 !important;
    color: #10111a !important;
  }

  .lp-dropdown-pill {
    padding: 4px 10px !important;
    font-size: 11px !important;
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
  }

  .lp-svg-chart-container {
    height: 110px !important;
    width: 100% !important;
  }

  .lp-chart-days-row {
    display: flex !important;
    justify-content: space-between !important;
    padding: 6px 4px 0 !important;
    font-size: 10px !important;
    font-weight: 600 !important;
    color: #94a3b8 !important;
  }

  /* Fixed Live Trade Strip: Stacked full-width rows with left/right alignment, zero leaking */
  .lp-app-live-strip {
    display: flex !important;
    flex-direction: column !important;
    gap: 6px !important;
    margin-top: 10px !important;
    padding-top: 10px !important;
    border-top: 1px solid rgba(108, 0, 255, 0.08) !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .lp-app-live-item {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    background: #ffffff !important;
    border: 1px solid rgba(108, 0, 255, 0.1) !important;
    padding: 6px 10px !important;
    border-radius: 8px !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    box-sizing: border-box !important;
  }

  .lp-app-live-item > div {
    display: flex !important;
    align-items: center !important;
    gap: 5px !important;
  }

  /* 7. Mobile Menu Bar Actions (Polished Log In and Sign Up buttons) */
  .lp-mobile-menu-actions {
    display: flex !important;
    gap: 10px !important;
    margin-top: 16px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .lp-menu-btn-login {
    flex: 1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 11px 16px !important;
    background: #f8fafc !important;
    border: 1.5px solid #e2e8f0 !important;
    border-radius: var(--radius-pill) !important;
    color: #0f172a !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
  }

  .lp-menu-btn-login:hover {
    background: #f1f5f9 !important;
    border-color: #cbd5e1 !important;
  }

  .lp-menu-btn-signup {
    flex: 1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 11px 16px !important;
    background: linear-gradient(135deg, #7c14ff 0%, #6c00ff 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    border-radius: var(--radius-pill) !important;
    color: #ffffff !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    box-shadow: 0 4px 14px rgba(108, 0, 255, 0.35) !important;
    transition: all 0.2s ease !important;
  }

  .lp-menu-btn-signup:hover {
    filter: brightness(1.08) !important;
    transform: translateY(-1px) !important;
  }

  /* 8. Other Landing Page Sections — Strict 100% Width Containment (Zero Empty Right Space) */
  html, body.lp-body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
    position: relative !important;
  }

  .lp-section {
    padding: 48px 16px !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
    box-sizing: border-box !important;
  }

  .lp-section-title {
    font-size: 24px !important;
    line-height: 1.25 !important;
  }

  .lp-section-desc {
    font-size: 13.5px !important;
    margin-bottom: 28px !important;
  }

  .lp-features-grid {
    grid-template-columns: 1fr !important;
    gap: 46px !important;
    margin-top: 46px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .lp-feature-card {
    padding: 48px 22px 24px 22px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: visible !important;
  }

  .lp-feature-icon-wrap {
    top: -34px !important;
    left: 20px !important;
    width: 68px !important;
    height: 68px !important;
  }

  .lp-demo-card {
    grid-template-columns: 1fr !important;
    padding: 32px 20px !important;
    gap: 36px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .lp-demo-heading {
    font-size: 22px !important;
  }

  .lp-demo-balance-val {
    font-size: 30px !important;
  }

  .lp-demo-term-stats {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }

  .lp-steps-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .lp-cta-banner {
    padding: 36px 18px !important;
    border-radius: var(--radius-lg) !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .lp-cta-title {
    font-size: 24px !important;
  }

  .lp-footer-grid {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Floating Support Chat FAB — Fixed neatly on mobile view without stretching page */
  #gx-chat-fab {
    position: fixed !important;
    bottom: 20px !important;
    right: 16px !important;
    width: 52px !important;
    height: 52px !important;
    z-index: 9999 !important;
  }

  #gx-chat-window {
    position: fixed !important;
    bottom: 82px !important;
    right: 14px !important;
    left: 14px !important;
    width: auto !important;
    max-width: calc(100vw - 28px) !important;
    z-index: 9998 !important;
  }
}
