/* ============================================================
   landing.css — public marketing page
   ============================================================ */
.lp { background: var(--surface); }

.lp-header { border-bottom: 1px solid var(--line-soft); }
.lp-header__inner { display: flex; height: 64px; align-items: center; justify-content: space-between; }
.lp-nav { display: flex; align-items: center; gap: 8px; font-size: 14px; }

.lp-hero { display: grid; gap: 48px; align-items: center; padding: 80px 0; }
@media (min-width: 768px) { .lp-hero { grid-template-columns: repeat(2, 1fr); padding: 112px 0; } }

.pill { display: inline-flex; align-items: center; gap: 6px; border: 1px solid var(--line); background: var(--surface-2); border-radius: var(--r-full); padding: 4px 12px; font-size: 12px; font-weight: 500; color: var(--muted); }
.pill__dot { height: 6px; width: 6px; border-radius: var(--r-full); background: var(--accent-500); }
.hero-title { margin-top: 20px; font-size: 40px; font-weight: 600; line-height: 1.1; letter-spacing: -.02em; }
@media (min-width: 768px) { .hero-title { font-size: 48px; } }
.hero-sub { margin-top: 20px; max-width: 28rem; font-size: 15px; line-height: 1.6; color: var(--muted); }
.hero-cta { margin-top: 32px; display: flex; align-items: center; gap: 12px; }
.hero-fine { margin-top: 16px; font-size: 12px; color: var(--faint); }

/* preview card */
.preview { border: 1px solid var(--line); background: var(--surface); border-radius: var(--r-2xl); padding: 12px; box-shadow: var(--shadow-xl); }
.preview__inner { border: 1px solid var(--line-soft); background: var(--surface-2); border-radius: var(--r-xl); padding: 16px; }
.preview__head { margin-bottom: 12px; display: flex; align-items: center; justify-content: space-between; font-size: 13px; font-weight: 600; }
.preview__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.preview__card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--surface); }
.preview__img { aspect-ratio: 4 / 3; background: var(--line-soft); }
.preview__body { padding: 8px; }
.preview__price { font-size: 11px; font-weight: 600; }
.preview__meta { margin-top: 1px; font-size: 10px; color: var(--faint); }
.preview__foot { margin-top: 12px; display: flex; align-items: center; gap: 8px; font-size: 11px; color: var(--faint); }
.preview__foot .dot { height: 6px; width: 6px; border-radius: var(--r-full); background: var(--accent-500); }

/* how it works */
.lp-how { border-top: 1px solid var(--line-soft); padding: 64px 0; }
.lp-steps { display: grid; gap: 32px; }
@media (min-width: 768px) { .lp-steps { grid-template-columns: repeat(3, 1fr); } }
.step-num { display: flex; height: 36px; width: 36px; align-items: center; justify-content: center; border-radius: var(--r-lg); border: 1px solid var(--line); font-size: 14px; font-weight: 600; color: var(--accent); }
.step-h { margin-top: 16px; font-size: 15px; font-weight: 600; }
.step-p { margin-top: 6px; font-size: 14px; line-height: 1.6; color: var(--muted); }

/* footer */
.lp-footer { border-top: 1px solid var(--line-soft); }
.lp-footer__inner { display: flex; align-items: center; justify-content: space-between; padding: 32px 0; font-size: 12px; color: var(--faint); }
