/* Landing page — extends legal.css tokens */
body.lp { padding: 0; }
.lp-wrap { max-width: 680px; margin: 0 auto; padding: 28px 20px 72px; }

.lp-top {
  display: flex; align-items: center; gap: 12px;
  padding: 20px 0 32px; border-bottom: 1px solid var(--border); flex-wrap: wrap;
}
.lp-brand { display: flex; align-items: center; gap: 10px; flex: 1; min-width: 160px; }
.lp-brand img { width: 36px; height: 36px; border-radius: 8px; }
.lp-brand-name { font-size: 1.15rem; font-weight: 800; letter-spacing: -0.3px; }
.lp-brand-name span { color: var(--accent); }

.lp-hero { padding: 40px 0 36px; text-align: center; }
.lp-hero h1,
.lp-hero h2.lp-hero-title {
  font-size: clamp(1.45rem, 5vw, 1.85rem); font-weight: 800;
  line-height: 1.35; margin-bottom: 14px; color: var(--text);
}
.lp-hero .lp-lead {
  font-size: 0.92rem; color: var(--text-muted); max-width: 520px;
  margin: 0 auto 24px; line-height: 1.65;
}
.lp-cta-row { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.lp-cta {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 44px; padding: 10px 20px; border-radius: 10px;
  font-size: 0.88rem; font-weight: 700; text-decoration: none;
  transition: opacity 0.15s;
}
.lp-cta-primary { background: var(--accent); color: #fff; border: none; }
.lp-cta-primary:hover { opacity: 0.9; text-decoration: none; }
.lp-cta-secondary {
  background: var(--surface); color: var(--text); border: 1px solid var(--border);
}
.lp-cta-secondary:hover { border-color: var(--accent); color: var(--accent); text-decoration: none; }
.lp-cta-soon { opacity: 0.65; cursor: default; }
.lp-cta-note { font-size: 0.72rem; color: var(--text-muted); margin-top: 12px; }

.lp-section { margin-top: 40px; }
.lp-section h2 {
  font-size: 0.78rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--text-muted); margin-bottom: 16px; text-align: center;
}
.lp-steps { display: grid; gap: 12px; }
.lp-step {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 12px; padding: 14px 16px;
}
.lp-step-num {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%;
  background: var(--accent); color: #fff; font-size: 0.78rem; font-weight: 800;
  display: grid; place-items: center;
}
.lp-step-title { font-size: 0.9rem; font-weight: 700; margin-bottom: 2px; }
.lp-step-desc { font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; }

.lp-shots {
  display: grid; gap: 14px;
}
.lp-shot {
  margin: 0; border-radius: 12px; overflow: hidden;
  border: 1px solid var(--border); background: var(--surface);
}
.lp-shot img {
  display: block; width: 100%; height: auto;
  vertical-align: middle;
}
.lp-shot figcaption {
  font-size: 0.75rem; color: var(--text-muted);
  padding: 8px 12px 10px; line-height: 1.4;
}

.lp-features { display: grid; gap: 10px; }
.lp-feat {
  font-size: 0.85rem; padding: 12px 14px; border-radius: 10px;
  border: 1px solid var(--border); background: var(--surface);
}
.lp-feat strong { color: var(--accent); font-weight: 700; }

.lp-trust {
  text-align: center; font-size: 0.78rem; color: var(--text-muted);
  padding: 16px; border-radius: 10px; background: var(--surface);
  border: 1px solid var(--border); line-height: 1.6;
}
.lp-trust a { font-weight: 600; }

.lp-disclaimer {
  font-size: 0.72rem; color: var(--text-muted); text-align: center;
  margin-top: 28px; line-height: 1.55;
}

.lp-foot {
  margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--border);
  text-align: center; font-size: 0.75rem; color: var(--text-muted);
}
.lp-foot a { margin: 0 6px; }

@media (max-width: 640px) {
  .lp-wrap { padding: 20px 16px 56px; }
  .lp-cta { flex: 1 1 100%; }
}
