/* Checklist landing page styles */

/* ── HERO ── */
.cl-hero {
  background: #0f1a12;
  padding: 80px 32px 72px;
  text-align: center;
}
.cl-hero-inner { max-width: 640px; margin: 0 auto; }

.cl-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(34,197,94,0.12);
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: 100px;
  padding: 6px 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: #4ade80;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.cl-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.cl-hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 54px);
  font-weight: 800;
  color: #f0fdf4;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.cl-hero-sub {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(232,240,236,0.6);
  max-width: 540px;
  margin: 0 auto 28px;
}

.cl-hero-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(232,240,236,0.4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.cl-dot { color: rgba(232,240,236,0.2); }

/* ── SECTION LABELS ── */
.cl-section-label {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(232,240,236,0.35);
  margin-bottom: 20px;
}

/* ── WHAT'S INSIDE ── */
.cl-inside {
  background: #131f16;
  padding: 56px 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.cl-inside-inner { max-width: 640px; margin: 0 auto; }

.cl-rules-grid { display: flex; flex-direction: column; gap: 0; }

.cl-rule-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.cl-rule-row:first-child { border-top: 1px solid rgba(255,255,255,0.06); }

.cl-rule-n {
  font-family: var(--font-mono);
  font-size: 11px;
  color: #22c55e;
  min-width: 28px;
  text-align: right;
}
.cl-rule-name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: #d1fae5;
  flex: 1;
}
.cl-rule-tag {
  font-family: var(--font-mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  border-radius: 4px;
}
.tag-impact {
  background: rgba(34,197,94,0.15);
  color: #4ade80;
  border: 1px solid rgba(34,197,94,0.2);
}
.tag-bonus {
  background: rgba(255,255,255,0.06);
  color: rgba(232,240,236,0.45);
  border: 1px solid rgba(255,255,255,0.1);
}

/* ── SCORING PREVIEW ── */
.cl-score-preview {
  background: #0f1a12;
  padding: 56px 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.cl-score-inner { max-width: 640px; margin: 0 auto; }

.cl-score-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.cl-score-card {
  border-radius: 12px;
  padding: 20px 18px;
  border: 1px solid transparent;
}
.cl-score-green {
  background: rgba(34,197,94,0.08);
  border-color: rgba(34,197,94,0.2);
}
.cl-score-amber {
  background: rgba(245,158,11,0.08);
  border-color: rgba(245,158,11,0.2);
}
.cl-score-red {
  background: rgba(239,68,68,0.08);
  border-color: rgba(239,68,68,0.2);
}
.cl-score-range {
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 4px;
}
.cl-score-green .cl-score-range { color: #22c55e; }
.cl-score-amber .cl-score-range { color: #f59e0b; }
.cl-score-red .cl-score-range { color: #ef4444; }

.cl-score-label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: rgba(232,240,236,0.85);
  margin-bottom: 8px;
}
.cl-score-desc {
  font-size: 12px;
  line-height: 1.5;
  color: rgba(232,240,236,0.5);
}

/* ── EMAIL CTA ── */
.cl-cta-section {
  background: #0a140e;
  padding: 72px 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.cl-cta-inner { max-width: 800px; margin: 0 auto; }

.cl-cta-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

/* PDF preview */
.cl-cta-checklist-preview {
  background: #0f1a12;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  overflow: hidden;
}
.cl-preview-header {
  background: #162018;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.cl-preview-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
}
.cl-preview-title {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(232,240,236,0.5);
  margin-left: 6px;
}
.cl-preview-body { padding: 20px 18px; }
.cl-preview-rule {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  align-items: flex-start;
}
.cl-preview-n {
  font-family: var(--font-mono);
  font-size: 10px;
  color: #22c55e;
  margin-top: 2px;
  min-width: 20px;
}
.cl-preview-rule-name {
  font-size: 12px;
  font-weight: 600;
  color: rgba(232,240,236,0.75);
  margin-bottom: 3px;
}
.cl-preview-rule-desc {
  font-size: 11px;
  color: rgba(232,240,236,0.35);
  line-height: 1.45;
}
.cl-preview-dots {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(232,240,236,0.25);
  padding-top: 4px;
}

/* Form */
.cl-cta-form-wrap { }
.cl-cta-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  color: #f0fdf4;
  margin-bottom: 10px;
  line-height: 1.2;
}
.cl-cta-sub {
  font-size: 14px;
  color: rgba(232,240,236,0.5);
  line-height: 1.55;
  margin-bottom: 24px;
}
.cl-form-group { margin-bottom: 12px; }
.cl-input {
  width: 100%;
  padding: 13px 16px;
  background: #131f16;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  color: #f0fdf4;
  font-family: var(--font-display);
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.cl-input::placeholder { color: rgba(232,240,236,0.3); }
.cl-input:focus {
  border-color: #22c55e;
  box-shadow: 0 0 0 3px rgba(34,197,94,0.12);
}
.cl-input-error {
  font-size: 12px;
  color: #ef4444;
  margin-top: 6px;
  min-height: 18px;
}
.cl-submit-btn {
  width: 100%;
  padding: 14px 24px;
  background: #22c55e;
  color: #0a140e;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  letter-spacing: 0.01em;
}
.cl-submit-btn:hover:not(:disabled) { background: #16a34a; }
.cl-submit-btn:active:not(:disabled) { transform: scale(0.98); }
.cl-submit-btn:disabled { opacity: 0.6; cursor: not-allowed; }

/* Success */
.cl-success {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.25);
  border-radius: 12px;
  padding: 20px;
}
.cl-success-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #22c55e;
  color: #0a140e;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cl-success-text {
  font-size: 14px;
  line-height: 1.55;
  color: #d1fae5;
}
.cl-success-text strong { color: #22c55e; }

.cl-privacy {
  font-size: 11px;
  color: rgba(232,240,236,0.3);
  margin-top: 10px;
  text-align: center;
}

/* ── SOCIAL PROOF ── */
.cl-proof {
  background: #131f16;
  padding: 40px 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.cl-proof-inner {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.cl-proof-stat { text-align: center; }
.cl-proof-n {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: #22c55e;
}
.cl-proof-label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(232,240,236,0.4);
  margin-top: 4px;
}
.cl-proof-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.08);
}

/* ── RESPONSIVE ── */
@media (max-width: 640px) {
  .cl-score-cards { grid-template-columns: 1fr; }
  .cl-cta-card { grid-template-columns: 1fr; }
  .cl-hero { padding: 56px 24px 48px; }
  .cl-cta-section { padding: 48px 24px; }
  .cl-inside, .cl-score-preview { padding: 40px 24px; }
}

/* ── FOOTER OVERRIDE ── */
footer.footer {
  background: #0a140e !important;
  border-top: 1px solid rgba(255,255,255,0.06);
}
footer.footer a { color: rgba(232,240,236,0.5); }
footer.footer a:hover { color: #22c55e; }
footer.footer .footer-col-title { color: rgba(232,240,236,0.7); }
footer.footer .footer-tagline { color: rgba(232,240,236,0.25); }