* { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:         #1a1a2e;
  --grey-bg:      #f3f4f6;
  --border:       #e5e7eb;
  --text:         #1a1a2e;
  --text-2:       #374151;
  --muted:        #6b7280;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: var(--grey-bg);
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
}

/* ── Shared layout ───────────────────────────────────────────── */
.lp-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Hero ────────────────────────────────────────────────────── */
.lp-hero {
  background: var(--navy);
  color: #fff;
  padding: 60px 0 56px;
}
.lp-hero-inner { text-align: center; }

.lp-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.lp-shield    { font-size: 30px; line-height: 1; }
.lp-brand-name { font-size: 21px; font-weight: 800; letter-spacing: 0.4px; }

.lp-beta-badge {
  display: inline-block;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 20px;
  padding: 3px 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.lp-hero-title {
  font-size: clamp(22px, 4vw, 34px);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.2px;
  margin-bottom: 16px;
}
.lp-hero-sub {
  font-size: 16px;
  opacity: 0.7;
  max-width: 480px;
  margin: 0 auto 28px;
  line-height: 1.6;
}

.lp-cta-btn {
  display: inline-block;
  background: #fff;
  color: var(--navy);
  border-radius: 8px;
  padding: 13px 30px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.1px;
  transition: opacity 0.15s;
}
.lp-cta-btn:hover { opacity: 0.88; }

/* ── Sections ────────────────────────────────────────────────── */
.lp-section { padding: 52px 0; background: var(--grey-bg); }
.lp-white   { background: #fff; }

.lp-section-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: #9ca3af;
  margin-bottom: 20px;
}

.lp-body {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.7;
  max-width: 600px;
}

/* ── Numbered steps ──────────────────────────────────────────── */
.lp-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.lp-steps li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.lp-step-num {
  background: var(--navy);
  color: #fff;
  min-width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.lp-step-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.lp-step-body strong {
  font-size: 15px;
  color: var(--text);
  font-weight: 700;
}
.lp-step-body span {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

/* ── Two-column grid ─────────────────────────────────────────── */
.lp-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
@media (max-width: 560px) {
  .lp-two-col { grid-template-columns: 1fr; gap: 32px; }
}

/* ── Icon lists (checks and crosses) ────────────────────────── */
.lp-icon-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.lp-icon-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.45;
}
.lp-check { color: #065f46; font-weight: 700; flex-shrink: 0; font-size: 13px; margin-top: 1px; }
.lp-cross  { color: #991b1b; font-weight: 700; flex-shrink: 0; font-size: 13px; margin-top: 1px; }

/* ── Proof Receipt demo card ─────────────────────────────────── */
.lp-receipt-demo {
  margin-top: 24px;
  background: #f9fafb;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  max-width: 460px;
}
.lp-receipt-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 9px 16px;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}
.lp-receipt-row:last-child { border-bottom: none; }
.lp-receipt-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: #9ca3af;
  white-space: nowrap;
  min-width: 118px;
  flex-shrink: 0;
}
.lp-receipt-val  { color: var(--text-2); font-size: 13px; }
.lp-mono         { font-family: 'Courier New', monospace; font-size: 12px; color: #374151; }
.lp-j-orange     { color: #9a3412; font-weight: 600; }

/* ── Notice banners ──────────────────────────────────────────── */
.lp-notice {
  padding: 13px 16px;
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.65;
  border-left: 3px solid;
  margin-bottom: 10px;
}
.lp-notice:last-child { margin-bottom: 0; }
.lp-notice-amber {
  background: #fffbeb;
  border-color: #f59e0b;
  color: #78350f;
}
.lp-notice-grey {
  background: #f9fafb;
  border-color: #d1d5db;
  color: #374151;
}

/* ── Footer ──────────────────────────────────────────────────── */
.lp-footer {
  background: var(--navy);
  padding: 20px 0;
}
.lp-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.lp-footer-brand {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
}
.lp-footer-nav a,
.lp-footer-back {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.15s;
}
.lp-footer-nav a:hover,
.lp-footer-back:hover { color: rgba(255,255,255,0.9); }

/* ── Privacy page additions ──────────────────────────────────── */
.lp-hero-sm { padding: 32px 0 28px; }

.lp-back-link {
  display: inline-block;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  margin-bottom: 14px;
  transition: color 0.15s;
}
.lp-back-link:hover { color: rgba(255,255,255,0.9); }

.lp-page-title {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 800;
  margin-bottom: 6px;
}
.lp-page-date {
  font-size: 12px;
  opacity: 0.45;
  margin-top: 4px;
}

/* Privacy content blocks */
.pp-block {
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.pp-block:last-child { border-bottom: none; padding-bottom: 0; }

.pp-block h2 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.pp-block p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.7;
}
.pp-block p + p { margin-top: 10px; }

.pp-block ul {
  list-style: disc;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: 10px;
}
.pp-block ul li {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
}
.pp-block code {
  font-family: 'Courier New', monospace;
  font-size: 12px;
  background: #f3f4f6;
  padding: 1px 5px;
  border-radius: 3px;
  color: #374151;
}

.pp-block-amber {
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 8px;
  padding: 16px 20px;
  margin: 16px 0;
}
.pp-block-amber h2 { color: #92400e; }
.pp-block-amber p  { color: #78350f; }

.pp-block-red {
  background: #fff5f5;
  border: 1px solid #fecaca;
  border-radius: 8px;
  padding: 16px 20px;
  margin: 16px 0;
}
.pp-block-red h2 { color: #991b1b; }
.pp-block-red p  { color: #7f1d1d; }
