:root {
  --lp-bg: #0c0f14;
  --lp-surface: #151a22;
  --lp-text: #e8ecf2;
  --lp-muted: #8b95a8;
  --lp-accent: #f59e0b;
  --lp-accent-dim: #d97706;
  --lp-border: rgba(255, 255, 255, 0.08);
  --lp-max: 1120px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body.lp {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", "Hiragino Sans", sans-serif;
  background: var(--lp-bg);
  color: var(--lp-text);
  line-height: 1.6;
}

.lp-nav {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--lp-bg);
  max-width: var(--lp-max);
  margin: 0 auto;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--lp-border);
}

.lp-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  z-index: 12;
}

.lp-logo-img {
  display: block;
  height: 36px;
  width: auto;
  object-fit: contain;
}

.lp-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 8px;
  z-index: 12;
  transition: background 0.2s;
}

.lp-nav-toggle:hover {
  background: rgba(255, 255, 255, 0.06);
}

.lp-nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--lp-text);
  border-radius: 1px;
  transition: transform 0.25s, opacity 0.25s;
}

.lp-nav-toggle[aria-expanded="true"] .lp-nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.lp-nav-toggle[aria-expanded="true"] .lp-nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.lp-nav-toggle[aria-expanded="true"] .lp-nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.lp-nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.9rem;
}

.lp-nav-divider {
  display: none;
  width: 1px;
  height: 1.5em;
  background: var(--lp-border);
}

.lp-nav-link-sub {
  color: var(--lp-muted);
  font-size: 0.85rem;
}

.lp-nav-links a {
  color: var(--lp-muted);
  text-decoration: none;
  white-space: nowrap;
}

.lp-nav-links a:hover {
  color: var(--lp-text);
}

.lp-nav-cta {
  color: var(--lp-bg) !important;
  background: var(--lp-accent);
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  font-weight: 600;
}

.lp-nav-cta:hover {
  background: var(--lp-accent-dim);
}

.lp-nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  z-index: 10;
  transition: opacity 0.25s;
}

@media (max-width: 768px) {
  .lp-nav-toggle {
    display: flex;
  }

  .lp-nav-links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 85vw);
    background: var(--lp-surface);
    border-left: 1px solid var(--lp-border);
    flex-direction: column;
    align-items: stretch;
    padding: 5rem 1.5rem 2rem;
    gap: 0;
    z-index: 11;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.4);
  }

  .lp-nav-links.is-open {
    transform: translateX(0);
  }

  .lp-nav-links .lp-nav-link,
  .lp-nav-links .lp-nav-cta {
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--lp-border);
    font-size: 1rem;
  }

  .lp-nav-divider {
    display: block;
    height: 1px;
    width: 100%;
    margin: 0.5rem 0;
    background: var(--lp-border);
  }

  .lp-nav-links .lp-nav-link-sub {
    font-size: 0.9rem;
    padding: 0.6rem 0;
  }

  .lp-nav-cta {
    margin-top: 1rem;
    text-align: center;
  }

  .lp-nav-backdrop.is-visible {
    display: block;
    opacity: 1;
    pointer-events: auto;
  }
}

.lp-hero {
  position: relative;
  max-width: var(--lp-max);
  margin: 0 auto;
  padding: 3rem 1.25rem 4rem;
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  align-items: center;
  overflow: hidden;
}

@media (min-width: 900px) {
  .lp-hero {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.lp-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.lp-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
  filter: saturate(0.85);
}

.lp-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(12, 15, 20, 0.94) 0%, rgba(12, 15, 20, 0.75) 55%, transparent 100%);
}

.lp-hero-inner,
.lp-hero-photo {
  position: relative;
  z-index: 1;
}

.lp-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  color: var(--lp-accent);
  margin: 0 0 0.75rem;
}

.lp-hero h1 {
  font-size: clamp(1.85rem, 4vw, 2.65rem);
  line-height: 1.2;
  margin: 0 0 1rem;
  font-weight: 800;
}

.lp-lead {
  color: var(--lp-muted);
  max-width: 36rem;
  margin: 0 0 1.75rem;
  font-size: 1.05rem;
}

.lp-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.lp-btn {
  display: inline-block;
  padding: 0.65rem 1.25rem;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  border: 1px solid transparent;
}

.lp-btn-primary {
  background: var(--lp-accent);
  color: #111;
}

.lp-btn-primary:hover {
  background: var(--lp-accent-dim);
}

.lp-btn-ghost {
  border-color: var(--lp-border);
  color: var(--lp-text);
  background: rgba(255, 255, 255, 0.04);
}

.lp-hero-photo {
  min-height: 0;
  align-self: start;
}

.lp-hero-photo img {
  width: 100%;
  max-width: 520px;
  height: auto;
  aspect-ratio: 520/360;
  object-fit: cover;
  object-position: center;
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  display: block;
  margin: 0 auto;
}

.lp-problem,
.lp-features,
.lp-generic,
.lp-split {
  max-width: var(--lp-max);
  margin: 0 auto;
  padding: 3.5rem 1.25rem;
}

.lp-generic {
  border-top: 1px solid var(--lp-border);
}

.lp-generic h2 {
  font-size: 1.65rem;
  margin: 0 0 0.75rem;
  text-align: center;
}

.lp-generic-lead {
  text-align: center;
  color: var(--lp-muted);
  max-width: 40rem;
  margin: 0 auto 1.5rem;
  font-size: 1.05rem;
}

.lp-generic-list {
  max-width: 560px;
  margin: 0 auto;
  padding: 0 0 0 1.25rem;
  color: var(--lp-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.lp-generic-list li {
  margin-bottom: 0.75rem;
}

.lp-generic-list li strong {
  color: var(--lp-text);
}

.lp-problem {
  display: grid;
  gap: 2rem;
  align-items: center;
  border-top: 1px solid var(--lp-border);
}

@media (min-width: 800px) {
  .lp-problem {
    grid-template-columns: 1fr 1fr;
  }
}

.lp-problem h2,
.lp-features h2,
.lp-split-copy h2 {
  font-size: 1.65rem;
  margin: 0 0 1rem;
}

.lp-problem p,
.lp-split-copy p {
  color: var(--lp-muted);
  margin: 0;
}

.lp-problem-img,
.lp-split-img {
  min-height: 0;
  align-self: start;
}

.lp-problem-img img,
.lp-split-img img {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 14px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
  display: block;
}

.lp-split-img img {
  aspect-ratio: 3/2;
}
.lp-problem-img img {
  aspect-ratio: 560/380;
}

.lp-features {
  background: var(--lp-surface);
  border-radius: 20px;
  max-width: calc(var(--lp-max) + 2.5rem);
  margin-left: auto;
  margin-right: auto;
}

.lp-features h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.lp-feature-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 600px) {
  .lp-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .lp-feature-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.lp-card {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--lp-border);
  border-radius: 14px;
  padding: 1rem;
}

.lp-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 0.75rem;
}

.lp-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.lp-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--lp-muted);
}

.lp-split {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 800px) {
  .lp-split {
    grid-template-columns: 1fr 1fr;
  }
}

.lp-note {
  font-size: 0.85rem;
  color: var(--lp-muted);
  margin-top: 1rem;
}

.lp-note code {
  background: rgba(255, 255, 255, 0.08);
  padding: 0.1rem 0.35rem;
  border-radius: 4px;
  font-size: 0.9em;
}

.lp-gallery {
  max-width: var(--lp-max);
  margin: 0 auto;
  padding: 0 1.25rem 3rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 700px) {
  .lp-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}

.lp-gallery figure {
  margin: 0;
}

.lp-gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
}

.lp-pricing {
  max-width: var(--lp-max);
  margin: 0 auto;
  padding: 3.5rem 1.25rem;
  border-top: 1px solid var(--lp-border);
}

.lp-pricing h2 {
  font-size: 1.65rem;
  margin: 0 0 1.5rem;
  text-align: center;
}

.lp-pricing-card {
  max-width: 420px;
  margin: 0 auto;
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: 14px;
  padding: 1.5rem;
}

.lp-pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--lp-border);
}

.lp-pricing-row:last-of-type {
  border-bottom: none;
}

.lp-pricing-label {
  color: var(--lp-muted);
}

.lp-pricing-value {
  font-weight: 700;
  font-size: 1.2rem;
}

.lp-pricing-note {
  margin: 1rem 0 0;
  font-size: 0.85rem;
  color: var(--lp-muted);
}

.lp-contact {
  max-width: var(--lp-max);
  margin: 0 auto;
  padding: 3.5rem 1.25rem;
  background: var(--lp-surface);
  border-top: 1px solid var(--lp-border);
}

.lp-contact h2 {
  font-size: 1.65rem;
  margin: 0 0 0.5rem;
  text-align: center;
}

.lp-contact-lead {
  text-align: center;
  color: var(--lp-muted);
  margin: 0 0 2rem;
}

.lp-contact-form {
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.lp-contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.9rem;
}

.lp-contact-form input,
.lp-contact-form textarea {
  padding: 0.65rem 0.9rem;
  border-radius: 8px;
  border: 1px solid var(--lp-border);
  background: rgba(0, 0, 0, 0.2);
  color: var(--lp-text);
  font-family: inherit;
}

.lp-contact-form input::placeholder,
.lp-contact-form textarea::placeholder {
  color: var(--lp-muted);
}

.lp-contact-form textarea {
  resize: vertical;
  min-height: 100px;
}

.lp-legal {
  max-width: var(--lp-max);
  margin: 0 auto;
  padding: 3rem 1.25rem;
  border-top: 1px solid var(--lp-border);
}

.lp-legal h2 {
  font-size: 1.5rem;
  margin: 0 0 1rem;
}

.lp-legal-body {
  max-width: 640px;
  color: var(--lp-muted);
  font-size: 0.9rem;
  line-height: 1.75;
}

.lp-legal-body p {
  margin: 0 0 0.75rem;
}

.lp-legal-updated {
  margin-top: 1.5rem !important;
  font-size: 0.8rem;
  color: var(--lp-muted);
  opacity: 0.8;
}

.lp-footer {
  border-top: 1px solid var(--lp-border);
  padding: 2.5rem 1.25rem;
  text-align: center;
  color: var(--lp-muted);
  font-size: 0.9rem;
}

.lp-footer p {
  margin: 0 0 0.75rem;
}

.lp-footer p:last-child {
  margin-bottom: 0;
}

.lp-footer-provider {
  font-size: 0.85rem;
  color: var(--lp-muted);
  opacity: 0.9;
}

.lp-footer-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1rem;
}

.lp-footer-meta a {
  color: var(--lp-accent);
  text-decoration: none;
}

.lp-footer-meta a:hover {
  text-decoration: underline;
}
