/* landing.css - shared stylesheet for the marketing pages. Tokens copied
   from the app (index.html :root) so the pages read as the same product.
   Per-page accent: each page sets --page-accent on <body> via a style attr. */
:root {
  --bg: #14131a;
  --panel: #1c1b24;
  --panel2: #24222e;
  --line: #302e3b;
  --ink: #eceaf2;
  --muted: #9e99ad;
  --accent: #56c7ae;
  --serif: ui-serif, 'New York', Georgia, 'Times New Roman', serif;
  --sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
* { box-sizing: border-box; }
html { color-scheme: dark; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  --page-accent: var(--accent);
}

.lp-wrap { max-width: 720px; margin: 0 auto; padding: 0 20px; }

.lp-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px; max-width: 720px; margin: 0 auto;
}
.lp-header .brand { font-family: var(--serif); font-size: 20px; text-decoration: none; color: var(--ink); }
.lp-header .brand b { font-weight: 700; }
.btn-cta {
  display: inline-block; background: var(--page-accent); color: #0d1512;
  font-weight: 600; text-decoration: none; border-radius: 999px;
  padding: 9px 20px; font-size: 15px;
}
.btn-cta:hover { filter: brightness(1.08); }

.lp-hero { padding: 56px 0 40px; }
.eyebrow {
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--page-accent); font-weight: 600; margin: 0 0 14px;
}
.lp-hero h1 {
  font-family: var(--serif); font-size: clamp(30px, 5.5vw, 44px);
  line-height: 1.15; margin: 0 0 18px; font-weight: 640;
}
.lead { font-size: 18px; color: var(--muted); margin: 0 0 26px; max-width: 58ch; }

.lp-section { padding: 34px 0; border-top: 1px solid var(--line); }
.lp-section h2 { font-family: var(--serif); font-size: 26px; margin: 0 0 16px; }
.lp-section p { color: var(--muted); max-width: 62ch; }
.lp-section p strong { color: var(--ink); }

.steps { list-style: none; margin: 0; padding: 0; counter-reset: step; }
.steps li {
  counter-increment: step; position: relative; padding: 0 0 18px 52px; color: var(--muted);
}
.steps li strong { color: var(--ink); display: block; margin-bottom: 2px; }
.steps li::before {
  content: counter(step); position: absolute; left: 0; top: 2px;
  width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--page-accent);
  color: var(--page-accent); display: grid; place-items: center; font-size: 14px; font-weight: 600;
}

.plan-table { width: 100%; border-collapse: collapse; font-size: 15px; }
.plan-table th, .plan-table td { padding: 10px 12px; border-bottom: 1px solid var(--line); text-align: left; }
.plan-table th { color: var(--ink); font-weight: 600; }
.plan-table td { color: var(--muted); }
.plan-table td.yes { color: var(--page-accent); font-weight: 600; }
.plan-table .price-note { color: var(--muted); font-size: 13px; margin-top: 10px; }

.lp-faq details {
  border: 1px solid var(--line); border-radius: 12px; background: var(--panel);
  margin-bottom: 10px; padding: 0 16px;
}
.lp-faq summary {
  cursor: pointer; padding: 13px 0; font-weight: 600; color: var(--ink); list-style: none;
}
.lp-faq summary::-webkit-details-marker { display: none; }
.lp-faq summary::after { content: '+'; float: right; color: var(--muted); }
.lp-faq details[open] summary::after { content: '\2212'; }
.lp-faq details p { margin: 0 0 14px; color: var(--muted); }

.lp-footer {
  border-top: 1px solid var(--line); margin-top: 40px; padding: 28px 0 44px;
  font-size: 14px; color: var(--muted);
}
.lp-footer nav { display: flex; flex-wrap: wrap; gap: 6px 18px; margin-bottom: 16px; }
.lp-footer a { color: var(--muted); }
.lp-footer a:hover { color: var(--ink); }
.disclaimer { font-size: 13px; }

a { color: var(--page-accent); }

.support-form { display: grid; gap: 14px; max-width: 480px; }
.support-form label { display: grid; gap: 6px; color: var(--ink); font-size: 14px; font-weight: 600; }
.support-form input, .support-form textarea {
  background: var(--panel); border: 1px solid var(--line); border-radius: 10px;
  color: var(--ink); padding: 10px 12px; font: inherit; font-size: 14px;
}
.support-form input:focus, .support-form textarea:focus { outline: none; border-color: var(--page-accent); }
.support-form .btn-cta { border: 0; cursor: pointer; justify-self: start; font: inherit; font-weight: 600; }
.support-status { color: var(--muted); font-size: 13px; margin: 0; }
