/* ============================================================
   Landing Page TOP — HRIS BPR Restu 2025
   Variables · Reset · Nav · Hero · Stats · Decorations
   ============================================================ */

/* --- Design Tokens (Light Mode) --- */
:root {
  /* Brand primary — BPR Restu corporate blue (aligned with bprrestu.com) */
  --lp-primary-rgb: 11, 78, 162;
  --lp-indigo: #0b4ea2;
  --lp-indigo-dark: #083a7a;
  --lp-blue: #1565c0;
  --lp-cyan: #2196f3;
  --lp-teal: #0d9488;
  --lp-emerald: #10b981;
  --lp-orange: #f59e0b;
  --lp-rose: #f43f5e;
  --lp-purple: #8b5cf6;
  --lp-navy: #0f172a;
  --lp-slate: #1e293b;
  --lp-surface: rgba(255, 255, 255, 0.86);
  --lp-glass: rgba(255, 255, 255, 0.6);
  --lp-bg: #eef4fb;
  --lp-bg-warm: #fefce8;
  --lp-text: #1e293b;
  --lp-muted: #5b6b7f;
  --lp-border: rgba(var(--lp-primary-rgb), 0.12);
  --lp-border-light: rgba(226, 232, 240, 0.8);
  --lp-shadow-sm: 0 1px 3px rgba(0,0,0,.04), 0 1px 2px rgba(0,0,0,.06);
  --lp-shadow-md: 0 4px 20px rgba(0,0,0,.06), 0 2px 8px rgba(0,0,0,.04);
  --lp-shadow-lg: 0 12px 40px rgba(0,0,0,.08), 0 4px 16px rgba(0,0,0,.04);
  --lp-shadow-xl: 0 20px 60px rgba(0,0,0,.1), 0 8px 24px rgba(0,0,0,.06);
  --lp-radius-sm: 10px;
  --lp-radius-md: 16px;
  --lp-radius-lg: 24px;
  --lp-radius-xl: 32px;
  --lp-gradient-hero: linear-gradient(135deg, #0b4ea2 0%, #1565c0 50%, #2196f3 100%);
  --lp-gradient-primary: linear-gradient(135deg, var(--lp-indigo), var(--lp-blue), var(--lp-cyan));
  --lp-gradient-warm: linear-gradient(135deg, var(--lp-orange), var(--lp-rose));
  --lp-gradient-cool: linear-gradient(135deg, var(--lp-teal), var(--lp-emerald));
  --lp-gradient-dark: linear-gradient(160deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  
  /* Noise texture */
  --lp-noise-opacity: 0.015;
  
  /* Spotlight effect */
  --lp-spotlight-x: 50%;
  --lp-spotlight-y: 50%;
  --lp-spotlight-size: 600px;
}

/* --- Dark Mode Design Tokens --- */
[data-theme="dark"] {
  --lp-surface: rgba(30, 41, 59, 0.86);
  --lp-glass: rgba(15, 23, 42, 0.6);
  --lp-bg: #0f172a;
  --lp-bg-warm: #1e293b;
  --lp-text: #e2e8f0;
  --lp-muted: #94a3b8;
  --lp-border: rgba(255, 255, 255, 0.1);
  --lp-border-light: rgba(51, 65, 85, 0.8);
  --lp-shadow-sm: 0 1px 3px rgba(0,0,0,.3), 0 1px 2px rgba(0,0,0,.2);
  --lp-shadow-md: 0 4px 20px rgba(0,0,0,.35), 0 2px 8px rgba(0,0,0,.25);
  --lp-shadow-lg: 0 12px 40px rgba(0,0,0,.4), 0 4px 16px rgba(0,0,0,.3);
  --lp-shadow-xl: 0 20px 60px rgba(0,0,0,.5), 0 8px 24px rgba(0,0,0,.35);
  --lp-noise-opacity: 0.025;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--lp-text);
  background: var(--lp-bg);
  line-height: 1.6;
  overflow-x: hidden;
}

/* --- Skip Link (A11y) --- */
.lp-skip-link {
  position: absolute; top: -100%; left: 16px; z-index: 9999;
  padding: 12px 24px; background: var(--lp-indigo); color: #fff;
  border-radius: 0 0 var(--lp-radius-sm) var(--lp-radius-sm);
  font-weight: 600; text-decoration: none; transition: top .25s;
}
.lp-skip-link:focus { top: 0; }

/* --- Container --- */
.lp-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* --- Noise Texture Overlay (applied globally) --- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: var(--lp-noise-opacity);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
  animation: noise 2s steps(10) infinite;
}

/* --- Grid Pattern Background (for sections) --- */
.lp-grid-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
  background-image:
    linear-gradient(rgba(var(--lp-primary-rgb), 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--lp-primary-rgb), 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

/* --- Gradient Text Animation --- */
.lp-gradient-text {
  background: var(--lp-gradient-primary);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-text-flow 6s ease infinite;
}

/* --- Spotlight Effect Container --- */
.lp-spotlight {
  --lp-spotlight-x: 50%;
  --lp-spotlight-y: 50%;
  --lp-spotlight-size: 600px;
  position: relative;
}
.lp-spotlight::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: radial-gradient(
    circle var(--lp-spotlight-size) at var(--lp-spotlight-x) var(--lp-spotlight-y),
    rgba(var(--lp-primary-rgb), 0.08) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}
.lp-spotlight:hover::after,
.lp-spotlight:focus-visible::after {
  opacity: 1;
}

/* --- Keyframes --- */
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-18px) rotate(1deg); }
}
@keyframes float-reverse {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(12px) rotate(-1deg); }
}
@keyframes blob-morph {
  0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
  50% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
}
@keyframes pulse-ring {
  0% { transform: scale(0.8); opacity: 0.6; }
  100% { transform: scale(1.4); opacity: 0; }
}
@keyframes gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* --- Enhanced Keyframes --- */
@keyframes gradient-text-flow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes border-glow {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}
@keyframes scale-in-bounce {
  0% { transform: scale(0); }
  50% { transform: scale(1.15); }
  100% { transform: scale(1); }
}
@keyframes icon-bounce {
  0%, 100% { transform: translateY(0) scale(1); }
  30% { transform: translateY(-4px) scale(1.05); }
  60% { transform: translateY(2px) scale(0.98); }
}
@keyframes noise {
  0%, 100% { background-position: 0 0; }
  10% { background-position: -5% -10%; }
  20% { background-position: -15% 5%; }
  30% { background-position: 7% -25%; }
  40% { background-position: 20% 25%; }
  50% { background-position: -25% 10%; }
  60% { background-position: 15% 5%; }
  70% { background-position: 0% 15%; }
  80% { background-position: 25% 35%; }
  90% { background-position: -10% 10%; }
}
@keyframes border-rotate {
  0% { rotate: 0deg; }
  100% { rotate: 360deg; }
}

/* --- Scroll Animations --- */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Staggered Children Entrance --- */
.lp-stagger-children > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.animate-on-scroll.visible .lp-stagger-children > * {
  opacity: 1;
  transform: translateY(0);
}
.animate-on-scroll.visible .lp-stagger-children > *:nth-child(1) { transition-delay: 0.05s; }
.animate-on-scroll.visible .lp-stagger-children > *:nth-child(2) { transition-delay: 0.12s; }
.animate-on-scroll.visible .lp-stagger-children > *:nth-child(3) { transition-delay: 0.19s; }
.animate-on-scroll.visible .lp-stagger-children > *:nth-child(4) { transition-delay: 0.26s; }
.animate-on-scroll.visible .lp-stagger-children > *:nth-child(5) { transition-delay: 0.33s; }
.animate-on-scroll.visible .lp-stagger-children > *:nth-child(6) { transition-delay: 0.40s; }
.animate-on-scroll.visible .lp-stagger-children > *:nth-child(7) { transition-delay: 0.47s; }
.animate-on-scroll.visible .lp-stagger-children > *:nth-child(8) { transition-delay: 0.54s; }

/* --- Focus Visible (A11y keyboard navigation) --- */
.lp-nav-link:focus-visible,
.lp-btn-login:focus-visible,
.lp-btn-primary:focus-visible,
.lp-btn-outline:focus-visible,
.lp-link-card:focus-visible,
.lp-footer-links a:focus-visible,
.lp-nav-brand:focus-visible {
  outline: 3px solid var(--lp-cyan);
  outline-offset: 3px;
  border-radius: var(--lp-radius-sm);
}

/* --- Reduced Motion (A11y) --- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .animate-on-scroll {
    opacity: 1 !important;
    transform: none !important;
  }
  .lp-stagger-children > * {
    opacity: 1 !important;
    transform: none !important;
    transition-delay: 0s !important;
  }
  .lp-hero-dot,
  .lp-hero::before,
  .lp-hero::after {
    animation: none !important;
  }
}

/* ===========================================================
   NAV — Glassmorphic fixed navbar
   =========================================================== */
.lp-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--lp-border);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.lp-nav.scrolled {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
}
.lp-nav-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 14px 0; max-width: 1200px; margin: 0 auto; padding-left: 24px; padding-right: 24px;
}
.lp-nav-brand {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; color: var(--lp-navy); font-weight: 800; font-size: 1.15rem;
  letter-spacing: -0.3px;
}
[data-theme="dark"] .lp-nav-brand {
  color: #e2e8f0;
}
.lp-nav-brand img { height: 38px; width: auto; border-radius: 10px; }
.lp-nav-links { display: flex; align-items: center; gap: 4px; }
.lp-nav-link {
  padding: 9px 18px; border-radius: 10px; text-decoration: none;
  color: var(--lp-muted); font-weight: 500; font-size: 0.9rem;
  transition: all 0.25s; position: relative;
}
.lp-nav-link:hover {
  color: var(--lp-indigo); background: rgba(var(--lp-primary-rgb), 0.08);
}
.lp-nav-link.active {
  color: var(--lp-indigo); background: rgba(var(--lp-primary-rgb), 0.08);
}
.lp-btn-login {
  padding: 9px 24px; border-radius: 10px;
  background: var(--lp-gradient-primary); background-size: 200% 200%;
  color: #fff; text-decoration: none; font-weight: 600; font-size: 0.9rem;
  transition: all 0.3s; border: none; cursor: pointer;
  box-shadow: 0 2px 12px rgba(var(--lp-primary-rgb), 0.3);
}
.lp-btn-login:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(var(--lp-primary-rgb), 0.4);
  animation: gradient-shift 3s ease infinite;
}

/* Hamburger */
.lp-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px; z-index: 1001;
}
.lp-hamburger span {
  display: block; width: 24px; height: 2.5px;
  background: var(--lp-navy); border-radius: 2px; transition: all 0.35s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}
.lp-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.lp-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.lp-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Dark Mode Toggle */
.lp-theme-toggle {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--lp-glass); border: 1px solid var(--lp-border);
  cursor: pointer; color: var(--lp-text); font-size: 1.2rem;
  transition: all 0.3s ease;
}
.lp-theme-toggle:hover {
  background: rgba(var(--lp-primary-rgb), 0.1);
  transform: rotate(15deg) scale(1.05);
}
.lp-theme-toggle .theme-icon-sun,
.lp-theme-toggle .theme-icon-moon {
  display: none;
}
[data-theme="dark"] .lp-theme-toggle .theme-icon-sun { display: block; }
[data-theme="light"] .lp-theme-toggle .theme-icon-moon { display: block; }
/* Default: light mode, show moon */
:root .lp-theme-toggle .theme-icon-moon { display: block; }
:root .lp-theme-toggle .theme-icon-sun { display: none; }

/* Mobile Menu */
.lp-mobile-menu {
  display: none; position: fixed; inset: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(24px);
  z-index: 999; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  opacity: 0; transition: opacity 0.35s;
}
[data-theme="dark"] .lp-mobile-menu {
  background: rgba(15, 23, 42, 0.95);
}
.lp-mobile-menu.open { display: flex; opacity: 1; }
.lp-mobile-menu .lp-nav-link { font-size: 1.25rem; padding: 14px 32px; }
.lp-mobile-menu .lp-btn-login { font-size: 1.1rem; padding: 14px 36px; margin-top: 12px; }

/* ===========================================================
    HERO — Mesh gradient bg + glassmorphic card + decorative blobs
    =========================================================== */
.lp-hero {
  padding: 140px 0 100px;
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, #eef4fb 0%, #dbe9fb 30%, #eef4fb 60%, #e8f1fc 100%);
}
[data-theme="dark"] .lp-hero {
  background: linear-gradient(160deg, #0f172a 0%, #1e293b 30%, #0f172a 60%, #0c1322 100%);
}
/* Decorative blob 1 */
.lp-hero::before {
  content: ''; position: absolute;
  width: 600px; height: 600px;
  top: -180px; right: -120px;
  background: radial-gradient(circle, rgba(var(--lp-primary-rgb), 0.15) 0%, rgba(var(--lp-primary-rgb), 0.08) 50%, transparent 70%);
  animation: blob-morph 20s ease-in-out infinite;
  z-index: 0;
}
/* Decorative blob 2 */
.lp-hero::after {
  content: ''; position: absolute;
  width: 500px; height: 500px;
  bottom: -100px; left: -150px;
  background: radial-gradient(circle, rgba(33, 150, 243, 0.12) 0%, rgba(var(--lp-primary-rgb), 0.06) 50%, transparent 70%);
  animation: blob-morph 18s ease-in-out infinite reverse;
  z-index: 0;
}
.lp-hero > .lp-container { position: relative; z-index: 1; }

.lp-hero-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.lp-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 18px;
  background: rgba(var(--lp-primary-rgb), 0.1);
  border: 1px solid rgba(var(--lp-primary-rgb), 0.15);
  color: var(--lp-indigo); border-radius: 100px;
  font-size: 0.82rem; font-weight: 600; margin-bottom: 20px;
  backdrop-filter: blur(8px);
}
.lp-hero-badge i { font-size: 0.9rem; }
.lp-section-title {
  color: var(--lp-navy);
}
[data-theme="dark"] .lp-section-title {
  color: #e2e8f0 !important;
}
.lp-section-desc {
  color: var(--lp-muted);
}
[data-theme="dark"] .lp-section-desc {
  color: #94a3b8;
}
.lp-section-badge {
  color: var(--lp-indigo);
  background: rgba(var(--lp-primary-rgb), 0.08);
  border: 1px solid rgba(var(--lp-primary-rgb), 0.14);
}
[data-theme="dark"] .lp-section-badge {
  color: #818cf8;
  background: rgba(129, 140, 248, 0.15);
  border-color: rgba(129, 140, 248, 0.25);
}
.lp-hero p {
  font-size: 1.15rem; color: var(--lp-muted); margin: 0 0 36px;
  max-width: 480px; line-height: 1.75;
}
[data-theme="dark"] .lp-hero p {
  color: #cbd5e1;
}
.lp-hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* --- Enhanced Heading with gradient animation --- */
.lp-hero h1 {
  font-size: 3.2rem; font-weight: 800; line-height: 1.12;
  color: var(--lp-navy); margin: 0 0 20px;
  letter-spacing: -1px;
}
[data-theme="dark"] .lp-hero h1 {
  color: #e2e8f0;
}
.lp-hero h1 span {
  background: linear-gradient(135deg, var(--lp-indigo), var(--lp-cyan), var(--lp-teal), var(--lp-blue), var(--lp-indigo));
  background-size: 300% 300%;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-text-flow 6s ease infinite;
}

/* Primary CTA Button */
.lp-btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 32px;
  background: var(--lp-gradient-primary); background-size: 200% 200%;
  color: #fff; border-radius: 14px; text-decoration: none;
  font-weight: 600; font-size: 1rem; transition: all 0.35s;
  border: none; cursor: pointer;
  box-shadow: 0 4px 20px rgba(var(--lp-primary-rgb), 0.35);
}
.lp-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(var(--lp-primary-rgb), 0.45);
  background-position: right center;
}
.lp-btn-primary i { font-size: 1.15rem; }

/* Outline CTA Button */
.lp-btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; background: transparent;
  color: var(--lp-indigo); border: 2px solid rgba(var(--lp-primary-rgb), 0.3);
  border-radius: 14px; text-decoration: none;
  font-weight: 600; font-size: 1rem; transition: all 0.35s; cursor: pointer;
}
.lp-btn-outline:hover {
  background: var(--lp-indigo); color: #fff;
  border-color: var(--lp-indigo); transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(var(--lp-primary-rgb), 0.3);
}

/* --- Hero Trust Strip --- */
.lp-hero-trust {
  display: flex; align-items: center; flex-wrap: wrap;
  gap: 14px; margin-top: 28px;
}
.lp-hero-trust-item {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.9rem; color: var(--lp-muted);
}
[data-theme="dark"] .lp-hero-trust-item {
  color: #cbd5e1;
}
.lp-hero-trust-item i { font-size: 1.15rem; color: var(--lp-indigo); }
[data-theme="dark"] .lp-hero-trust-item i { color: #818cf8; }
.lp-hero-trust-item strong { color: var(--lp-navy); font-weight: 700; }
[data-theme="dark"] .lp-hero-trust-item strong { color: #e2e8f0; }
.lp-hero-trust-sep {
  width: 1px; height: 18px;
  background: var(--lp-border);
}

/* ===========================================================
   HERO MOCKUP — Browser-style dashboard preview
   =========================================================== */
.lp-mockup {
  width: 100%; max-width: 460px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--lp-radius-lg);
  box-shadow: var(--lp-shadow-xl), inset 0 1px 0 rgba(255,255,255,0.6);
  overflow: hidden;
  animation: float 7s ease-in-out infinite;
}
[data-theme="dark"] .lp-mockup {
  background: rgba(30, 41, 59, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: var(--lp-shadow-xl), inset 0 1px 0 rgba(255,255,255,0.05);
}
.lp-mockup-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 16px;
  background: linear-gradient(180deg, #f8fafc, #eef2f7);
  border-bottom: 1px solid var(--lp-border);
}
[data-theme="dark"] .lp-mockup-bar {
  background: linear-gradient(180deg, #1e293b, #0f172a);
}
.lp-mockup-dot {
  width: 11px; height: 11px; border-radius: 50%;
  background: #cbd5e1;
}
.lp-mockup-dot:nth-child(1) { background: #f87171; }
.lp-mockup-dot:nth-child(2) { background: #fbbf24; }
.lp-mockup-dot:nth-child(3) { background: #34d399; }
.lp-mockup-url {
  margin-left: 10px; flex: 1;
  background: #fff; border: 1px solid var(--lp-border);
  border-radius: 8px; padding: 5px 12px;
  font-size: 0.74rem; color: var(--lp-muted);
  text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
[data-theme="dark"] .lp-mockup-url {
  background: #1e293b;
  border-color: rgba(255, 255, 255, 0.1);
  color: #94a3b8;
}
.lp-mockup-body { padding: 22px; }
.lp-mockup-head {
  display: flex; align-items: center; gap: 12px; margin-bottom: 20px;
}
.lp-mockup-avatar {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--lp-gradient-primary);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 800; font-size: 0.95rem;
  box-shadow: 0 4px 14px rgba(var(--lp-primary-rgb), 0.3);
}
.lp-mockup-title { font-size: 0.98rem; font-weight: 700; color: var(--lp-navy); }
[data-theme="dark"] .lp-mockup-title { color: #e2e8f0; }
.lp-mockup-sub { font-size: 0.78rem; color: var(--lp-muted); margin-top: 2px; }
.lp-mockup-live {
  margin-left: auto; display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.72rem; font-weight: 600; color: #059669;
  background: rgba(5, 150, 105, 0.1); padding: 4px 10px; border-radius: 100px;
}
.lp-mockup-live i { font-size: 0.5rem; }
.lp-mockup-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 18px; }
.lp-mockup-metric {
  background: linear-gradient(135deg, rgba(var(--lp-primary-rgb), 0.07), rgba(33, 150, 243, 0.04));
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-md); padding: 16px; text-align: center;
}
.lp-mockup-metric-value {
  font-size: 1.7rem; font-weight: 800;
  background: var(--lp-gradient-primary);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.lp-mockup-metric-label { font-size: 0.74rem; color: var(--lp-muted); margin-top: 2px; font-weight: 500; }
[data-theme="dark"] .lp-mockup-metric-label { color: #94a3b8; }
.lp-mockup-chart {
  display: flex; align-items: flex-end; gap: 8px;
  height: 90px; padding: 12px 4px 0;
  border-top: 1px solid var(--lp-border);
}
.lp-mockup-chart span {
  flex: 1; border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, rgba(var(--lp-primary-rgb), 0.6), rgba(var(--lp-primary-rgb), 0.15));
}
.lp-mockup-chart span:nth-child(4) { background: var(--lp-gradient-primary); }
.lp-mockup-rows { margin-top: 14px; display: flex; flex-direction: column; gap: 10px; }
.lp-mockup-row { display: flex; align-items: center; gap: 10px; }
.lp-mockup-row:first-child .lp-mockup-pill { background: rgba(var(--lp-primary-rgb), 0.15); }
.lp-mockup-row:last-child .lp-mockup-pill { background: rgba(16, 185, 129, 0.15); }
.lp-mockup-pill { width: 28px; height: 28px; border-radius: 8px; background: rgba(var(--lp-primary-rgb), 0.1); flex-shrink: 0; }
[data-theme="dark"] .lp-mockup-pill { background: rgba(129, 140, 248, 0.15); }
.lp-mockup-line { height: 8px; border-radius: 100px; background: #e2e8f0; flex: 1; }
[data-theme="dark"] .lp-mockup-line { background: #334155; }
.lp-mockup-line.short { max-width: 55%; }

/* ===========================================================
   HERO VISUAL — Decorative elements around mockup
   =========================================================== */
.lp-hero-visual { position: relative; display: flex; justify-content: center; }

/* Floating decorative dots around hero */
.lp-hero-dot {
  position: absolute; border-radius: 50%;
  background: var(--lp-gradient-primary); opacity: 0.4;
  animation: float-reverse 5s ease-in-out infinite;
}
[data-theme="dark"] .lp-hero-dot {
  opacity: 0.6;
}
.lp-hero-dot:nth-child(1) { width: 12px; height: 12px; top: 10%; right: -20px; animation-delay: 0s; }
.lp-hero-dot:nth-child(2) { width: 8px; height: 8px; bottom: 20%; left: -15px; animation-delay: 1.5s; }
.lp-hero-dot:nth-child(3) { width: 16px; height: 16px; top: 50%; right: -30px; animation-delay: 3s; opacity: 0.25; }

/* ===========================================================
   STATS BAR — Dark gradient with glow numbers
   =========================================================== */
.lp-stats {
  padding: 72px 0;
  background: var(--lp-gradient-dark);
  position: relative; overflow: hidden;
}
[data-theme="dark"] .lp-stats {
  background: linear-gradient(160deg, #0c1322 0%, #162032 50%, #0c1322 100%);
}
/* Decorative gradient orbs */
.lp-stats::before {
  content: ''; position: absolute;
  width: 400px; height: 400px; top: -200px; right: -100px;
  background: radial-gradient(circle, rgba(var(--lp-primary-rgb), 0.18) 0%, transparent 60%);
  border-radius: 50%;
}
.lp-stats::after {
  content: ''; position: absolute;
  width: 300px; height: 300px; bottom: -150px; left: -80px;
  background: radial-gradient(circle, rgba(33, 150, 243, 0.12) 0%, transparent 60%);
  border-radius: 50%;
}
.lp-stats > .lp-container { position: relative; z-index: 1; }
.lp-stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.lp-stat {
  padding: 28px; text-align: center; position: relative;
  transition: transform 0.3s ease;
}
.lp-stat:hover {
  transform: translateY(-4px);
}
.lp-stat::after {
  content: ''; position: absolute; right: 0; top: 20%; height: 60%;
  width: 1px; background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.12), transparent);
}
.lp-stat:last-child::after { display: none; }
.lp-stat-number {
  font-size: 2.8rem; font-weight: 800; margin-bottom: 6px;
  background: linear-gradient(135deg, #818cf8, #38bdf8, #34d399);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  letter-spacing: -1px;
  font-variant-numeric: tabular-nums;
  transition: transform 0.3s ease;
}
.lp-stat:hover .lp-stat-number {
  transform: scale(1.05);
}
/* Text-only stat (no count-up, e.g. "24/7") */
.lp-stat-number.lp-stat-text {
  font-variant-numeric: normal;
}
.lp-stat-label { font-size: 0.92rem; color: rgba(255, 255, 255, 0.6); font-weight: 500; letter-spacing: 0.3px; }

/* ===========================================================
    END OF TOP CSS
    =========================================================== */
