/* =====================================================================
   PropFile — marketing landing page styles.
   Reuses the app design tokens from styles.css (:root) and the shared
   .btn / .chip components; everything here is namespaced `lp-`.
   ===================================================================== */

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

.lp-container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Navbar -------------------------------------------------------- */
.lp-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--border);
}
.lp-nav__inner {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 66px;
}
.lp-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 19px;
  font-weight: 600;
  color: var(--text);
}
.lp-brand__mark { display: none; } /* concept 4 — wordmark-led, no icon */
.lp-brand__word {
  font-family: 'Marcellus', Georgia, serif;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 400;
  font-size: 21px;
  line-height: 1;
  color: var(--primary);
}
.lp-brand__sub {
  display: block;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 5px;
}
.brand-dot { color: var(--cta); font-style: normal; }
.lp-footer__brand {
  font-family: 'Marcellus', Georgia, serif;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 400 !important;
  color: var(--primary);
}
.lp-nav__links {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: 8px;
}
.lp-nav__link {
  padding: 8px 13px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
}
.lp-nav__link:hover { background: var(--surface-alt); color: var(--text); }
.lp-nav__actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}
.lp-nav__toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 9px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
}

/* --- Hero ---------------------------------------------------------- */
.lp-hero { padding: 76px 0 60px; }
.lp-hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 52px;
  align-items: center;
}
.lp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  background: var(--info-bg);
  padding: 6px 13px;
  border-radius: var(--radius-pill);
}
.lp-eyebrow [data-lucide] { width: 15px; height: 15px; }
.lp-hero h1 {
  font-size: 49px;
  line-height: 1.06;
  font-weight: 600;
  letter-spacing: -0.022em;
  margin-top: 20px;
}
.lp-hero__sub {
  font-size: 18px;
  line-height: 1.6;
  color: var(--muted);
  margin-top: 20px;
  max-width: 545px;
}
.lp-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.lp-btn-lg { height: 48px; padding: 0 22px; font-size: 15px; border-radius: 10px; }
.lp-hero__note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-size: 14px;
  color: var(--muted);
}
.lp-hero__note [data-lucide] { width: 16px; height: 16px; color: var(--success); }

/* Hero product mock */
.lp-mock {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow-modal);
  padding: 20px;
}
.lp-mock__head { display: flex; align-items: center; gap: 12px; }
.lp-mock__thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 11px;
  background: var(--info-bg);
  color: var(--primary);
  flex-shrink: 0;
}
.lp-mock__addr { font-size: 16px; font-weight: 600; }
.lp-mock__meta-line { font-size: 13px; color: var(--muted); margin-top: 1px; }
.lp-mock__chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
.lp-mock__item {
  margin-top: 14px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
}
.lp-mock__item-head { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.lp-mock__item-title { font-size: 14px; font-weight: 600; }
.lp-mock__item-sub { font-size: 12px; color: var(--muted); margin-top: 1px; }
.lp-mock__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.lp-mock__k { font-size: 10px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--muted); }
.lp-mock__v { font-size: 13px; color: var(--text); }

/* --- Trust bar ----------------------------------------------------- */
.lp-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 30px;
  padding: 8px 0 4px;
}
.lp-trust span { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; color: var(--muted); }
.lp-trust [data-lucide] { width: 16px; height: 16px; color: var(--success); }

/* --- Sections ------------------------------------------------------ */
.lp-section { padding: 70px 0; }
.lp-section--alt {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.lp-section__head { max-width: 660px; margin: 0 auto 44px; text-align: center; }
.lp-section__head h2 { font-size: 33px; font-weight: 600; letter-spacing: -0.015em; }
.lp-section__head p { font-size: 17px; line-height: 1.6; color: var(--muted); margin-top: 12px; }

/* Feature grid */
.lp-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.lp-feature {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
}
.lp-section--alt .lp-feature { background: var(--bg); }
.lp-feature__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: var(--info-bg);
  color: var(--primary);
  margin-bottom: 16px;
}
.lp-feature h3 { font-size: 17px; font-weight: 600; }
.lp-feature p { font-size: 15px; line-height: 1.6; color: var(--muted); margin-top: 8px; }

/* How it works */
.lp-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.lp-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  font-size: 15px;
}
.lp-step h3 { font-size: 18px; font-weight: 600; margin-top: 16px; }
.lp-step p { font-size: 15px; line-height: 1.6; color: var(--muted); margin-top: 8px; }

/* Who it's for */
.lp-audience { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.lp-aud {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}
.lp-aud--soon { opacity: 0.72; }
.lp-aud__icon { display: inline-flex; color: var(--primary); margin-bottom: 8px; }
.lp-aud h3 { font-size: 15px; font-weight: 600; }
.lp-aud p { font-size: 13px; color: var(--muted); margin-top: 4px; }

/* Pricing */
.lp-pricing { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 760px; margin: 0 auto; }
.lp-price {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
}
.lp-price--featured { border: 2px solid var(--primary); }
.lp-price__tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  background: var(--info-bg);
  padding: 4px 11px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
}
.lp-price h3 { font-size: 18px; font-weight: 600; }
.lp-price__amt { font-size: 34px; font-weight: 600; letter-spacing: -0.02em; margin-top: 8px; }
.lp-price__amt small { font-size: 15px; font-weight: 500; color: var(--muted); }
.lp-price ul { list-style: none; margin: 18px 0 0; padding: 0; }
.lp-price li { display: flex; align-items: flex-start; gap: 10px; padding: 7px 0; font-size: 14px; color: var(--text); }
.lp-price li [data-lucide] { width: 17px; height: 17px; color: var(--success); flex-shrink: 0; margin-top: 1px; }

/* CTA band */
.lp-cta {
  background: var(--primary);
  border-radius: 22px;
  padding: 52px;
  text-align: center;
  color: #fff;
}
.lp-cta h2 { color: #fff; font-size: 31px; font-weight: 600; letter-spacing: -0.015em; }
.lp-cta p { color: rgba(255, 255, 255, 0.86); font-size: 17px; line-height: 1.6; margin: 12px auto 0; max-width: 520px; }
.lp-btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 48px;
  padding: 0 24px;
  margin-top: 26px;
  border-radius: 10px;
  background: #fff;
  color: var(--primary);
  font-size: 15px;
  font-weight: 600;
}
.lp-btn-white:hover { background: #eef2ff; color: var(--primary-dark); }

/* Footer */
.lp-footer { padding: 40px 0; border-top: 1px solid var(--border); }
.lp-footer__inner { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
.lp-footer__brand { display: flex; align-items: center; gap: 10px; font-weight: 600; color: var(--text); }
.lp-footer small { color: var(--muted); font-size: 13px; }
.lp-footer__note { color: var(--muted); font-size: 13px; max-width: 480px; }

/* --- Responsive ---------------------------------------------------- */
@media (max-width: 1080px) {
  .lp-nav__links {
    display: none;
    position: absolute;
    top: 66px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 10px 16px 16px;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
  }
  .lp-nav.is-open .lp-nav__links { display: flex; }
  .lp-nav__link { padding: 12px 14px; }
  .lp-nav__toggle { display: inline-flex; }
  .lp-signin { display: none; }
  .lp-brand__sub { display: none; }
}

@media (max-width: 880px) {
  .lp-hero { padding: 48px 0 44px; }
  .lp-hero__grid { grid-template-columns: 1fr; gap: 36px; }
  .lp-hero h1 { font-size: 34px; }
  .lp-hero__sub { font-size: 16px; }

  .lp-section { padding: 52px 0; }
  .lp-section__head h2 { font-size: 27px; }
  .lp-features, .lp-steps { grid-template-columns: 1fr; }
  .lp-audience { grid-template-columns: 1fr 1fr; }
  .lp-pricing { grid-template-columns: 1fr; }
  .lp-cta { padding: 36px 22px; }
  .lp-cta h2 { font-size: 25px; }
  .lp-footer__inner { flex-direction: column; align-items: flex-start; }
}
