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

/* Landing Page */
.lp {
  background: #fff;
  color: #111;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Nav */
.lp-nav {
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  padding: 0 2rem;
  height: 56px;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 10;
}
.lp-nav-logo {
  font-size: 1.15rem;
  font-weight: 800;
  color: #111;
  letter-spacing: -0.02em;
}
.lp-nav-logo-img {
  height: 40px;
  width: auto;
  display: block;
}

/* Hero logo */
.lp-hero-logo {
  width: min(280px, 60vw);
  height: auto;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.12));
}

/* Hero */
.lp-hero {
  background: linear-gradient(135deg, #f0f4ff 0%, #fafafa 60%);
  border-bottom: 1px solid #e5e7eb;
  padding: 5rem 1.5rem 4.5rem;
  text-align: center;
}
.lp-hero-inner {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.lp-eyebrow {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #6366f1;
}
.lp-title {
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #111;
}
.lp-tagline {
  font-size: 1.1rem;
  color: #4b5563;
  line-height: 1.7;
  max-width: 520px;
}

/* Form */
.lp-form {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
  width: 100%;
  max-width: 420px;
}
.lp-input {
  background: #fff;
  border: 1.5px solid #d1d5db;
  border-radius: 10px;
  color: #111;
  font-size: 1rem;
  padding: 0.8rem 1rem;
  width: 100%;
  outline: none;
  transition:
    border-color 0.15s,
    box-shadow 0.15s;
  text-align: center;
}
.lp-input:focus {
  border-color: #6366f1;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.12);
}
.lp-input::placeholder {
  color: #9ca3af;
}
.lp-cta {
  width: 100%;
  padding: 0.85rem 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 10px;
  background: #6366f1;
  color: #fff;
  border: none;
  cursor: pointer;
  transition:
    background 0.15s,
    transform 0.1s,
    box-shadow 0.15s;
  box-shadow: 0 2px 12px rgba(99, 102, 241, 0.35);
}
.lp-cta:hover:not(:disabled) {
  background: #4f52d9;
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(99, 102, 241, 0.45);
}
.lp-cta:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
.lp-error {
  color: #ef4444;
  font-size: 0.875rem;
  text-align: center;
}

/* Feature sections */
.lp-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
  padding: 5rem 2rem;
}
.lp-section--alt {
  flex-direction: row-reverse;
}
.lp-section--alt .lp-section-media {
  justify-content: flex-end;
}
@media (max-width: 700px) {
  .lp-section--alt .lp-section-text {
    order: -1;
  }
}
.lp-section--center {
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #f8f9ff;
  max-width: 100%;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}
.lp-section-text {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.lp-section-media {
  flex: 1 1 320px;
  display: flex;
  justify-content: flex-start;
}
.lp-section-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #6366f1;
}
.lp-section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: #111;
}
.lp-section-body {
  font-size: 1rem;
  color: #4b5563;
  line-height: 1.75;
  max-width: 440px;
}
.lp-section-body--wide {
  max-width: 600px;
}

/* Screenshots */
.lp-screenshot {
  border-radius: 16px;
  box-shadow:
    0 8px 40px rgba(0, 0, 0, 0.12),
    0 1px 4px rgba(0, 0, 0, 0.06);
  display: block;
}
.lp-screenshot--mobile {
  width: 100%;
  max-width: 240px;
  height: auto;
  margin: 0 auto;
}
.lp-screenshot--video {
  width: 100%;
  max-width: 700px;
  height: auto;
  display: block;
  transition: opacity 0.15s;
}

/* Stats */
.lp-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
  margin-top: 1rem;
}
.lp-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}
.lp-stat-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: #6366f1;
  letter-spacing: -0.03em;
  line-height: 1;
}
.lp-stat-label {
  font-size: 0.85rem;
  color: #6b7280;
  font-weight: 500;
}

/* Bottom CTA */
.lp-bottom-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 5rem 1.5rem;
  text-align: center;
  background: linear-gradient(135deg, #f0f4ff 0%, #fafafa 60%);
  border-top: 1px solid #e5e7eb;
}
.lp-bottom-cta .lp-form {
  max-width: 380px;
}

/* Video button */
.lp-video-btn {
  position: relative;
  background: none;
  border: none;
  padding: 0;
  cursor: zoom-in;
  display: block;
  width: 100%;
  max-width: 700px;
}
.lp-video-btn:hover .lp-video-zoom {
  opacity: 1;
}
.lp-video-btn:hover .lp-screenshot--video {
  opacity: 0.9;
}
.lp-video-zoom {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.15s;
  pointer-events: none;
}

/* Lightbox */
.lp-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  align-items: center;
  justify-content: center;
  z-index: 1000;
  cursor: zoom-out;
  padding: 1.5rem;
}
.lp-lightbox.is-open {
  display: flex;
}
.lp-lightbox-media {
  max-width: min(90vw, 1100px);
  max-height: 88vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
  cursor: default;
}
