﻿/* ── Support ──────────────────────────────────────────────────────────────── */
.support-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.support-right { display: flex; flex-direction: column; gap: 1rem; }

.support-success {
  text-align: center; padding: 2.5rem 0;
  display: flex; flex-direction: column; align-items: center; gap: 0.75rem;
}
.support-success-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: #DCFCE7;
  display: flex; align-items: center; justify-content: center;
}
.support-success-icon i { color: var(--color-success); font-size: 24px; }
.support-success h3 { font-family: var(--font-heading); font-size: 20px; font-weight: 700; }
.support-success p { font-size: 14px; color: var(--color-text-mid); }

.support-option {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 1.25rem;
}
.support-option--green { background: #F0FDF4; border-color: #A7F3D0; }
.support-option--blue  { background: #EFF6FF; border-color: #BFDBFE; }
.support-option--gray  { background: var(--color-surface); }

.support-option-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 18px;
}
.support-option-title { font-family: var(--font-heading); font-weight: 700; font-size: 14px; margin-bottom: 4px; }
.support-option-desc { font-size: 13px; color: var(--color-text-mid); line-height: 1.5; margin-bottom: 8px; }
.support-option-link { font-size: 13px; font-weight: 600; text-decoration: none; }

.faq-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--color-border);
  cursor: pointer; font-size: 13px; color: var(--color-text-mid);
  transition: opacity 0.15s;
}
.faq-row:last-child { border-bottom: none; }
.faq-row:hover { opacity: 0.7; }
.faq-row i { font-size: 11px; color: var(--color-text-light); }

/* â”€â”€ Landing Page (lp-*) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.lp { font-family: var(--font-body); color: var(--color-text); overflow-x: hidden; background: #fff; }

/* Nav */
.lp-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
}
.lp-nav-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 2rem; height: 64px;
  display: flex; align-items: center; justify-content: space-between;
}
.lp-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.lp-logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
}
.lp-logo-img--footer {
  height: 40px;
}
.lp-logo-badge {
  font-size: 11px; font-weight: 600; color: var(--color-primary);
  background: #EFF6FF; border: 1px solid #BFDBFE;
  padding: 2px 10px; border-radius: 999px;
}
.lp-nav-links { display: flex; align-items: center; gap: 1.5rem; font-size: 14px; font-weight: 500; }
.lp-nav-links a { color: var(--color-text-mid); text-decoration: none; }
.lp-nav-links a:hover { color: var(--color-text); }
.lp-nav-links a.btn--primary,
.lp-nav-links a.btn--primary:hover {
  color: #fff;
}

/* Hero */
.lp-hero {
  background: linear-gradient(135deg, #e4f2ec 0%, #e8effc 55%, #ecf4fc 100%);
  padding: 4rem 2rem 4rem; overflow: hidden;
}
.lp-hero-split {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: center;
}
.lp-hero-left { display: flex; flex-direction: column; gap: 1.5rem; }
.lp-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.85); border: 1px solid rgba(0,0,0,0.1);
  padding: 6px 16px; border-radius: 999px; width: fit-content;
  font-size: 13px; font-weight: 500; color: var(--color-text-mid);
}
.lp-hero-badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--color-success); flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(16,185,129,0.2);
  animation: heroPulse 1.8s ease-in-out infinite;
}
@keyframes heroPulse {
  0%,100% { box-shadow: 0 0 0 3px rgba(16,185,129,0.2); }
  50%      { box-shadow: 0 0 0 7px rgba(16,185,129,0.05); }
}
.lp-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.8vw, 46px);
  font-weight: 800; letter-spacing: -0.04em; line-height: 1.1; color: var(--color-navy);
}
.lp-hero-title-accent { color: var(--color-primary); }
.lp-hero-subtitle { font-size: 16px; color: var(--color-text-mid); line-height: 1.7; max-width: 480px; }
.lp-hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn--ghost-dark {
  background: rgba(255,255,255,0.8); color: var(--color-text);
  border: 1px solid rgba(0,0,0,0.14);
}
.btn--ghost-dark:hover { background: #fff; }
.lp-hero-stats {
  display: flex; align-items: center;
  background: rgba(255,255,255,0.75); border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-xl); padding: 0.85rem 0; flex-wrap: wrap;
}
.lp-hero-stat { display: flex; flex-direction: column; align-items: center; gap: 2px; padding: 0 1.5rem; }
.lp-hero-stat-value { font-family: var(--font-heading); font-size: 20px; font-weight: 700; color: var(--color-navy); letter-spacing: -0.03em; }
.lp-hero-stat-label { font-size: 11px; color: var(--color-text-mid); font-weight: 500; }
.lp-hero-stat-divider { width: 1px; height: 36px; background: var(--color-border); }

/* Hero right */
.lp-hero-right { display: flex; align-items: center; justify-content: center; }
.lp-hero-card-wrap { position: relative; width: 100%; max-width: 400px; padding: 22px; }
.lp-card-glow {
  position: absolute; inset: -20px;
  background: radial-gradient(ellipse at center, rgba(37,99,235,0.15) 0%, transparent 70%);
  pointer-events: none; border-radius: 50%;
}
.lp-sc { position: absolute; width: 26px; height: 26px; border-color: #2563EB; border-style: solid; border-width: 0; }
.lp-sc--tl { top:0; left:0;   border-top-width:3px; border-left-width:3px;  border-radius:5px 0 0 0; }
.lp-sc--tr { top:0; right:0;  border-top-width:3px; border-right-width:3px; border-radius:0 5px 0 0; }
.lp-sc--bl { bottom:0; left:0;  border-bottom-width:3px; border-left-width:3px;  border-radius:0 0 0 5px; }
.lp-sc--br { bottom:0; right:0; border-bottom-width:3px; border-right-width:3px; border-radius:0 0 5px 0; }
.lp-scan-line {
  position: absolute; left: 22px; right: 22px; height: 2px;
  background: linear-gradient(90deg, transparent, #2563EB 30%, #93C5FD, #2563EB 70%, transparent);
  box-shadow: 0 0 10px rgba(37,99,235,0.8), 0 0 24px rgba(37,99,235,0.3);
  animation: lpScan 2.8s ease-in-out infinite; z-index: 20;
}
@keyframes lpScan {
  0%   { top: 22px; opacity: 0; }
  8%   { opacity: 1; }
  92%  { opacity: 1; }
  100% { top: calc(100% - 22px); opacity: 0; }
}

/* Egyptian ID card — real photo */
.lp-eid-img {
  width: 100%; display: block; border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.22), 0 0 0 1px rgba(0,0,0,0.08);
  position: relative; z-index: 2;
}
.lp-scan-label {
  display: flex; align-items: center; gap: 7px; justify-content: center; margin-top: 14px;
  font-size: 13px; font-weight: 600; color: #2563EB;
  background: rgba(37,99,235,0.08); border: 1px solid rgba(37,99,235,0.2);
  padding: 5px 16px; border-radius: 999px; width: fit-content; margin-inline: auto;
}
.lp-scan-dot { width: 8px; height: 8px; border-radius: 50%; background: #2563EB; animation: heroPulse 1.2s ease-in-out infinite; }

@media (max-width: 900px) {
  .lp-hero-split { grid-template-columns: 1fr; }
  .lp-hero-left { align-items: center; text-align: center; }
  .lp-hero-subtitle { max-width: 100%; }
  .lp-hero-stats { justify-content: center; }
  .lp-hero-right { margin-top: 1rem; }
}

/* Shared section */
.lp-section { padding: 5rem 0; }
.lp-section--white { background: #fff; }
.lp-section--dark  { background: #0d1b2e; }
.lp-section--dim   { background: #111827; }
.lp-container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.lp-section-header { text-align: center; margin-bottom: 3.5rem; }
.lp-section-title {
  font-family: var(--font-heading); font-size: clamp(22px, 3.5vw, 32px); font-weight: 700;
  letter-spacing: -0.03em; color: var(--color-navy); margin-bottom: 10px;
}
.lp-section-title--white { color: #fff; }
.lp-section-subtitle { font-size: 16px; color: var(--color-text-mid); }
.lp-section-subtitle--muted { color: #94A3B8; }

/* Features */
.lp-features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.lp-feature-card {
  background: #fff; border: 1px solid var(--color-border);
  border-radius: var(--radius-lg); padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}
.lp-feature-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; margin-bottom: 1.1rem;
}
.lp-feature-icon--blue   { background: #EFF6FF; color: var(--color-primary); }
.lp-feature-icon--green  { background: #F0FDF4; color: var(--color-success); }
.lp-feature-icon--yellow { background: #FFFBEB; color: var(--color-warning); }
.lp-feature-title { font-family: var(--font-heading); font-size: 16px; font-weight: 700; margin-bottom: 8px; color: var(--color-navy); }
.lp-feature-desc  { font-size: 14px; color: var(--color-text-mid); line-height: 1.6; }

/* How It Works */
.lp-steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
.lp-step { text-align: center; }
.lp-step-num {
  font-family: var(--font-heading); font-size: 52px; font-weight: 800;
  color: rgba(255,255,255,0.08); margin-bottom: 1rem; line-height: 1;
}
.lp-step-icon {
  width: 56px; height: 56px; border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.1); color: #60A5FA; font-size: 22px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.lp-step-title { font-family: var(--font-heading); font-size: 18px; font-weight: 700; margin-bottom: 8px; color: #fff; }
.lp-step-desc  { font-size: 14px; color: #94A3B8; line-height: 1.6; }

/* Two-column */
.lp-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.lp-eyebrow {
  display: inline-block;
  font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--color-primary); background: #EFF6FF;
  padding: 4px 12px; border-radius: 999px; margin-bottom: 1rem;
}
.lp-eyebrow--border {
  color: #94A3B8; background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
}
.lp-col-title {
  font-family: var(--font-heading); font-size: 30px; font-weight: 700;
  letter-spacing: -0.03em; color: var(--color-navy); margin-bottom: 1rem; line-height: 1.2;
}
.lp-col-title--white { color: #fff; }
.lp-col-desc { font-size: 15px; color: var(--color-text-mid); line-height: 1.7; margin-bottom: 1.5rem; }
.lp-col-desc--muted { color: #94A3B8; }
.lp-checklist { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.lp-checklist li { display: flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 500; color: var(--color-text); }
.lp-checklist li i { color: var(--color-success); font-size: 16px; flex-shrink: 0; }

/* Code card */
.lp-code-card {
  background: #0d1b2e; border-radius: var(--radius-xl);
  overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}
.lp-code-card-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 20px; background: rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.lp-code-card-lang {
  font-family: var(--font-mono); font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; color: #60A5FA; text-transform: uppercase;
}
.lp-code-card-copy {
  background: none; border: none; cursor: pointer;
  font-size: 12px; color: #64748B; font-family: var(--font-body);
  display: flex; align-items: center; gap: 5px; padding: 4px 8px;
  border-radius: var(--radius-sm); transition: color 0.15s;
}
.lp-code-card-copy:hover { color: #94A3B8; }
.lp-code-body { padding: 1.5rem 1.75rem; overflow-x: auto; margin: 0; }
.lp-code-body code {
  font-family: var(--font-mono); font-size: 13px; color: #94A3B8;
  white-space: pre; line-height: 1.7;
}

/* CTA */
.lp-cta {
  background: linear-gradient(135deg, #1D4ED8 0%, #2563EB 60%, #3B82F6 100%);
  padding: 5rem 2rem;
}
.lp-cta-inner { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.lp-cta-title {
  font-family: var(--font-heading); font-size: 36px; font-weight: 700;
  letter-spacing: -0.03em; color: #fff;
}
.lp-cta-sub { font-size: 16px; color: rgba(255,255,255,0.75); }
.lp-cta-actions { display: flex; gap: 1rem; margin-top: 0.5rem; flex-wrap: wrap; justify-content: center; }
.btn--white { background: #fff; color: var(--color-primary); font-weight: 700; }
.btn--white:hover { background: #f0f4ff; }
.btn--outline-white {
  background: transparent; color: #fff;
  border: 1.5px solid rgba(255,255,255,0.45); font-weight: 600;
}
.btn--outline-white:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); }

/* Footer */
.lp-footer { background: #0d1b2e; padding: 4rem 0 2rem; }
.lp-footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
  margin-bottom: 3rem;
}
.lp-footer-brand-desc {
  font-size: 13px; color: #64748B; line-height: 1.6; margin-top: 1rem; max-width: 240px;
}
.lp-footer-col { display: flex; flex-direction: column; gap: 10px; }
.lp-footer-col-title {
  font-family: var(--font-heading); font-size: 13px; font-weight: 700;
  color: #fff; letter-spacing: 0.02em; margin-bottom: 4px;
}
.lp-footer-col a { font-size: 13px; color: #64748B; text-decoration: none; transition: color 0.15s; }
.lp-footer-col a:hover { color: #94A3B8; text-decoration: none; }
.lp-footer-badge-row { display: flex; gap: 8px; margin-top: 1.25rem; flex-wrap: wrap; }
.lp-footer-badge {
  font-size: 11px; font-weight: 600; letter-spacing: 0.04em;
  color: #475569; background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px; padding: 2px 8px;
}
.lp-footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 13px; color: #475569;
}
.lp-footer-bottom-links { display: flex; align-items: center; gap: 1.25rem; }
.lp-footer-bottom-links a { color: #475569; text-decoration: none; transition: color 0.15s; }
.lp-footer-bottom-links a:hover { color: #94A3B8; }

/* Landing responsive */
@media (max-width: 1024px) {
  .lp-features-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-footer-grid   { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .lp-steps-grid    { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .lp-two-col       { gap: 2.5rem; }
  .lp-section-title { font-size: 26px; }
  .lp-col-title     { font-size: 24px; }
}
@media (max-width: 900px) {
  .lp-hero-split { grid-template-columns: 1fr; }
  .lp-hero-left  { align-items: center; text-align: center; }
  .lp-hero-subtitle { max-width: 100%; }
  .lp-hero-actions  { justify-content: center; }
  .lp-hero-stats    { justify-content: center; }
  .lp-hero-right    { margin-top: 0.5rem; }
}
@media (max-width: 768px) {
  .lp-hero { padding: 2.5rem 1.25rem 2rem; }
  .lp-container { padding: 0 1.25rem; }
  .lp-section { padding: 3.5rem 0; }
  .lp-two-col { grid-template-columns: 1fr; gap: 2rem; }
  .lp-steps-grid { grid-template-columns: 1fr; }
  .lp-features-grid { grid-template-columns: 1fr 1fr; }
  .lp-footer-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .lp-section-title { font-size: 24px; }
  .lp-col-title     { font-size: 22px; }
  .lp-hero-stat     { padding: 0 1rem; }
  .lp-hero-stat-value { font-size: 18px; }
  .lp-cta-title     { font-size: 26px; }
  .lp-cta           { padding: 3.5rem 1.25rem; }
  .lp-footer        { padding: 3rem 0 1.5rem; }
  .lp-footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  /* ID card in hero: scale down */
  .lp-hero-card-wrap { max-width: 320px; padding: 16px; }

}
@media (max-width: 480px) {
  .lp-features-grid { grid-template-columns: 1fr; }
  .lp-footer-grid   { grid-template-columns: 1fr; }
  .lp-hero-stats    { flex-direction: column; gap: 0.75rem; }
  .lp-hero-stat-divider { width: 48px; height: 1px; }
  .lp-nav-inner     { padding: 0 1rem; }
  .lp-hero-card-wrap { max-width: 280px; }
  .lp-hero-title    { font-size: 26px; }
  .lp-cta-actions   { flex-direction: column; width: 100%; }
  .lp-cta-actions .btn { width: 100%; justify-content: center; }
  .lp-checklist li  { font-size: 14px; }
}

/* ── ID Card Demo Section ─────────────────────────────────────────────────── */
.lp-demo-section { background: #060e1a; padding: 5rem 0; }

.lp-demo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* Scanner frame */
.lp-demo-scanner { display: flex; flex-direction: column; align-items: center; gap: 1.25rem; }

.lp-scanner-frame {
  position: relative;
  padding: 20px;
  width: 100%;
  max-width: 420px;
}

/* Animated corner brackets */
.lp-scanner-corner {
  position: absolute;
  width: 28px; height: 28px;
  border-color: #00D4FF;
  border-style: solid;
  border-width: 0;
}
.lp-scanner-corner--tl { top: 0; left: 0;  border-top-width: 3px; border-left-width: 3px; border-radius: 4px 0 0 0; }
.lp-scanner-corner--tr { top: 0; right: 0; border-top-width: 3px; border-right-width: 3px; border-radius: 0 4px 0 0; }
.lp-scanner-corner--bl { bottom: 0; left: 0;  border-bottom-width: 3px; border-left-width: 3px; border-radius: 0 0 0 4px; }
.lp-scanner-corner--br { bottom: 0; right: 0; border-bottom-width: 3px; border-right-width: 3px; border-radius: 0 0 4px 0; }

/* Scan line */
.lp-scanner-line {
  position: absolute;
  left: 20px; right: 20px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #00D4FF, #00D4FF, transparent);
  box-shadow: 0 0 8px #00D4FF, 0 0 20px rgba(0,212,255,0.4);
  animation: scanLine 2.5s ease-in-out infinite;
  z-index: 10;
}
@keyframes scanLine {
  0%   { top: 20px; opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { top: calc(100% - 20px); opacity: 0; }
}

/* The ID card itself */
.lp-id-card {
  background: linear-gradient(135deg, #c8b89a 0%, #d4c4a8 40%, #c0ae96 100%);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 40px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.1);
  direction: rtl;
  font-family: 'Arial', sans-serif;
}

.lp-id-card-header {
  background: linear-gradient(90deg, #1a6b3c 0%, #2d8a50 50%, #1a6b3c 100%);
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.lp-id-card-title-block { flex: 1; text-align: center; }
.lp-id-title-ar {
  font-size: 13px; font-weight: 700; color: #FFD700;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
  letter-spacing: 0.5px;
}
.lp-id-subtitle-ar {
  font-size: 10px; color: rgba(255,255,255,0.9);
  margin-top: 1px;
}

.lp-id-eagle {
  width: 28px; height: 28px;
  background: #FFD700;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  position: relative;
}
.lp-id-eagle::after {
  content: '\2605';
  color: #1a6b3c;
  font-size: 16px;
  position: absolute;
}

.lp-id-card-body {
  display: flex;
  gap: 10px;
  padding: 10px 12px;
  position: relative;
  z-index: 2;
}

/* Photo box */
.lp-id-photo {
  width: 72px; height: 88px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #d0c0a0, #b8a888);
  border: 2px solid rgba(0,0,0,0.2);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(0,0,0,0.25);
  font-size: 32px;
}

.lp-id-fields {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.lp-id-field {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.lp-id-field-label {
  font-size: 9px;
  color: rgba(0,0,0,0.5);
  font-weight: 600;
}

.lp-id-field-value {
  font-size: 12px;
  color: #1a0a00;
  font-weight: 700;
  line-height: 1.3;
}

/* Pyramids watermark */
.lp-id-watermark {
  position: absolute;
  right: 10px; bottom: 28px;
  font-size: 52px;
  color: rgba(0,0,0,0.06);
  z-index: 1;
  pointer-events: none;
}

.lp-id-card-footer {
  background: linear-gradient(90deg, #8B7355, #a08060, #8B7355);
  padding: 6px 12px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.lp-id-number {
  font-family: 'Courier New', monospace;
  font-size: 14px;
  font-weight: 700;
  color: #1a0a00;
  letter-spacing: 4px;
  direction: ltr;
}

/* Scanner badge */
.lp-demo-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,212,255,0.1); border: 1px solid rgba(0,212,255,0.3);
  padding: 6px 16px; border-radius: 999px;
  font-size: 13px; font-weight: 600; color: #00D4FF;
}
.lp-demo-badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #00D4FF;
  animation: pulse 1.2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.8); }
}

/* Result panel */
.lp-demo-result {
  background: #0d1b2e;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 1.5rem;
}

.lp-demo-result-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.lp-demo-status {
  font-size: 14px; font-weight: 700; color: #10B981;
  display: flex; align-items: center; gap: 6px;
}
.lp-demo-time {
  font-family: 'DM Mono', monospace;
  font-size: 13px; color: #60A5FA; font-weight: 600;
  background: rgba(96,165,250,0.1);
  padding: 3px 10px; border-radius: 999px;
}

.lp-demo-fields { display: flex; flex-direction: column; gap: 2px; margin-bottom: 1.25rem; }

.lp-demo-field {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 10px;
  border-radius: 8px;
  transition: background 0.2s;
}
.lp-demo-field:hover { background: rgba(255,255,255,0.04); }

.lp-demo-field--anim {
  animation: fadeSlideIn 0.4s ease both;
}
@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateX(-10px); }
  to   { opacity: 1; transform: translateX(0); }
}

.lp-demo-field-key {
  font-size: 10px; font-weight: 700; letter-spacing: 0.08em;
  color: #475569; text-transform: uppercase; flex-shrink: 0;
}
.lp-demo-field-val {
  font-size: 13px; font-weight: 600; color: #E2E8F0;
  text-align: right;
}
.lp-demo-field-val--mono { font-family: 'DM Mono', monospace; color: #60A5FA; }

/* Confidence bar */
.lp-demo-confidence {
  display: flex; align-items: center; gap: 10px;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.lp-demo-confidence-label { font-size: 12px; color: #64748B; white-space: nowrap; }
.lp-demo-confidence-bar {
  flex: 1; height: 6px; background: rgba(255,255,255,0.08); border-radius: 99px; overflow: hidden;
}
.lp-demo-confidence-fill {
  height: 100%; width: 98%; background: linear-gradient(90deg, #10B981, #34D399);
  border-radius: 99px;
  animation: growBar 1s ease 0.5s both;
}
@keyframes growBar {
  from { width: 0; }
  to   { width: 98%; }
}
.lp-demo-confidence-pct { font-size: 13px; font-weight: 700; color: #10B981; }

/* Demo responsive */
@media (max-width: 900px) {
  .lp-demo-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .lp-scanner-frame { max-width: 360px; }
}
