/* ═══════════════════════════════════════════════════════════════════════
   HAUS·VERWALTUNG — Landing Page
   Premium Dark Glassmorphism · Apple / Linear / Vercel Quality
   ═══════════════════════════════════════════════════════════════════════ */

/* ── Design Tokens ───────────────────────────────────────────────────── */
:root {
  --lp-bg:      #06080f;
  --lp-bg2:     #0a0e1a;
  --lp-glass:   rgba(255,255,255,.04);
  --lp-glass2:  rgba(255,255,255,.07);
  --lp-border:  rgba(255,255,255,.07);
  --lp-border2: rgba(255,255,255,.12);
  --lp-text:    rgba(255,255,255,.92);
  --lp-muted:   rgba(255,255,255,.55);
  --lp-dim:     rgba(255,255,255,.30);
  --lp-accent:  #6C7CFF;
  --lp-accent2: #8A5CFF;
  --lp-green:   #34d399;
  --lp-red:     #ff5c7a;
  --lp-yellow:  #fbbf24;
  --lp-radius:  16px;
  --lp-ease:    cubic-bezier(.16,1,.3,1);
}


/* ═══════════════════════════════════════════════════════════════════════
   BASE / BODY
   ═══════════════════════════════════════════════════════════════════════ */

.landing-body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  background: var(--lp-bg);
  color: var(--lp-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  /* Override login_style.css body defaults */
  display: block;
  height: auto;
  overflow-y: auto;
  justify-content: initial;
  align-items: initial;
  background-color: var(--lp-bg);
}

/* Film grain overlay */
.landing-body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9;
  opacity: .028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px;
}

/* Hide background blobs from login_style */
.landing-body .background-blobs { display: none !important; }

/* Custom scrollbar */
.landing-body::-webkit-scrollbar { width: 6px; }
.landing-body::-webkit-scrollbar-track { background: transparent; }
.landing-body::-webkit-scrollbar-thumb { background: rgba(108,124,255,.25); border-radius: 3px; }
.landing-body::-webkit-scrollbar-thumb:hover { background: rgba(108,124,255,.45); }

/* Login overlay z-index */
.landing-body .login-backdrop { z-index: 999999 !important; }


/* ═══════════════════════════════════════════════════════════════════════
   LAYOUT
   ═══════════════════════════════════════════════════════════════════════ */

.lp-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  box-sizing: border-box;
}
.lp-container--sm { max-width: 800px; }


/* ═══════════════════════════════════════════════════════════════════════
   SCROLL PROGRESS BAR
   ═══════════════════════════════════════════════════════════════════════ */

.lp-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--lp-accent), var(--lp-accent2), var(--lp-green));
  z-index: 100000;
  transform-origin: left;
  transition: none;
  border-radius: 0 1px 1px 0;
  box-shadow: 0 0 12px rgba(108,124,255,.5);
}


/* ═══════════════════════════════════════════════════════════════════════
   CURSOR SPOTLIGHT
   ═══════════════════════════════════════════════════════════════════════ */

.lp-spotlight {
  position: fixed;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(circle, rgba(108,124,255,.06) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity .4s ease;
}
.lp-spotlight.is-visible { opacity: 1; }


/* ═══════════════════════════════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════════════════════════════ */

.lp-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  padding: 0 24px;
  transition: background .35s ease, border-color .35s ease, box-shadow .35s ease,
              backdrop-filter .35s ease;
  border-bottom: 1px solid transparent;
}

.lp-nav.is-scrolled {
  background: rgba(6,8,15,.78);
  border-bottom-color: var(--lp-border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 40px rgba(0,0,0,.35);
}

.lp-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.lp-nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--lp-text);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .02em;
  flex-shrink: 0;
}
.lp-nav-brand img {
  height: 30px;
  width: auto;
}
.lp-nav-brand span {
  white-space: nowrap;
}

.lp-nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.lp-nav-links a {
  text-decoration: none;
  color: var(--lp-muted);
  font-size: 13.5px;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 10px;
  transition: color .2s, background .2s;
}
.lp-nav-links a:hover {
  color: var(--lp-text);
  background: rgba(255,255,255,.05);
}
.lp-nav-links a.is-active {
  color: var(--lp-text);
  background: rgba(108,124,255,.1);
}

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

.lp-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, var(--lp-accent), var(--lp-accent2));
  border: none;
  cursor: pointer;
  transition: transform .2s var(--lp-ease), box-shadow .2s;
  box-shadow: 0 2px 16px rgba(108,124,255,.25);
}
.lp-nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 24px rgba(108,124,255,.35);
}

/* Hamburger */
.lp-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  transition: background .2s;
}
.lp-hamburger:hover { background: rgba(255,255,255,.06); }
.lp-hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--lp-text);
  border-radius: 2px;
  transition: transform .3s var(--lp-ease), opacity .2s;
}
.lp-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.lp-hamburger.is-open span:nth-child(2) { opacity: 0; }
.lp-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ═══════════════════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════════════════ */

.lp-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 60px;
  overflow: hidden;
  box-sizing: border-box;
}

/* Breathing radial glow */
.lp-hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(700px 500px at 30% 35%, rgba(108,124,255,.2), transparent 60%),
    radial-gradient(600px 400px at 70% 60%, rgba(138,92,255,.15), transparent 55%);
  animation: lp-hero-breathe 8s ease-in-out infinite;
}

/* Dot grid pattern */
.lp-hero-grid-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: .35;
  background-image: radial-gradient(circle, rgba(255,255,255,.12) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 45%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 45%, black 20%, transparent 70%);
}

.lp-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

/* Badge pill */
.lp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--lp-text);
  background: var(--lp-glass2);
  border: 1px solid var(--lp-border2);
  margin-bottom: 28px;
}
.lp-hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lp-green);
  animation: lp-badge-pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

/* Hero title */
.lp-hero-title {
  font-size: clamp(44px, 7vw, 84px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -.035em;
  margin: 0 0 20px;
  color: var(--lp-text);
}

.lp-gradient-text {
  background: linear-gradient(135deg, var(--lp-accent), var(--lp-accent2), #c084fc, var(--lp-accent));
  background-size: 300% 300%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: lp-gradient-shift 6s ease infinite;
}

.lp-hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--lp-muted);
  line-height: 1.6;
  max-width: 580px;
  margin: 0 auto 36px;
  font-weight: 400;
}

/* Hero action buttons */
.lp-hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

/* Stats row */
.lp-hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 12px;
}
.lp-hero-stat {
  text-align: center;
  padding: 0 28px;
}
.lp-hero-stat-num {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -.02em;
  background: linear-gradient(135deg, var(--lp-accent), var(--lp-accent2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.lp-hero-stat-label {
  font-size: 12px;
  color: var(--lp-muted);
  margin-top: 2px;
}
.lp-hero-stat-sep {
  width: 1px;
  height: 32px;
  background: var(--lp-border2);
  flex-shrink: 0;
}


/* ═══════════════════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════════════════ */

.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform .25s var(--lp-ease), box-shadow .25s, background .2s, border-color .2s;
  white-space: nowrap;
  color: var(--lp-text);
}
.lp-btn:hover { transform: translateY(-2px); }
.lp-btn:active { transform: translateY(0); }

.lp-btn--primary {
  background: linear-gradient(135deg, var(--lp-accent), var(--lp-accent2));
  color: #fff;
  box-shadow: 0 4px 24px rgba(108,124,255,.3), 0 1px 3px rgba(0,0,0,.2);
}
.lp-btn--primary:hover {
  box-shadow: 0 8px 40px rgba(108,124,255,.4), 0 2px 6px rgba(0,0,0,.25);
}

.lp-btn--ghost {
  background: var(--lp-glass2);
  border: 1px solid var(--lp-border2);
  color: var(--lp-text);
}
.lp-btn--ghost:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.2);
}

.lp-btn--lg { padding: 14px 32px; font-size: 15px; border-radius: 14px; }

.lp-btn--full { width: 100%; }

.lp-btn--outline {
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.88);
}
.lp-btn--outline:hover {
  border-color: rgba(108,124,255,.40);
  background: rgba(108,124,255,.10);
  color: #fff;
}


/* ═══════════════════════════════════════════════════════════════════════
   APP MOCKUP / PREVIEW
   ═══════════════════════════════════════════════════════════════════════ */

.lp-hero-preview {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 960px;
  margin: 56px auto 0;
  perspective: 1800px;
}

.lp-preview-window {
  border-radius: 18px;
  background: rgba(12,15,30,.85);
  border: 1px solid var(--lp-border2);
  box-shadow:
    0 2px 4px rgba(0,0,0,.15),
    0 8px 24px rgba(0,0,0,.2),
    0 24px 64px rgba(0,0,0,.35),
    0 0 0 1px rgba(255,255,255,.04) inset;
  overflow: hidden;
  transition: transform .6s var(--lp-ease);
}

/* Title bar */
.lp-preview-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(255,255,255,.03);
  border-bottom: 1px solid var(--lp-border);
}
.lp-preview-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
}
.lp-preview-dot:nth-child(1) { background: #ff5f57; }
.lp-preview-dot:nth-child(2) { background: #febc2e; }
.lp-preview-dot:nth-child(3) { background: #28c840; }
.lp-preview-title {
  font-size: 12px;
  color: var(--lp-muted);
  margin-left: 8px;
  font-weight: 500;
}

/* Body grid */
.lp-preview-body {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
}

/* Sidebar */
.lp-preview-sidebar {
  background: rgba(255,255,255,.02);
  border-right: 1px solid var(--lp-border);
  padding: 14px 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.lp-preview-nav-item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 12px;
  border-radius: 10px;
  font-size: 12.5px;
  color: var(--lp-muted);
  cursor: pointer;
  transition: background .15s, color .15s;
  border: none;
  background: none;
  text-align: left;
  font-family: inherit;
  width: 100%;
}
.lp-preview-nav-item:hover { background: rgba(255,255,255,.05); color: var(--lp-text); }
.lp-preview-nav-item.is-active {
  background: rgba(108,124,255,.12);
  color: rgba(108,124,255,1);
}
.lp-preview-nav-item svg { width: 16px; height: 16px; flex-shrink: 0; opacity: .7; }
.lp-preview-nav-item.is-active svg { opacity: 1; }

/* Main content */
.lp-preview-main {
  padding: 18px;
  min-height: 380px;
}

/* View switching */
.lp-preview-view { display: none; }
.lp-preview-view.is-active { display: block; }

/* Mock section title */
.lp-mock-section-title {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--lp-dim);
  margin: 0 0 10px;
}

/* KPI row */
.lp-preview-kpis {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.lp-preview-kpi {
  flex: 1 1 0;
  min-width: 110px;
  padding: 12px 14px;
  border-radius: 12px;
  background: var(--lp-glass);
  border: 1px solid var(--lp-border);
  display: flex;
  align-items: center;
  gap: 10px;
}
.lp-preview-kpi strong {
  font-size: 20px;
  font-weight: 800;
  color: var(--lp-text);
}
.lp-preview-kpi small {
  font-size: 11px;
  color: var(--lp-muted);
  display: block;
}

/* KPI icons */
.lp-kpi-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.lp-kpi-icon svg { width: 13px; height: 13px; }
.lp-kpi-icon--indigo { background: rgba(108,124,255,.18); color: var(--lp-accent); }
.lp-kpi-icon--purple { background: rgba(138,92,255,.18); color: var(--lp-accent2); }
.lp-kpi-icon--green  { background: rgba(52,211,153,.18); color: var(--lp-green); }
.lp-kpi-icon--yellow { background: rgba(251,191,36,.18); color: var(--lp-yellow); }

/* Preview table */
.lp-preview-table {
  display: flex;
  flex-direction: column;
}
.lp-preview-table-head {
  display: flex;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--lp-border);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--lp-dim);
}
.lp-preview-table-row {
  display: flex;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.04);
  font-size: 12.5px;
  transition: background .15s;
}
.lp-preview-table-row:hover { background: rgba(255,255,255,.02); }

.lp-col-desc   { flex: 2; padding-right: 8px; }
.lp-col-obj    { flex: 1.5; padding-right: 8px; }
.lp-col-status { flex: 0.8; text-align: right; }

.lp-cell-main { color: var(--lp-text); }
.lp-cell-dim  { color: var(--lp-muted); font-size: 12px; }

/* Inline badges */
.lp-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .02em;
  white-space: nowrap;
  border: 1px solid transparent;
}
.lp-badge--green  { background: rgba(52,211,153,.14); border-color: rgba(52,211,153,.3); color: #6ee7b7; }
.lp-badge--blue   { background: rgba(108,124,255,.14); border-color: rgba(108,124,255,.3); color: #a5b4fc; }
.lp-badge--yellow { background: rgba(251,191,36,.14); border-color: rgba(251,191,36,.3); color: #fde68a; }
.lp-badge--red    { background: rgba(255,92,122,.14); border-color: rgba(255,92,122,.3); color: #fca5a5; }
.lp-badge--purple { background: rgba(138,92,255,.14); border-color: rgba(138,92,255,.3); color: #c4b5fd; }


/* ═══════════════════════════════════════════════════════════════════════
   SECTIONS (shared)
   ═══════════════════════════════════════════════════════════════════════ */

.lp-section {
  position: relative;
  padding: 100px 0;
}
.lp-section--alt {
  background: linear-gradient(180deg, rgba(255,255,255,.015) 0%, transparent 100%);
}

.lp-section-head {
  margin-bottom: 56px;
  text-align: center;
}
.lp-section-sub {
  margin-left: auto;
  margin-right: auto;
}

.lp-section-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 12px;
  background: linear-gradient(135deg, var(--lp-accent), var(--lp-accent2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lp-section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.025em;
  color: var(--lp-text);
  margin: 0 0 14px;
}

.lp-section-sub {
  font-size: 16px;
  line-height: 1.7;
  color: var(--lp-muted);
  max-width: 560px;
  margin: 0;
}
/* Center-aligned section heads pass style inline, but also support auto-center */
.lp-section-head[style*="text-align:center"] .lp-section-sub,
.lp-section-head[style*="text-align: center"] .lp-section-sub {
  margin-left: auto;
  margin-right: auto;
}


/* ═══════════════════════════════════════════════════════════════════════
   BENTO FEATURE GRID
   ═══════════════════════════════════════════════════════════════════════ */

.lp-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.lp-bento-card {
  position: relative;
  padding: 28px 24px;
  border-radius: var(--lp-radius);
  background: var(--lp-glass);
  border: 1px solid var(--lp-border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow:
    0 2px 4px rgba(0,0,0,.08),
    0 8px 24px rgba(0,0,0,.12),
    0 24px 48px rgba(0,0,0,.15);
  overflow: hidden;
  transition: transform .35s var(--lp-ease), border-color .3s, box-shadow .35s;
}
.lp-bento-card:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: var(--lp-border2);
  box-shadow:
    0 4px 8px rgba(0,0,0,.1),
    0 16px 40px rgba(0,0,0,.18),
    0 32px 64px rgba(0,0,0,.22);
}

/* Shimmer on hover via ::before */
.lp-bento-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity .4s;
  background: radial-gradient(400px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(108,124,255,.08), transparent 60%);
  pointer-events: none;
}
.lp-bento-card:hover::before { opacity: 1; }

.lp-bento-card--wide { grid-column: span 2; }
.lp-bento-card--tall { grid-row: span 2; }

.lp-bento-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(108,124,255,.16), rgba(138,92,255,.12));
  color: var(--lp-accent);
}
.lp-bento-icon svg { width: 22px; height: 22px; }

.lp-bento-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--lp-text);
  margin: 0 0 8px;
}

.lp-bento-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--lp-muted);
  margin: 0;
}


/* ═══════════════════════════════════════════════════════════════════════
   SECURITY SECTION
   ═══════════════════════════════════════════════════════════════════════ */

.lp-sec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.lp-sec-card {
  position: relative;
  padding: 28px 24px;
  border-radius: var(--lp-radius);
  background: var(--lp-glass);
  border: 1px solid var(--lp-border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow:
    0 2px 4px rgba(0,0,0,.08),
    0 8px 24px rgba(0,0,0,.12),
    0 24px 48px rgba(0,0,0,.15);
  overflow: hidden;
  transition: transform .35s var(--lp-ease), border-color .3s, box-shadow .35s;
}
.lp-sec-card:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: var(--lp-border2);
  box-shadow:
    0 4px 8px rgba(0,0,0,.1),
    0 16px 40px rgba(0,0,0,.18),
    0 32px 64px rgba(0,0,0,.22);
}

/* Shimmer */
.lp-sec-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity .4s;
  background: radial-gradient(400px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(52,211,153,.06), transparent 60%);
  pointer-events: none;
}
.lp-sec-card:hover::before { opacity: 1; }

.lp-sec-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  background: rgba(52,211,153,.1);
  color: var(--lp-green);
}
.lp-sec-icon svg { width: 22px; height: 22px; }

.lp-sec-card h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--lp-text);
  margin: 0 0 8px;
}
.lp-sec-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--lp-muted);
  margin: 0;
}


/* ═══════════════════════════════════════════════════════════════════════
   PRICING
   ═══════════════════════════════════════════════════════════════════════ */

/* Toggle */
.lp-price-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  font-size: 13px;
  color: var(--lp-muted);
}
.lp-yearly-hint {
  color: var(--lp-green);
  font-weight: 700;
}

.lp-toggle-track {
  position: relative;
  width: 48px;
  height: 24px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  cursor: pointer;
  transition: background .25s;
  border: none;
  padding: 0;
}
.lp-toggle-track.is-active { background: rgba(52,211,153,.45); }

.lp-toggle-thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  transition: transform .25s var(--lp-ease);
  pointer-events: none;
}
.lp-toggle-track.is-active .lp-toggle-thumb { transform: translateX(24px); }

/* Grid */
.lp-pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: start;
}

/* Card */
.lp-price-card {
  position: relative;
  padding: 32px 24px;
  border-radius: var(--lp-radius);
  background: var(--lp-glass);
  border: 1px solid var(--lp-border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow:
    0 2px 4px rgba(0,0,0,.08),
    0 8px 24px rgba(0,0,0,.12),
    0 24px 48px rgba(0,0,0,.15);
  transition: transform .35s var(--lp-ease), border-color .3s, box-shadow .35s;
  display: flex;
  flex-direction: column;
}
.lp-price-card .lp-price-features { flex: 1; }
.lp-price-card:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: var(--lp-border2);
  box-shadow:
    0 4px 8px rgba(0,0,0,.1),
    0 16px 40px rgba(0,0,0,.18),
    0 32px 64px rgba(0,0,0,.22);
}

/* Featured */
.lp-price-card--featured {
  border-color: rgba(108,124,255,.3);
  background: rgba(108,124,255,.06);
  box-shadow:
    0 2px 4px rgba(0,0,0,.08),
    0 8px 24px rgba(108,124,255,.08),
    0 24px 64px rgba(108,124,255,.12);
}
.lp-price-card--featured:hover {
  border-color: rgba(108,124,255,.45);
  box-shadow:
    0 4px 8px rgba(0,0,0,.1),
    0 16px 40px rgba(108,124,255,.14),
    0 32px 64px rgba(108,124,255,.18);
}

.lp-price-badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  color: #fff;
  background: linear-gradient(135deg, var(--lp-accent), var(--lp-accent2));
  white-space: nowrap;
  box-shadow: 0 2px 12px rgba(108,124,255,.3);
}

.lp-price-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--lp-text);
  margin: 0 0 16px;
}

.lp-price-amount {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 6px;
}
.lp-price-currency {
  font-size: 18px;
  font-weight: 600;
  color: var(--lp-muted);
}
.lp-price-value {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--lp-text);
  line-height: 1;
}
.lp-price-period {
  font-size: 13px;
  color: var(--lp-dim);
  margin-bottom: 24px;
}

.lp-price-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lp-price-features li {
  position: relative;
  padding-left: 22px;
  font-size: 13.5px;
  color: var(--lp-muted);
  line-height: 1.5;
}
.lp-price-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(52,211,153,.15);
  /* Checkmark via SVG data URI */
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.5 7l2.5 2.5 4.5-5' stroke='%2334d399' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 14px;
  background-position: center;
  background-repeat: no-repeat;
}


/* ── Price Trust Items ───────────────────────────────────────────── */
.lp-price-trust {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 40px;
  font-size: 12px;
  color: var(--lp-dim);
}


/* ═══════════════════════════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════════════════════════ */

.lp-faq {
  max-width: 720px;
  margin: 0 auto;
}

.lp-faq details {
  margin-bottom: 8px;
  border-radius: 14px;
  background: var(--lp-glass);
  border: 1px solid var(--lp-border);
  overflow: hidden;
  transition: border-color .25s;
}
.lp-faq details[open] {
  border-color: rgba(108,124,255,.25);
}

.lp-faq details summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  font-size: 15px;
  font-weight: 600;
  color: var(--lp-text);
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: color .2s;
}
.lp-faq details summary::-webkit-details-marker { display: none; }
.lp-faq details summary::marker { display: none; content: ""; }

.lp-faq details summary::after {
  content: "+";
  font-size: 20px;
  font-weight: 300;
  color: var(--lp-muted);
  transition: transform .3s var(--lp-ease), color .2s;
  flex-shrink: 0;
  margin-left: 16px;
}
.lp-faq details[open] summary::after {
  content: "\2212"; /* minus sign */
  color: var(--lp-accent);
  transform: rotate(180deg);
}

.lp-faq-body {
  padding: 0 20px 18px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--lp-muted);
  animation: lp-faq-slide .3s var(--lp-ease);
}


/* ═══════════════════════════════════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════════════════════════════════ */

.lp-cta {
  position: relative;
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
}
.lp-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(600px 400px at 50% 50%, rgba(108,124,255,.12), transparent 60%),
    radial-gradient(400px 300px at 60% 40%, rgba(138,92,255,.08), transparent 55%);
}

.lp-cta-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.025em;
  color: var(--lp-text);
  margin: 0 0 20px;
  position: relative;
}
.lp-cta-sub {
  font-size: 17px;
  color: var(--lp-muted);
  max-width: 480px;
  margin: 16px auto 36px;
  line-height: 1.6;
}


/* ═══════════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════════ */

.lp-footer {
  background: rgba(0,0,0,.35);
  border-top: 1px solid var(--lp-border);
  padding: 56px 0 0;
}

.lp-footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.lp-footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--lp-text);
  margin: 0 0 16px;
}
.lp-footer-col a {
  display: block;
  color: var(--lp-muted);
  text-decoration: none;
  font-size: 14px;
  padding: 4px 0;
  transition: color .15s;
}
.lp-footer-col a:hover { color: var(--lp-text); }

.lp-footer-brand p {
  font-size: 13px;
  color: rgba(255,255,255,.40);
  line-height: 1.6;
  max-width: 240px;
}
.lp-footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.lp-footer-logo strong { font-size: 14px; }
.lp-footer-domain { color: rgba(108,124,255,.55); }

.lp-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-top: 1px solid var(--lp-border);
  font-size: 13px;
  color: var(--lp-dim);
  flex-wrap: wrap;
  gap: 12px;
}


/* ═══════════════════════════════════════════════════════════════════════
   FLOATING CTA
   ═══════════════════════════════════════════════════════════════════════ */

.lp-floating-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
}

.lp-floating-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  color: #fff;
  background: rgba(15,18,35,.8);
  border: 1px solid rgba(108,124,255,.3);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  cursor: pointer;
  text-decoration: none;
  box-shadow:
    0 4px 20px rgba(0,0,0,.3),
    0 0 24px rgba(108,124,255,.15);
  transition: transform .25s var(--lp-ease), box-shadow .25s, border-color .25s;
}
.lp-floating-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(108,124,255,.5);
  box-shadow:
    0 8px 32px rgba(0,0,0,.35),
    0 0 32px rgba(108,124,255,.25);
}
.lp-floating-btn svg { width: 16px; height: 16px; }


/* ═══════════════════════════════════════════════════════════════════════
   REVEAL / FADE ANIMATIONS
   ═══════════════════════════════════════════════════════════════════════ */

.lp-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s var(--lp-ease), transform .7s var(--lp-ease);
}
.lp-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.lp-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s var(--lp-ease), transform .7s var(--lp-ease);
}
.lp-fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}


/* ═══════════════════════════════════════════════════════════════════════
   KEYFRAMES
   ═══════════════════════════════════════════════════════════════════════ */

@keyframes lp-gradient-shift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes lp-badge-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .5; transform: scale(.75); }
}

@keyframes lp-hero-breathe {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .7; transform: scale(1.08); }
}

@keyframes lp-faq-slide {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}


/* ═══════════════════════════════════════════════════════════════════════
   RESPONSIVE — 1100px
   ═══════════════════════════════════════════════════════════════════════ */

@media (max-width: 1100px) {
  .lp-pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* ═══════════════════════════════════════════════════════════════════════
   RESPONSIVE — 960px
   ═══════════════════════════════════════════════════════════════════════ */

@media (max-width: 960px) {
  .lp-bento {
    grid-template-columns: repeat(2, 1fr);
  }
  .lp-bento-card--wide { grid-column: span 2; }

  /* Hamburger visible, links hidden */
  .lp-hamburger { display: flex; }

  .lp-nav-links {
    display: none;
    position: fixed;
    inset: 0;
    top: 64px;
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
    gap: 4px;
    background: rgba(6,8,15,.96);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    z-index: 9999;
    overflow-y: auto;
  }
  .lp-nav-links.is-open { display: flex; }
  .lp-nav-links a {
    font-size: 16px;
    padding: 14px 16px;
    border-radius: 12px;
  }

  /* Preview sidebar narrower */
  .lp-preview-body { grid-template-columns: 140px minmax(0, 1fr); }
}


/* ═══════════════════════════════════════════════════════════════════════
   RESPONSIVE — 768px
   ═══════════════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
  .lp-section { padding: 64px 0; }

  .lp-bento {
    grid-template-columns: 1fr;
  }
  .lp-bento-card--wide { grid-column: span 1; }

  .lp-sec-grid { grid-template-columns: repeat(2, 1fr); }

  .lp-pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }

  .lp-footer-grid { grid-template-columns: repeat(2, 1fr); }

  .lp-hero { padding: 100px 20px 48px; min-height: auto; }
  .lp-hero-stats { flex-wrap: wrap; gap: 16px; }
  .lp-hero-stat-sep { display: none; }
  .lp-hero-stat { padding: 0 16px; }

  /* Hide preview sidebar on small screens */
  .lp-preview-body { grid-template-columns: 1fr; }
  .lp-preview-sidebar { display: none; }

  .lp-preview-kpis { flex-wrap: wrap; }
  .lp-preview-kpi { min-width: calc(50% - 6px); }
}


/* ═══════════════════════════════════════════════════════════════════════
   RESPONSIVE — 480px
   ═══════════════════════════════════════════════════════════════════════ */

@media (max-width: 480px) {
  .lp-container { padding: 0 16px; }

  .lp-sec-grid { grid-template-columns: 1fr; }

  .lp-footer-grid { grid-template-columns: 1fr; }

  .lp-hero-actions { flex-direction: column; width: 100%; }
  .lp-hero-actions .lp-btn { width: 100%; }

  .lp-hero-title { font-size: clamp(32px, 8vw, 44px); }

  .lp-price-value { font-size: 40px; }

  .lp-floating-cta { bottom: 16px; right: 16px; }
  .lp-floating-btn { padding: 10px 16px; font-size: 12px; }

  .lp-preview-kpi { min-width: 100%; }
}


/* ═══════════════════════════════════════════════════════════════════════
   ACCESSIBILITY — Reduced Motion
   ═══════════════════════════════════════════════════════════════════════ */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .lp-reveal,
  .lp-fade-up {
    opacity: 1 !important;
    transform: none !important;
  }
}
