* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  width: 100%;
}

:root {
  /* Navigation */
  --lp-nav-height: 72px;
  
  /* Brand palette */
  --lp-color-primary-700: #0b7a43;
  --lp-color-primary-600: #0f9d58;
  --lp-color-primary-500: #16a34a;
  --lp-color-primary-300: #6ee7b7;
  --lp-color-primary-100: #dcfce7;

  --lp-color-secondary-700: #1b3f91;
  --lp-color-secondary-600: #1d4ed8;
  --lp-color-secondary-500: #2563eb;
  --lp-color-secondary-300: #93c5fd;
  --lp-color-secondary-100: #dbeafe;

  --lp-color-accent-500: #22d3ee;
  --lp-color-accent-100: #cffafe;

  --lp-color-neutral-900: #0f172a;
  --lp-color-neutral-800: #1f2937;
  --lp-color-neutral-700: #334155;
  --lp-color-neutral-600: #475569;
  --lp-color-neutral-500: #64748b;
  --lp-color-neutral-300: #cbd5f5;
  --lp-color-neutral-200: #e2e8f0;
  --lp-color-neutral-100: #f8fafc;

  --lp-color-surface: #ffffff;
  --lp-color-surface-muted: #f3f7f5;
  --lp-color-surface-contrast: #0b1728;
  --lp-color-border: rgba(15, 23, 42, 0.08);
  --lp-color-border-strong: rgba(15, 23, 42, 0.18);

  --lp-color-text-primary: var(--lp-color-neutral-900);
  --lp-color-text-secondary: var(--lp-color-neutral-700);
  --lp-color-text-muted: var(--lp-color-neutral-500);

  --lp-radius-lg: 28px;
  --lp-radius-md: 20px;
  --lp-radius-sm: 12px;

  --lp-shadow-soft: 0 18px 40px -22px rgba(15, 157, 88, 0.45);
  --lp-shadow-strong: 0 28px 60px -28px rgba(29, 78, 216, 0.55);
  --lp-shadow-card: 0 18px 34px -24px rgba(15, 23, 42, 0.25);

  --lp-gradient-hero: linear-gradient(135deg, rgba(15, 157, 88, 0.18) 0%, rgba(37, 99, 235, 0.16) 50%, rgba(15, 23, 42, 0.12) 100%);
  --lp-gradient-card: linear-gradient(130deg, rgba(15, 157, 88, 0.12), rgba(37, 99, 235, 0.12));
  --lp-gradient-special: linear-gradient(135deg, #16a34a 0%, #2563eb 100%);
  --lp-gradient-ink: radial-gradient(circle at top left, rgba(37, 99, 235, 0.24), transparent 65%), radial-gradient(circle at bottom right, rgba(15, 157, 88, 0.28), transparent 60%);

  --lp-transition-base: 180ms cubic-bezier(0.4, 0, 0.2, 1);
  --lp-font-family: "Inter", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

body.lp-body {
  background: linear-gradient(160deg, #f6f8fb 0%, #f0f7f3 40%, #f8fbff 100%);
  color: var(--lp-color-text-primary);
  font-family: var(--lp-font-family);
  min-height: 100vh;
  letter-spacing: -0.01em;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  position: relative;
}

.lp-section {
  position: relative;
  background-color: var(--lp-color-surface);
  color: var(--lp-color-text-primary);
}

.lp-section-muted {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafb 50%, #f0f4f8 100%);
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.lp-section-ink {
  background: var(--lp-color-surface-contrast);
  color: #f8fafc;
}

.lp-section-ink a {
  color: #fff;
}

.lp-section-ink .lp-heading,
.lp-section-ink .lp-heading-inverse,
.lp-section-ink .lp-copy-strong {
  color: #f8fafc;
}

.lp-section-ink .lp-copy,
.lp-section-ink .lp-copy-muted {
  color: rgba(226, 232, 240, 0.88);
}

.lp-section-ink .lp-card {
  background: rgba(255, 255, 255, 0.98);
  color: var(--lp-color-text-primary);
}

.lp-section-ink .lp-badge-tonal {
  background: rgba(203, 253, 219, 0.16);
  border-color: rgba(203, 253, 219, 0.34);
  color: #e2fbe8;
}

.lp-section-hero {
  overflow: hidden;
}

.lp-section-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--lp-gradient-hero);
  opacity: 0.95;
}

.lp-section-hero > * {
  position: relative;
}

.lp-section-layered {
  position: relative;
  background: var(--lp-color-surface);
}

.lp-section-layered::before,
.lp-section-layered::after {
  content: "";
  position: absolute;
  border-radius: var(--lp-radius-lg);
  filter: blur(60px);
  opacity: 0.55;
  transform: rotate(-3deg);
  pointer-events: none;
}

.lp-section-layered::before {
  inset: -20% auto auto 0;
  width: 55%;
  height: 60%;
  background: rgba(15, 157, 88, 0.25);
}

.lp-section-layered::after {
  inset: auto 0 -5% auto;
  width: 45%;
  height: 55%;
  background: rgba(37, 99, 235, 0.3);
}

.lp-eyebrow {
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--lp-color-secondary-600);
}

.lp-heading {
  color: var(--lp-color-text-primary);
  letter-spacing: -0.02em;
}

.lp-heading-inverse {
  color: #ffffff;
}

.lp-copy {
  color: var(--lp-color-text-secondary);
  font-size: 1rem;
  line-height: 1.7;
}

.lp-copy-strong {
  color: var(--lp-color-text-primary);
}

.lp-copy-muted {
  color: var(--lp-color-text-muted);
}

.lp-chip,
.lp-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.325rem 0.9rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid transparent;
}

.lp-badge-tonal {
  background: rgba(15, 157, 88, 0.12);
  color: var(--lp-color-primary-600);
  border-color: rgba(15, 157, 88, 0.2);
}

.lp-badge-muted {
  background: rgba(15, 23, 42, 0.05);
  color: var(--lp-color-text-secondary);
  border-color: rgba(15, 23, 42, 0.08);
}

.lp-chip {
  background: rgba(255, 255, 255, 0.55);
  border-color: rgba(148, 163, 184, 0.35);
  color: var(--lp-color-text-secondary);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.lp-card {
  position: relative;
  background: var(--lp-color-surface);
  border-radius: var(--lp-radius-lg);
  border: 1px solid var(--lp-color-border);
  box-shadow: var(--lp-shadow-card);
  padding: 1.75rem;
  transition: transform var(--lp-transition-base), box-shadow var(--lp-transition-base);
}

.lp-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 60px -32px rgba(15, 23, 42, 0.45);
}

.lp-card-tonal {
  background: var(--lp-gradient-card);
  border-color: transparent;
  color: var(--lp-color-text-primary);
}

.lp-card-muted {
  background: rgba(248, 250, 252, 0.85);
}

.lp-card svg {
  padding: 1rem;
}

/* Exception: pricing checkmarks should not have padding */
.lp-card svg.w-5 {
  padding: 0;
}

.lp-feature-card {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  padding: 1.75rem;
}

.lp-feature-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lp-color-secondary-600);
}

.lp-step-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lp-color-primary-600);
}

/* How It Works Flow Styles */
.lp-flow-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lp-flow-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 2.5rem 2rem;
  background: var(--lp-gradient-card);
  border-radius: var(--lp-radius-lg);
  border: 1px solid rgba(37, 99, 235, 0.1);
  box-shadow: 0 8px 32px -8px rgba(15, 23, 42, 0.12);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.lp-flow-step:hover .lp-flow-card {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px -12px rgba(37, 99, 235, 0.25);
  border-color: rgba(37, 99, 235, 0.3);
}

.lp-flow-icon {
  position: relative;
  width: 7rem;
  height: 7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(22, 163, 74, 0.08), rgba(37, 99, 235, 0.12));
  border: 2px solid rgba(37, 99, 235, 0.2);
  transition: all 0.4s ease;
}

.lp-flow-step:hover .lp-flow-icon {
  background: linear-gradient(135deg, rgba(22, 163, 74, 0.15), rgba(37, 99, 235, 0.25));
  border-color: rgba(37, 99, 235, 0.4);
  transform: scale(1.05);
}

.lp-flow-icon svg {
  width: 4rem;
  height: 4rem;
}

.lp-flow-svg-base {
  stroke: var(--lp-color-primary-600);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lp-flow-svg-accent {
  fill: var(--lp-color-primary-600);
  stroke: none;
}

.lp-flow-svg-connection {
  stroke: var(--lp-color-primary-600);
  opacity: 0.3;
}

.lp-flow-number {
  position: absolute;
  top: -0.75rem;
  right: -0.75rem;
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--lp-gradient-special);
  border-radius: 50%;
  box-shadow: 0 8px 16px -4px rgba(37, 99, 235, 0.4);
  z-index: 10;
}

.lp-flow-number-inner {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
}

/* Flow Arrows */
.lp-flow-arrow {
  position: absolute;
  right: -3.5rem;
  top: 7.5rem;
  width: 5rem;
  color: rgba(37, 99, 235, 0.3);
  z-index: 5;
}

.lp-flow-arrow-path {
  animation: lp-arrow-flow 2s ease-in-out infinite;
}

/* Flow Line Pulse */
.lp-flow-pulse {
  animation: lp-pulse-flow 3s ease-in-out infinite;
}

@keyframes lp-pulse-flow {
  0%, 100% {
    transform: translateX(-100%);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}

@keyframes lp-arrow-flow {
  0%, 100% {
    opacity: 0.3;
    transform: translateX(0);
  }
  50% {
    opacity: 0.8;
    transform: translateX(5px);
  }
}

/* Icon-specific animations */
.lp-flow-data-stream {
  animation: lp-data-pulse 2s ease-in-out infinite;
}

@keyframes lp-data-pulse {
  0%, 100% {
    opacity: 0.3;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(-3px);
  }
}

.lp-flow-neural-pulse circle {
  animation: lp-neural-pulse 1.5s ease-in-out infinite;
}

.lp-flow-neural-pulse circle:nth-child(1) { animation-delay: 0s; }
.lp-flow-neural-pulse circle:nth-child(2) { animation-delay: 0.2s; }
.lp-flow-neural-pulse circle:nth-child(3) { animation-delay: 0.4s; }
.lp-flow-neural-pulse circle:nth-child(4) { animation-delay: 0.6s; }

@keyframes lp-neural-pulse {
  0%, 100% {
    opacity: 0.4;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

.lp-flow-lightning {
  animation: lp-lightning-flash 2s ease-in-out infinite;
}

@keyframes lp-lightning-flash {
  0%, 90%, 100% {
    opacity: 1;
  }
  93%, 97% {
    opacity: 0.3;
  }
  95% {
    opacity: 1;
  }
}

.lp-flow-ripple circle {
  animation: lp-ripple-expand 2s ease-out infinite;
}

.lp-flow-ripple circle:nth-child(2) {
  animation-delay: 0.3s;
}

@keyframes lp-ripple-expand {
  0% {
    opacity: 0.6;
    transform: scale(0.9);
  }
  100% {
    opacity: 0;
    transform: scale(1.1);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .lp-flow-icon {
    width: 5.5rem;
    height: 5.5rem;
  }
  
  .lp-flow-icon svg {
    width: 3rem;
    height: 3rem;
  }
  
  .lp-flow-card {
    padding: 2rem 1.5rem;
  }
}

/* How It Works - Detailed Feature Styles */
.lp-section-features {
  position: relative;
  background: linear-gradient(180deg, #f8fafb 0%, #ffffff 20%, #f9fafb 60%, #f3f6f9 100%);
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  overflow: hidden;
}

.lp-section-features::before {
  content: "";
  position: absolute;
  top: -15%;
  left: -8%;
  width: 45%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(15, 157, 88, 0.09), transparent 65%);
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  opacity: 0.8;
}

.lp-section-features::after {
  content: "";
  position: absolute;
  bottom: -15%;
  right: -8%;
  width: 50%;
  height: 65%;
  background: radial-gradient(ellipse, rgba(37, 99, 235, 0.11), transparent 65%);
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  opacity: 0.8;
}

.lp-how-feature {
  position: relative;
  z-index: 1;
}

.lp-how-feature-reverse .lp-screenshot-frame {
  order: 1;
}

.lp-how-feature-reverse > div > div:first-child {
  order: 2;
}

.lp-how-icon-wrapper {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 1.25rem;
  background: linear-gradient(135deg, rgba(22, 163, 74, 0.12), rgba(37, 99, 235, 0.18));
  border: 1.5px solid rgba(37, 99, 235, 0.2);
  transition: all 0.3s ease;
}

.lp-how-feature:hover .lp-how-icon-wrapper {
  background: linear-gradient(135deg, rgba(22, 163, 74, 0.2), rgba(37, 99, 235, 0.3));
  border-color: rgba(37, 99, 235, 0.4);
  transform: scale(1.05);
}

/* Dashboard - Dark */
.lp-how-feature:nth-child(1) .lp-how-icon-wrapper {
  background: linear-gradient(135deg, rgba(51, 65, 85, 0.12), rgba(71, 85, 105, 0.18));
  border-color: rgba(71, 85, 105, 0.25);
}

.lp-how-feature:nth-child(1):hover .lp-how-icon-wrapper {
  background: linear-gradient(135deg, rgba(51, 65, 85, 0.2), rgba(71, 85, 105, 0.3));
  border-color: rgba(71, 85, 105, 0.4);
}

.lp-how-feature:nth-child(1) .lp-how-icon {
  color: #475569;
}

/* Heavy Load - Green */
.lp-how-feature:nth-child(2) .lp-how-icon-wrapper {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.12), rgba(5, 150, 105, 0.18));
  border-color: rgba(16, 185, 129, 0.25);
}

.lp-how-feature:nth-child(2):hover .lp-how-icon-wrapper {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(5, 150, 105, 0.3));
  border-color: rgba(16, 185, 129, 0.4);
}

.lp-how-feature:nth-child(2) .lp-how-icon {
  color: #059669;
}

/* Maintenance - Blue */
.lp-how-feature:nth-child(3) .lp-how-icon-wrapper {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(29, 78, 216, 0.18));
  border-color: rgba(37, 99, 235, 0.25);
}

.lp-how-feature:nth-child(3):hover .lp-how-icon-wrapper {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.2), rgba(29, 78, 216, 0.3));
  border-color: rgba(37, 99, 235, 0.4);
}

.lp-how-feature:nth-child(3) .lp-how-icon {
  color: #2563eb;
}

/* Battery - Purple */
.lp-how-feature:nth-child(4) .lp-how-icon-wrapper {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.12), rgba(147, 51, 234, 0.18));
  border-color: rgba(168, 85, 247, 0.25);
}

.lp-how-feature:nth-child(4):hover .lp-how-icon-wrapper {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(147, 51, 234, 0.3));
  border-color: rgba(168, 85, 247, 0.4);
}

.lp-how-feature:nth-child(4) .lp-how-icon {
  color: #a855f7;
}

/* Reports - Accent (Cyan) */
.lp-how-feature:nth-child(5) .lp-how-icon-wrapper {
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.12), rgba(6, 182, 212, 0.18));
  border-color: rgba(34, 211, 238, 0.25);
}

.lp-how-feature:nth-child(5):hover .lp-how-icon-wrapper {
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.2), rgba(6, 182, 212, 0.3));
  border-color: rgba(34, 211, 238, 0.4);
}

.lp-how-feature:nth-child(5) .lp-how-icon {
  color: #06b6d4;
}

.lp-how-icon {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--lp-color-primary-600);
}

.lp-icon-stroke {
  stroke: currentColor;
  fill: none;
}

.lp-icon-accent {
  stroke: currentColor;
  opacity: 0.8;
}

.lp-icon-pulse {
  fill: var(--lp-color-primary-600);
  animation: lp-icon-pulse 2s ease-in-out infinite;
}

@keyframes lp-icon-pulse {
  0%, 100% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}

.lp-icon-bar {
  animation: lp-bar-grow 1.5s ease-in-out infinite;
}

.lp-icon-bar:nth-child(1) {
  animation-delay: 0s;
}

.lp-icon-bar:nth-child(2) {
  animation-delay: 0.3s;
}

@keyframes lp-bar-grow {
  0%, 100% {
    transform: scaleY(0.9);
    opacity: 0.7;
  }
  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}

.lp-icon-dot {
  animation: lp-dot-blink 2s ease-in-out infinite;
}

@keyframes lp-dot-blink {
  0%, 100% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
}

.lp-icon-charge {
  animation: lp-charge-flow 2s linear infinite;
}

@keyframes lp-charge-flow {
  0% {
    stroke-dasharray: 0 40;
  }
  100% {
    stroke-dasharray: 40 0;
  }
}

.lp-icon-bolt {
  animation: lp-bolt-flash 1.5s ease-in-out infinite;
}

@keyframes lp-bolt-flash {
  0%, 80%, 100% {
    opacity: 1;
  }
  85%, 95% {
    opacity: 0.3;
  }
}

.lp-icon-check {
  stroke-dasharray: 30;
  stroke-dashoffset: 30;
  animation: lp-check-draw 2s ease forwards infinite;
}

@keyframes lp-check-draw {
  0% {
    stroke-dashoffset: 30;
  }
  50%, 100% {
    stroke-dashoffset: 0;
  }
}

.lp-icon-badge {
  animation: lp-badge-pop 3s ease-in-out infinite;
}

@keyframes lp-badge-pop {
  0%, 100% {
    transform: scale(1);
    opacity: 0.9;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
}

.lp-step-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--lp-color-primary-600);
  background: rgba(22, 163, 74, 0.1);
  border-radius: 999px;
  margin-bottom: 0.5rem;
}

.lp-feature-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 999px;
  margin-bottom: 0.5rem;
  border: 1px solid transparent;
}

.lp-feature-badge-dark {
  color: #f8fafc;
  background: linear-gradient(135deg, #1e293b, #334155);
  border-color: rgba(148, 163, 184, 0.3);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.2);
}

.lp-feature-badge-green {
  color: #065f46;
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.3);
}

.lp-feature-badge-blue {
  color: #1e3a8a;
  background: rgba(37, 99, 235, 0.12);
  border-color: rgba(37, 99, 235, 0.3);
}

.lp-feature-badge-purple {
  color: #581c87;
  background: rgba(168, 85, 247, 0.12);
  border-color: rgba(168, 85, 247, 0.3);
}

.lp-feature-badge-accent {
  color: #0e7490;
  background: rgba(34, 211, 238, 0.12);
  border-color: rgba(34, 211, 238, 0.3);
}

.lp-how-title {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--lp-color-text-primary);
  margin-top: 0.5rem;
  line-height: 1.3;
}

/* Screenshot Frames */
.lp-screenshot-frame {
  position: relative;
  border-radius: var(--lp-radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, rgba(15, 157, 88, 0.04), rgba(37, 99, 235, 0.06));
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 12px 40px -12px rgba(15, 23, 42, 0.18);
  transition: all 0.4s ease;
}

.lp-screenshot-frame:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px -15px rgba(37, 99, 235, 0.3);
  border-color: rgba(37, 99, 235, 0.2);
}

.lp-screenshot-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.lp-screenshot-caption {
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--lp-color-text-secondary);
  background: rgba(248, 250, 252, 0.8);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  text-align: center;
}

.lp-screenshot-mini {
  box-shadow: 0 8px 24px -8px rgba(15, 23, 42, 0.12);
}

.lp-screenshot-mini .lp-screenshot-caption {
  padding: 0.5rem 0.75rem;
  font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 768px) {
  .lp-how-title {
    font-size: 1.5rem;
  }
  
  .lp-how-icon-wrapper {
    width: 3.5rem;
    height: 3.5rem;
  }
  
  .lp-how-icon {
    width: 2rem;
    height: 2rem;
  }
  
  .lp-how-feature-reverse .lp-screenshot-frame,
  .lp-how-feature-reverse > div > div:first-child {
    order: initial;
  }
}

.lp-feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 1.2rem;
  background: linear-gradient(135deg, rgba(22, 163, 74, 0.16), rgba(37, 99, 235, 0.22));
  color: var(--lp-color-primary-600);
  box-shadow: 0 18px 28px -22px rgba(15, 157, 88, 0.55);
  transition: transform var(--lp-transition-base), box-shadow var(--lp-transition-base);
}

.lp-feature-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

/* Enhanced feature card animations */
.lp-feature-card-animated {
  overflow: hidden;
  position: relative;
}

.lp-feature-card-animated::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, rgba(22, 163, 74, 0.15), rgba(37, 99, 235, 0.15));
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.lp-feature-card-animated:hover::before {
  opacity: 1;
}

.lp-feature-card-animated:hover .lp-feature-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 22px 36px -20px rgba(15, 157, 88, 0.75);
}

/* SVG layer animations for data icon */
.lp-icon-data .lp-svg-layer-1 {
  animation: pulse-layer 2s ease-in-out infinite;
}

.lp-icon-data .lp-svg-layer-2 {
  animation: pulse-layer 2s ease-in-out 0.3s infinite;
}

.lp-icon-data .lp-svg-layer-3 {
  animation: pulse-layer 2s ease-in-out 0.6s infinite;
}

@keyframes pulse-layer {
  0%, 100% {
    opacity: 1;
    transform: translateY(0);
  }
  50% {
    opacity: 0.6;
    transform: translateY(-2px);
  }
}

/* AI chart icon animations */
.lp-icon-ai .lp-svg-chart-line {
  stroke-dasharray: 20;
  stroke-dashoffset: 20;
  animation: draw-line 2s ease-in-out infinite;
}

.lp-icon-ai .lp-svg-point {
  animation: pulse-point 1.5s ease-in-out infinite;
}

@keyframes draw-line {
  0% {
    stroke-dashoffset: 20;
  }
  50%, 100% {
    stroke-dashoffset: 0;
  }
}

@keyframes pulse-point {
  0%, 100% {
    opacity: 1;
    r: 1.5;
  }
  50% {
    opacity: 0.7;
    r: 2;
  }
}

/* Plug icon animations */
.lp-icon-plug .lp-svg-plug-pins {
  animation: pins-bounce 1.8s ease-in-out infinite;
}

.lp-icon-plug .lp-svg-plug-body {
  animation: body-float 2s ease-in-out infinite;
}

.lp-icon-plug .lp-svg-plug-cord {
  animation: cord-sway 2.5s ease-in-out infinite;
  transform-origin: center top;
}

@keyframes pins-bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2px);
  }
}

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

@keyframes cord-sway {
  0%, 100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(2deg);
  }
  75% {
    transform: rotate(-2deg);
  }
}

.lp-number-badge {
  display: inline-flex;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: #ffffff;
  background: var(--lp-gradient-special);
  box-shadow: 0 16px 28px -18px rgba(37, 99, 235, 0.55);
}

.lp-section-ink .lp-button-primary {
  background: var(--lp-color-primary-600);
  color: #ffffff;
  box-shadow: var(--lp-shadow-soft);
}

.lp-section-ink .lp-button-primary:hover {
  background: var(--lp-color-primary-700);
  transform: translateY(-2px);
}

.lp-section-ink .lp-button-special {
  background: var(--lp-gradient-special);
  color: #ffffff;
  box-shadow: var(--lp-shadow-strong);
}

.lp-section-ink .lp-button-special:hover {
  transform: translateY(-3px) scale(1.01);
}

.lp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.1;
  border: 1px solid transparent;
  transition: transform var(--lp-transition-base), box-shadow var(--lp-transition-base), background-color var(--lp-transition-base), border-color var(--lp-transition-base);
  cursor: pointer;
}

.lp-button-primary {
  background: var(--lp-color-primary-600);
  color: #ffffff;
  box-shadow: var(--lp-shadow-soft);
}

.lp-button-primary:hover {
  background: var(--lp-color-primary-700);
  transform: translateY(-2px);
}

.lp-button-primary:focus-visible {
  outline: 3px solid rgba(34, 197, 94, 0.35);
  outline-offset: 3px;
}

.lp-button-secondary {
  background: rgba(37, 99, 235, 0.12);
  color: var(--lp-color-secondary-600);
  border-color: rgba(37, 99, 235, 0.32);
}

.lp-button-secondary:hover {
  background: rgba(37, 99, 235, 0.18);
  transform: translateY(-1px);
}

.lp-button-outline {
  background: transparent;
  color: var(--lp-color-text-primary);
  border-color: rgba(15, 23, 42, 0.18);
}

.lp-button-outline:hover {
  background: rgba(15, 23, 42, 0.06);
}

.lp-section-ink .lp-button-outline {
  color: #f8fafc;
  border-color: rgba(255, 255, 255, 0.4);
}

.lp-section-ink .lp-button-outline:hover {
  background: rgba(248, 250, 252, 0.15);
}

.lp-button-ghost {
  background: transparent;
  color: var(--lp-color-secondary-600);
}

.lp-button-ghost:hover {
  color: var(--lp-color-secondary-700);
}

.lp-button-special {
  background: var(--lp-gradient-special);
  color: #ffffff;
  box-shadow: var(--lp-shadow-strong);
  position: relative;
  overflow: hidden;
}

.lp-button-special::after {
  content: "";
  position: absolute;
  inset: -140% -30%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0));
  transform: translateX(-60%);
  transition: transform 600ms ease;
}

.lp-button-special:hover::after {
  transform: translateX(60%);
}

.lp-button-special:hover {
  transform: translateY(-3px) scale(1.01);
}

.lp-button-special:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.4);
  outline-offset: 4px;
}

.lp-link {
  color: var(--lp-color-secondary-600);
  font-weight: 600;
}

.lp-link:hover {
  color: var(--lp-color-secondary-700);
}

.lp-divider {
  height: 1px;
  background: linear-gradient(90deg, rgba(15, 157, 88, 0), rgba(15, 157, 88, 0.25), rgba(37, 99, 235, 0));
}

.lp-cta-surface {
  background: linear-gradient(135deg, rgba(15, 157, 88, 0.12), rgba(37, 99, 235, 0.18));
  border-radius: var(--lp-radius-lg);
  padding: 3rem 3.5rem;
  text-align: center;
  box-shadow: 0 36px 60px -24px rgba(37, 99, 235, 0.3);
}

.lp-grid-thread {
  position: relative;
}

.lp-grid-thread::before,
.lp-grid-thread::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--lp-radius-md);
  background: conic-gradient(from 120deg at 0% 0%, rgba(15, 157, 88, 0.08), rgba(3, 7, 18, 0));
  mix-blend-mode: multiply;
  pointer-events: none;
}

.lp-grid-thread::after {
  background: conic-gradient(from -60deg at 100% 100%, rgba(37, 99, 235, 0.08), rgba(3, 7, 18, 0));
  mix-blend-mode: screen;
}

.lp-stacked-img {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid rgba(15, 157, 88, 0.22);
  box-shadow: 0 32px 60px -28px rgba(15, 157, 88, 0.35);
}

.lp-stacked-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 157, 88, 0), rgba(15, 157, 88, 0.25));
  pointer-events: none;
}

.lp-stats-capsule {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 1.15rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.04);
  color: var(--lp-color-text-secondary);
  border: 1px solid rgba(15, 23, 42, 0.08);
  font-size: 0.875rem;
  font-weight: 600;
}

#solution {
  min-height: calc(100vh - var(--lp-nav-height));
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lp-solution-compact-card {
  padding: 2rem;
  background: linear-gradient(135deg, rgba(15, 157, 88, 0.06), rgba(37, 99, 235, 0.06));
  border-radius: var(--lp-radius-lg);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--lp-shadow-card);
  transition: none;
}

.lp-solution-compact-card:hover {
  transform: none;
  box-shadow: var(--lp-shadow-card);
}

.lp-solution-compact-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .lp-solution-compact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.lp-solution-compact-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.lp-solution-compact-header {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.lp-solution-compact-title {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--lp-color-text-primary);
  line-height: 1.3;
}

.lp-solution-compact-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem 0;
  overflow: hidden;
}

.lp-solution-compact-svg {
  width: 100%;
  max-width: 420px;
  height: auto;
  display: block;
  overflow: visible;
  padding: 0.75rem;
}

.lp-solution-compact-card svg {
  padding: 1rem;
}

.lp-badge-warning {
  background: rgba(251, 191, 36, 0.14);
  color: #78350f;
  border: 1px solid rgba(251, 191, 36, 0.3);
}

.lp-badge-success {
  background: rgba(34, 197, 94, 0.14);
  color: #14532d;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.lp-badge-accent {
  background: rgba(34, 211, 238, 0.16);
  color: #0f172a;
  border-color: rgba(34, 211, 238, 0.25);
}

.lp-dot {
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: var(--lp-color-primary-300);
}

.lp-section-ink .lp-dot {
  background: rgba(203, 253, 219, 0.8);
}

.lp-quote {
  position: relative;
  padding: 2.5rem;
  border-radius: var(--lp-radius-md);
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--lp-shadow-card);
}

.lp-quote::before {
  content: "\201C";
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  font-size: 4rem;
  line-height: 1;
  color: rgba(37, 99, 235, 0.2);
  font-family: Georgia, serif;
}

.lp-faq {
  border-radius: var(--lp-radius-md);
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.92);
  padding: 1.75rem;
}

.lp-faq summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--lp-color-text-primary);
}

.lp-faq summary:hover {
  color: var(--lp-color-primary-600);
}

.lp-faq + .lp-faq {
  margin-top: 1rem;
}

.lp-faq-toggle {
  display: inline-flex;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(15, 23, 42, 0.12);
  color: var(--lp-color-text-muted);
  transition: background var(--lp-transition-base), color var(--lp-transition-base), border-color var(--lp-transition-base), transform var(--lp-transition-base);
}

.lp-faq-toggle.is-open {
  background: rgba(34, 197, 94, 0.12);
  color: var(--lp-color-primary-600);
  border-color: rgba(34, 197, 94, 0.32);
  transform: rotate(90deg);
}

.lp-nav {
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(148, 163, 184, 0.22);
  color: var(--lp-color-text-primary);
  transition: background var(--lp-transition-base), box-shadow var(--lp-transition-base), border-color var(--lp-transition-base), color var(--lp-transition-base);
}

.lp-nav.lp-nav-scrolled {
  background: rgba(10, 25, 40, 0.94);
  border-color: rgba(15, 23, 42, 0.55);
  color: #f8fafc;
  box-shadow: 0 18px 36px -18px rgba(15, 23, 42, 0.45);
}

.lp-nav-brand img {
  transition: transform var(--lp-transition-base);
}

.lp-nav.lp-nav-scrolled .lp-nav-brand img {
  transform: scale(0.95);
}

.lp-nav-links a {
  color: inherit;
  transition: color var(--lp-transition-base);
}

.lp-nav:not(.lp-nav-scrolled) .lp-nav-links a:hover {
  color: var(--lp-color-primary-600);
}

.lp-nav.lp-nav-scrolled .lp-nav-links a:hover {
  color: rgba(203, 253, 219, 0.9);
}

.lp-nav-language {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.24);
  padding: 0.4rem 0.95rem;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: border-color var(--lp-transition-base), background var(--lp-transition-base), color var(--lp-transition-base);
}

.lp-nav.lp-nav-scrolled .lp-nav-language {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(15, 23, 42, 0.65);
  color: #e2fbe8;
}

.lp-nav:not(.lp-nav-scrolled) .lp-nav-language {
  background: rgba(255, 255, 255, 0.75);
  color: var(--lp-color-text-secondary);
}

.lp-nav-language select {
  background: transparent;
  border: none;
  color: inherit;
  font-weight: 600;
}

.lp-nav-language select option {
  background: #bbd6bc;
  color: var(--lp-color-text-primary);
}

.lp-nav-actions .lp-button {
  font-size: 0.9rem;
  padding: 0.7rem 1.3rem;
}

.lp-nav-scrolled .lp-button-outline {
  color: #f8fafc;
  border-color: rgba(255, 255, 255, 0.35);
}

.lp-nav-scrolled .lp-button-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.lp-nav-mobile {
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid rgba(148, 163, 184, 0.24);
  backdrop-filter: blur(12px);
  color: var(--lp-color-text-primary);
}

.lp-nav-mobile a {
  color: inherit;
}

.lp-nav-mobile a:hover {
  background: rgba(34, 197, 94, 0.12);
  color: var(--lp-color-primary-600);
}

.lp-nav-toggle {
  width: 2.5rem;
  height: 2.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  color: var(--lp-color-text-secondary);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 24px -14px rgba(15, 23, 42, 0.3);
  transition: background var(--lp-transition-base), color var(--lp-transition-base), border-color var(--lp-transition-base), box-shadow var(--lp-transition-base);
}

.lp-nav-toggle.is-open {
  background: rgba(10, 25, 40, 0.92);
  border-color: rgba(8, 47, 73, 0.6);
  color: #f8fafc;
  box-shadow: 0 18px 34px -18px rgba(15, 23, 42, 0.45);
}

@media (prefers-reduced-motion: reduce) {
  .lp-button,
  .lp-card {
    transition: none;
  }

  .lp-button-special::after {
    display: none;
  }
}

:root{
  --lp-color-danger-500:#ef4444;
  --lp-color-warning-500:#f59e0b;
}
svg text{font-family:var(--lp-font-family)}

/* Scroll-up / Back-to-top button - polished, accessible */
#back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, #00bfa5 0%, #00d4b8 100%);
  color: #fff;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12), 0 2px 6px rgba(0,0,0,0.06);
  font-size: 1.15rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px) scale(0.98);
  transition: opacity 260ms cubic-bezier(.2,.9,.3,1), transform 260ms cubic-bezier(.2,.9,.3,1), visibility 260ms;
  -webkit-tap-highlight-color: transparent;
  backdrop-filter: blur(6px);
}

/* Visible state */
#back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

/* Hover & active */
#back-to-top:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 28px rgba(0,0,0,0.16);
}
#back-to-top:active {
  transform: translateY(-1px) scale(0.995);
}

/* Focus for keyboard users */
#back-to-top:focus {
  outline: 3px solid rgba(124,58,237,0.18);
  outline-offset: 4px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

/* Smaller on narrow screens to avoid occlusion */
@media (max-width: 600px) {
  #back-to-top {
    bottom: 18px;
    right: 18px;
    width: 44px;
    height: 44px;
    font-size: 1.05rem;
  }
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  #back-to-top,
  #back-to-top.show {
    transition: none;
    transform: none;
  }
}
