/* ─────────────────────────────────────────────────────────────────────
   PlanOS — shared landing-page styles
   Used by the alternative/use-case landing pages (honeybook-alternative,
   dubsado-alternative, aisle-planner-alternative, …). Links AFTER theme.css
   and reuses its tokens (--ink/--clay/--paper/--serif…). Page-specific
   overrides stay in each page's own <style> block.
   ───────────────────────────────────────────────────────────────────── */

.lp-nav { position: sticky; top: 0; z-index: 50; background: rgba(247,245,240,0.88); backdrop-filter: saturate(1.1) blur(12px); -webkit-backdrop-filter: saturate(1.1) blur(12px); border-bottom: 1px solid var(--border-soft); }
.lp-nav .container { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.lp-nav .logo img { height: 26px; width: auto; display: block; }

.lp-hero { padding: 96px 0 72px; background: var(--paper); }
.lp-hero h1 { max-width: 16ch; margin: 14px 0 0; }
.lp-hero h1 em { font-style: italic; color: var(--clay); }
.lp-deck { font-family: var(--serif); font-weight: 500; font-size: clamp(20px, 2.6vw, 27px); line-height: 1.28; letter-spacing: -0.015em; color: var(--ink); max-width: 28ch; margin-top: 14px; }
.lp-hero .lead-lg { margin-top: 18px; }
.lp-cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.lp-fine { font-size: 13px; color: var(--mute); margin-top: 14px; }

/* The core difference — two cards */
.vs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 44px; }
.vs-card { border: 1px solid var(--border); border-radius: 16px; padding: 28px; background: var(--card); }
.vs-card.them { background: transparent; border-style: dashed; }
.vs-card h3 { font-family: var(--sans); font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700; margin-bottom: 4px; }
.vs-card.them h3 { color: var(--mute); }
.vs-card.us h3 { color: var(--clay); }
.vs-lead { font-family: var(--serif); font-size: 19px; line-height: 1.4; color: var(--ink); margin-bottom: 16px; }
.vs-card ul { list-style: none; padding: 0; margin: 0; }
.vs-card li { font-size: 14.5px; line-height: 1.5; color: var(--ink-soft); padding: 8px 0 8px 26px; position: relative; border-top: 1px solid var(--border-soft); }
.vs-card li:first-child { border-top: none; }
.vs-card.us li::before { content: '✓'; position: absolute; left: 0; color: var(--clay); font-weight: 700; }
.vs-card.them li::before { content: '—'; position: absolute; left: 0; color: var(--mute); }
@media (max-width: 720px) { .vs-grid { grid-template-columns: 1fr; } }

/* Compact comparison table */
.lp-tbl { width: 100%; border-collapse: collapse; margin-top: 32px; font-size: 14.5px; }
.lp-tbl th, .lp-tbl td { padding: 13px 14px; text-align: left; border-bottom: 1px solid var(--border); }
.lp-tbl thead th { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--mute); font-weight: 700; }
.lp-tbl thead th.us { color: var(--clay); }
.lp-tbl tbody th { font-weight: 500; color: var(--ink); }
.lp-tbl td { text-align: center; width: 130px; }
.lp-tbl td.us { color: var(--clay); font-weight: 700; }
.lp-yes { color: var(--clay); font-weight: 700; }
.lp-no { color: var(--mute); }
.lp-tbl-wrap { overflow-x: auto; }

.lp-quote { max-width: 680px; margin: 0 auto; text-align: center; }
.lp-quote blockquote { font-family: var(--serif); font-size: clamp(22px, 3vw, 30px); line-height: 1.4; color: var(--ink); }
.lp-quote .who { margin-top: 16px; font-size: 13px; color: var(--mute); letter-spacing: 0.04em; }

.lp-cta-band { background: var(--ink); color: var(--paper); border-radius: var(--r-lg); padding: 56px 32px; text-align: center; }
.lp-cta-band h2 { color: var(--paper); }
.lp-cta-band p { color: rgba(247,245,240,0.72); margin-top: 12px; }

.lp-faq { max-width: 760px; margin: 0 auto; }
.lp-faq details { border-bottom: 1px solid var(--border); padding: 4px 0; }
.lp-faq summary { list-style: none; cursor: pointer; padding: 18px 0; font-family: var(--serif); font-size: 18px; color: var(--ink); display: flex; justify-content: space-between; gap: 16px; align-items: center; }
.lp-faq summary::-webkit-details-marker { display: none; }
.lp-faq summary::after { content: '+'; color: var(--clay); font-size: 22px; flex-shrink: 0; }
.lp-faq details[open] summary::after { content: '–'; }
.lp-faq .faq-body { padding: 0 0 18px; color: var(--ink-soft); line-height: 1.65; max-width: 64ch; }

/* 3-step block (use-case pages) */
.lp-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 36px; }
.lp-step { border: 1px solid var(--border); border-radius: 14px; padding: 24px; background: var(--card); }
.lp-step-n { font-family: var(--sans); font-size: 11px; font-weight: 700; color: var(--clay); letter-spacing: 0.16em; text-transform: uppercase; }
.lp-step h3 { font-family: var(--serif); font-size: 19px; font-weight: 500; margin: 10px 0 8px; color: var(--ink); }
.lp-step p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.55; }
@media (max-width: 720px) { .lp-steps { grid-template-columns: 1fr; } }

.lp-foot { padding: 40px 0; border-top: 1px solid var(--border); color: var(--mute); font-size: 13px; }
.lp-foot a { color: var(--clay); }
