/* ─────────────────────────────────────────────────────────────────────────
   /public/css/checklist.css — landing page for the gated PDF lead magnet.
   Layered on top of /public/css/styles.css (which provides brand tokens
   --green-*, --red-*, --charcoal, --warm-white, --color-cta-primary, etc).
   ───────────────────────────────────────────────────────────────────────── */

/* ── Hero ─────────────────────────────────────────────────────────────── */
.cl-hero {
  background: linear-gradient(180deg, var(--green-800) 0%, var(--green-900) 100%);
  color: var(--warm-white);
  padding: 7rem 0 5.5rem;
  position: relative;
  overflow: hidden;
}
.cl-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(234, 84, 85, 0.10), transparent 50%);
  pointer-events: none;
}
.cl-hero-inner { max-width: 880px; margin: 0 auto; padding: 0 2.5rem; position: relative; }
.cl-eyebrow {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 1.25rem;
}
.cl-hero h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 1.5rem;
}
.cl-hero h1 mark {
  background: linear-gradient(180deg, transparent 60%, rgba(234, 84, 85, 0.35) 60%);
  color: inherit;
  padding: 0 0.1em;
}
.cl-hero-sub {
  font-size: 1.18rem;
  line-height: 1.55;
  color: rgba(245, 245, 245, 0.78);
  max-width: 680px;
  margin-bottom: 2rem;
}
.cl-hero-meta {
  display: flex; gap: 2rem; flex-wrap: wrap;
  font-size: 0.92rem;
  color: rgba(245, 245, 245, 0.65);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.25rem;
}
.cl-hero-meta strong { color: var(--green-light); font-weight: 600; }


/* ── Form card ─────────────────────────────────────────────────────────── */
.cl-form-section {
  background: var(--warm-white);
  padding: 5rem 0;
}
.cl-form-card {
  max-width: 720px;
  margin: -8rem auto 0;
  background: #fff;
  border-radius: 16px;
  padding: 3rem 3rem 2.75rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04), 0 24px 48px rgba(17, 38, 26, 0.08);
  position: relative;
  z-index: 2;
}
.cl-form-card h2 {
  font-size: 1.5rem;
  margin-bottom: 0.65rem;
}
.cl-form-card p.lede {
  color: var(--muted);
  margin-bottom: 1.75rem;
}
.cl-form { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.cl-form input[type="email"] {
  flex: 1 1 280px;
  font-family: inherit;
  font-size: 1rem;
  padding: 0.95rem 1.1rem;
  border: 1px solid var(--green-100);
  border-radius: 10px;
  background: var(--warm-white);
  color: var(--charcoal);
  transition: border-color 120ms ease;
}
.cl-form input[type="email"]:focus {
  outline: none;
  border-color: var(--green-500);
  box-shadow: 0 0 0 3px rgba(58, 122, 80, 0.15);
}
.cl-form button {
  flex: 0 0 auto;
  font-family: inherit;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.95rem 1.6rem;
  background: var(--color-cta-primary);
  color: #fff;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  min-height: 48px;
  transition: transform 120ms ease, background 120ms ease;
}
.cl-form button:hover { background: var(--red-600); }
.cl-form button:active { transform: translateY(1px); }
.cl-form button:disabled { opacity: 0.6; cursor: not-allowed; }
.cl-form-note {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 0.85rem;
  line-height: 1.55;
}
.cl-form-error {
  display: none;
  margin-top: 0.85rem;
  padding: 0.7rem 0.95rem;
  background: rgba(234, 84, 85, 0.08);
  border-left: 3px solid var(--red-500);
  color: var(--red-800);
  font-size: 0.92rem;
  border-radius: 4px;
}
.cl-form-error.is-visible { display: block; }


/* ── Confirmation state ────────────────────────────────────────────────── */
.cl-confirm {
  display: none;
  text-align: center;
  padding: 1rem 0;
}
.cl-confirm.is-visible { display: block; }
.cl-confirm-icon {
  width: 56px; height: 56px;
  margin: 0 auto 1.25rem;
  background: var(--green-50);
  color: var(--green-600);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.cl-confirm h3 { font-size: 1.4rem; margin-bottom: 0.6rem; }
.cl-confirm p { color: var(--muted); max-width: 440px; margin: 0 auto 1.5rem; line-height: 1.6; }
.cl-confirm-actions { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }
.cl-confirm-actions a {
  font-weight: 600; font-size: 0.95rem;
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  text-decoration: none;
}
.cl-confirm-actions .btn-primary { background: var(--color-cta-primary); color: #fff; }
.cl-confirm-actions .btn-ghost { background: transparent; color: var(--green-700); border: 1px solid var(--green-200); }


/* ── Preview list ──────────────────────────────────────────────────────── */
.cl-preview {
  max-width: 720px;
  margin: 4rem auto 0;
  padding: 0 2.5rem;
}
.cl-preview h2 {
  font-size: 1.35rem;
  margin-bottom: 0.4rem;
}
.cl-preview-meta {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}
.cl-list { list-style: none; padding: 0; margin: 0; }
.cl-item {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--green-100);
  align-items: start;
}
.cl-item:last-child { border-bottom: none; }
.cl-item-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--green-500);
  letter-spacing: 0.02em;
  padding-top: 2px;
}
.cl-item-q {
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--heading-text);
  margin-bottom: 0.25rem;
  line-height: 1.4;
}
.cl-item-why {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.55;
}
.cl-item--locked {
  opacity: 0.55;
  filter: blur(2.4px);
  pointer-events: none;
  user-select: none;
}
.cl-locked-hint {
  text-align: center;
  font-size: 0.92rem;
  color: var(--muted);
  margin-top: 1.5rem;
  padding: 1.1rem;
  background: var(--green-50);
  border-radius: 8px;
}


/* ── Trust strip ───────────────────────────────────────────────────────── */
.cl-trust {
  text-align: center;
  padding: 4.5rem 0;
  background: var(--green-50);
  color: var(--green-800);
  font-size: 1.05rem;
}
.cl-trust strong {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  color: var(--green-900);
}


/* ── Mobile ────────────────────────────────────────────────────────────── */
@media (max-width: 720px) {
  .cl-hero { padding: 5rem 0 4rem; }
  .cl-form-card { margin: -6rem auto 0; padding: 2rem 1.5rem 1.75rem; }
  .cl-form { flex-direction: column; }
  .cl-form button { width: 100%; }
  .cl-preview { padding: 0 1.5rem; }
  .cl-item { grid-template-columns: 24px 1fr; gap: 0.75rem; }
}
