/*
  =============================================================
  landing.css — Shared stylesheet for commercial landing pages
  =============================================================
  PURPOSE:
    Powers the buyer-intent landing pages (checklist software,
    task management, accountability, inspection, manager app).
    Built to be bold and dynamic: dark hero, alternating section
    rhythm, scroll-reveal motion, a phone mockup, and a punchy
    pricing block. One shared file across all landing pages.

  LOAD ORDER:  core.css  →  landing.css
  DEPENDS ON core.css for: design tokens (--color-*), .container,
    .btn, nav, footer.

  SECTIONS:
    0. MOTION (scroll reveal)
    1. BUTTONS
    2. HERO (dark) + PHONE MOCKUP
    3. TRUST STRIP
    4. SECTION SHELL + variants
    5. PROBLEM
    6. SHOWCASE (screenshots)
    7. FEATURE / BENEFIT GRID
    8. COMPARISON
    9. PRICING
   10. USE CASES
   11. PROOF (operator story)
   12. FAQ
   13. CTA
   14. RESPONSIVE
  ============================================================= */


/* =============================================================
   0 — MOTION (scroll reveal, toggled by inline IntersectionObserver)
   ============================================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.reveal--d1 { transition-delay: 0.08s; }
.reveal--d2 { transition-delay: 0.16s; }
.reveal--d3 { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}


/* =============================================================
   1 — BUTTONS
   ============================================================= */
.lp-btn {
  display: inline-block;
  font-weight: 600;
  font-size: 1.05rem;
  padding: 17px 38px;
  border-radius: 12px;
  transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}
.lp-btn--primary {
  background: linear-gradient(135deg, var(--color-primary-hover) 0%, var(--color-primary) 100%);
  color: #fff;
  box-shadow: 0 8px 24px -8px rgba(194, 65, 12, 0.6);
}
.lp-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -8px rgba(194, 65, 12, 0.75);
}
.lp-btn--ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
}
.lp-btn--ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.06);
}
.lp-btn--lg { font-size: 1.15rem; padding: 19px 46px; }


/* =============================================================
   2 — HERO (dark) + PHONE MOCKUP
   ============================================================= */
.lp-hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(900px 500px at 78% 18%, rgba(234, 88, 12, 0.28), transparent 60%),
              radial-gradient(700px 500px at 10% 90%, rgba(124, 45, 18, 0.35), transparent 55%),
              #09090b;
  color: #fff;
  padding: 132px 0 96px;
}
/* faint grid texture */
.lp-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at 50% 30%, #000 0%, transparent 75%);
  pointer-events: none;
}
.lp-hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.lp-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fdba74;
  background: rgba(234, 88, 12, 0.14);
  border: 1px solid rgba(234, 88, 12, 0.35);
  border-radius: 999px;
  padding: 7px 16px;
  margin-bottom: 26px;
}
.lp-hero__eyebrow::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #fb923c;
  box-shadow: 0 0 0 4px rgba(251, 146, 60, 0.25);
}
.lp-hero__headline {
  font-size: clamp(2.3rem, 4.6vw, 3.6rem);
  line-height: 1.06;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
  color: #fff;
}
.lp-hero__headline em {
  font-style: normal;
  background: linear-gradient(120deg, #fb923c, #f97316);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lp-hero__sub {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: rgba(255, 255, 255, 0.72);
  max-width: 540px;
  margin-bottom: 34px;
}
.lp-hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.lp-hero__price {
  margin-top: 26px;
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.65);
}
.lp-hero__price strong { color: #fff; font-weight: 700; }

/* ----- Phone mockup ----- */
.lp-phone-wrap {
  display: flex;
  justify-content: flex-end;
  perspective: 1400px;
}
.lp-phone {
  position: relative;
  width: min(290px, 80vw);
  background: linear-gradient(150deg, #f4f4f7 0%, #b6b6bf 26%, #eaeaef 50%, #9a9aa6 74%, #d4d4db 100%);
  border-radius: 50px;
  padding: 6px;
  box-shadow:
    0 34px 66px -22px rgba(0,0,0,0.6),
    inset 0 0 0 1px rgba(255,255,255,0.55),
    inset 0 0 0 2px rgba(0,0,0,0.10);
  transform: rotateY(-12deg) rotateX(4deg);
  transition: transform 0.5s ease;
}
.lp-phone:hover { transform: rotateY(-4deg) rotateX(2deg); }
/* modern dynamic-island pill instead of the old notch box */
.lp-phone__notch {
  position: absolute;
  top: 16px; left: 50%;
  transform: translateX(-50%);
  width: 78px; height: 22px;
  background: #000;
  border-radius: 999px;
  z-index: 3;
}
.lp-phone__screen {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 19;
  border-radius: 44px;
  overflow: hidden;
  background: #0b0b0d;
}
/* When the real footage is ready, drop a <video> in .lp-phone__screen
   with the same border-radius and object-fit: cover. */
.lp-phone__screen video {
  width: 100%; height: 100%;
  object-fit: contain;
}
.lp-phone__screen img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
/* light/dark auto-crossfade (used in the frameless showcase screens) */
.lp-swap--dark {
  opacity: 0;
  animation: lp-modeswap 8s ease-in-out infinite;
}
@keyframes lp-modeswap {
  0%, 38%  { opacity: 0; }
  50%, 88% { opacity: 1; }
  100%     { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .lp-swap--dark { animation: none; }
}
/* YouTube Short embed — vertical, fills the phone screen. */
.lp-phone__screen iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ----- Faux app screen (placeholder until real video) ----- */
.lp-app {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--color-white);
}
.lp-app__top {
  background: linear-gradient(135deg, var(--color-primary-hover), var(--color-primary));
  color: #fff;
  padding: 40px 18px 18px;
}
.lp-app__brand { font-weight: 700; font-size: 0.95rem; opacity: 0.9; }
.lp-app__title { font-weight: 700; font-size: 1.15rem; margin-top: 4px; }
.lp-app__bar {
  height: 7px;
  border-radius: 99px;
  background: rgba(255,255,255,0.3);
  margin-top: 14px;
  overflow: hidden;
}
.lp-app__bar span {
  display: block; height: 100%; width: 72%;
  background: #fff;
  border-radius: 99px;
}
.lp-app__list { padding: 14px; display: flex; flex-direction: column; gap: 10px; }
.lp-app__row {
  display: flex; align-items: center; gap: 11px;
  background: var(--color-surface);
  border-radius: 12px;
  padding: 12px 13px;
  font-size: 0.82rem;
  color: var(--color-body-text);
}
.lp-app__check {
  width: 22px; height: 22px; flex-shrink: 0;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 700;
}
.lp-app__row--done .lp-app__check { background: var(--color-success); color: #fff; }
.lp-app__row--done { color: #9ca3af; text-decoration: line-through; }
.lp-app__row--todo .lp-app__check { border: 2px solid var(--color-border); }


/* =============================================================
   3 — TRUST STRIP
   ============================================================= */
.lp-trust {
  background: var(--color-black);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 0;
}
.lp-trust__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 40px;
  justify-content: center;
  align-items: center;
}
.lp-trust__item {
  display: flex; align-items: center; gap: 9px;
  font-weight: 600; font-size: 0.92rem;
  color: rgba(255,255,255,0.85);
}
.lp-trust__item svg {
  width: 19px; height: 19px;
  stroke: #fb923c; fill: none; stroke-width: 2.3;
  flex-shrink: 0;
}


/* =============================================================
   4 — SECTION SHELL + variants
   ============================================================= */
.lp-section { padding: var(--section-padding) 0; }
.lp-section--surface { background: var(--color-surface); }
.lp-section--tint { background: var(--color-primary-tint); }
.lp-section--dark {
  background: radial-gradient(800px 500px at 80% 0%, rgba(234,88,12,0.18), transparent 60%), #09090b;
  color: #fff;
}
.lp-section__head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.lp-section__head--left { margin-left: 0; text-align: left; }
.lp-section__tag {
  display: inline-block;
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 14px;
}
.lp-section--dark .lp-section__tag { color: #fb923c; }
.lp-section__title {
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  line-height: 1.12; font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-black);
  margin-bottom: 18px;
}
.lp-section--dark .lp-section__title { color: #fff; }
.lp-section__title em {
  font-style: normal; color: var(--color-primary);
}
.lp-section--dark .lp-section__title em { color: #fb923c; }
.lp-section__desc { font-size: 1.12rem; color: var(--color-body-text); }
.lp-section--dark .lp-section__desc { color: rgba(255,255,255,0.7); }


/* =============================================================
   5 — PROBLEM
   ============================================================= */
.lp-pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.lp-pain {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 34px 30px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.lp-pain:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -24px rgba(0,0,0,0.25); }
.lp-pain__icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--color-primary-tint);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.lp-pain__icon svg { width: 24px; height: 24px; stroke: var(--color-primary); fill: none; stroke-width: 2; }
.lp-pain__title { font-size: 1.18rem; font-weight: 700; color: var(--color-black); margin-bottom: 10px; }
.lp-pain__text { color: var(--color-body-text); font-size: 0.98rem; }


/* =============================================================
   6 — SHOWCASE (annotated screenshots)
   ============================================================= */
.lp-shots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; align-items: start; }
.lp-shot { text-align: center; }
/* frameless app screen — clean rounded rectangle, soft shadow, no phone body */
.lp-shot__screen {
  position: relative;
  max-width: 280px;
  margin: 0 auto 24px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 26px 52px -22px rgba(0,0,0,0.4), 0 0 0 1px rgba(0,0,0,0.05);
  transition: transform 0.25s ease;
}
.lp-shot__screen:hover { transform: translateY(-6px); }
.lp-shot__screen > img { display: block; width: 100%; height: auto; }
.lp-shot__screen .lp-swap--dark { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.lp-shot__body { max-width: 290px; margin: 0 auto; }
.lp-shot__title { font-size: 1.18rem; font-weight: 700; color: var(--color-black); margin-bottom: 8px; }
.lp-shot__text { font-size: 0.97rem; color: var(--color-body-text); }


/* =============================================================
   7 — FEATURE / BENEFIT GRID
   ============================================================= */
.lp-feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.lp-feature {
  position: relative;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 34px 30px;
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.lp-feature::after {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--color-primary-hover), var(--color-primary));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.25s ease;
}
.lp-feature:hover {
  transform: translateY(-5px);
  border-color: transparent;
  box-shadow: 0 24px 48px -28px rgba(0,0,0,0.4);
}
.lp-feature:hover::after { transform: scaleX(1); }
.lp-feature__icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(135deg, var(--color-primary-hover), var(--color-primary));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  box-shadow: 0 10px 20px -10px rgba(194,65,12,0.6);
}
.lp-feature__icon svg { width: 26px; height: 26px; stroke: #fff; fill: none; stroke-width: 2; }
.lp-feature__title { font-size: 1.22rem; font-weight: 700; color: var(--color-black); margin-bottom: 10px; }
.lp-feature__text { color: var(--color-body-text); font-size: 0.98rem; }


/* =============================================================
   8 — COMPARISON
   ============================================================= */
.lp-compare {
  max-width: 940px; margin: 0 auto;
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 40px 80px -36px rgba(0,0,0,0.45);
  border: 1px solid var(--color-border);
}
.lp-compare__row {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr;
  border-bottom: 1px solid var(--color-border);
  background: #fff;
}
.lp-compare__row:last-child { border-bottom: none; }
.lp-compare__row--price .lp-compare__cell { font-size: 1.05rem; padding-top: 22px; padding-bottom: 22px; }
.lp-compare__cell { padding: 17px 22px; font-size: 0.97rem; display: flex; align-items: center; }
.lp-compare__cell--head {
  font-weight: 700; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.05em;
  color: var(--color-black); background: var(--color-surface);
}
.lp-compare__cell--crewli {
  background: linear-gradient(180deg, #fff7ed, #ffe8d2);
  font-weight: 700; color: var(--color-black);
  border-left: 2.5px solid var(--color-primary); border-right: 2.5px solid var(--color-primary);
}
.lp-compare__row:first-child .lp-compare__cell--crewli {
  background: linear-gradient(135deg, var(--color-primary-hover), var(--color-primary));
  color: #fff;
  gap: 10px;
}
.lp-compare__row:last-child .lp-compare__cell--crewli {
  border-bottom: 2.5px solid var(--color-primary);
}
.lp-compare__cell--label { font-weight: 600; color: var(--color-black); }
.lp-compare__cell--off { color: #71717a; }

/* yes / no / maybe badges */
.lp-compare__yes, .lp-compare__no, .lp-compare__maybe {
  display: inline-flex; align-items: center; justify-content: center;
  width: 23px; height: 23px; border-radius: 50%; flex-shrink: 0;
  font-size: 0.78rem; font-weight: 800; margin-right: 11px;
}
.lp-compare__yes { background: var(--color-success); color: #fff; }
.lp-compare__no { background: #fee2e2; color: var(--color-error); }
.lp-compare__maybe { background: #e4e4e7; color: #71717a; }

/* best-value pill in the Crewli header */
.lp-compare__badge {
  display: inline-block;
  background: rgba(255,255,255,0.22);
  color: #fff;
  font-size: 0.66rem; font-weight: 700; letter-spacing: 0.04em;
  padding: 4px 9px; border-radius: 999px;
  text-transform: none;
}

/* price row */
.lp-compare__price { font-weight: 800; color: var(--color-primary); font-size: 1.7rem; line-height: 1; }
.lp-compare__price small { font-size: 0.85rem; font-weight: 600; color: var(--color-body-text); }
.lp-compare__price-old { font-weight: 700; color: #a1a1aa; font-size: 1.05rem; }


/* =============================================================
   9 — PRICING
   ============================================================= */
.lp-price {
  max-width: 560px; margin: 0 auto;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 24px;
  padding: 48px 44px;
  text-align: center;
  box-shadow: 0 40px 80px -40px rgba(0,0,0,0.5);
  position: relative;
}
.lp-price__badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--color-primary-hover), var(--color-primary));
  color: #fff; font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
  padding: 7px 18px; border-radius: 999px;
  box-shadow: 0 10px 24px -10px rgba(194,65,12,0.7);
}
.lp-price__amount {
  font-size: clamp(3rem, 8vw, 4.5rem); font-weight: 800;
  color: var(--color-black); line-height: 1; letter-spacing: -0.03em;
  margin: 10px 0 6px;
}
.lp-price__amount span { font-size: 1.1rem; font-weight: 600; color: var(--color-body-text); }
.lp-price__compare { color: var(--color-body-text); margin-bottom: 28px; }
.lp-price__compare s { color: #9ca3af; }
.lp-price__list {
  text-align: left; max-width: 360px; margin: 0 auto 32px;
  display: flex; flex-direction: column; gap: 14px;
}
.lp-price__li { display: flex; gap: 12px; align-items: flex-start; color: var(--color-black); font-weight: 500; }
.lp-price__li svg { width: 22px; height: 22px; flex-shrink: 0; stroke: var(--color-success); fill: none; stroke-width: 2.4; margin-top: 1px; }

/* pricing split: card on the left, copy on the right */
.lp-pricing-split {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 56px;
  align-items: center;
}
.lp-pricing-split__left .lp-section__tag { margin-bottom: 14px; }
.lp-pricing-split__left .lp-section__title { margin-bottom: 28px; text-align: left; }
.lp-pricing-split .lp-price { max-width: none; margin: 0; }
.lp-pricing-split__right h3 {
  font-size: 1.5rem; font-weight: 700; color: var(--color-black);
  letter-spacing: -0.01em; margin-bottom: 18px;
}
.lp-pricing-split__right p {
  color: var(--color-body-text); font-size: 1.05rem; line-height: 1.8; margin-bottom: 18px;
}
.lp-pricing-split__right p:last-child { margin-bottom: 0; }
.lp-pricing-split__right strong { color: var(--color-black); font-weight: 700; }


/* =============================================================
   10 — USE CASES
   ============================================================= */
.lp-uses { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.lp-use {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 28px 24px;
  transition: background 0.2s ease, transform 0.2s ease;
}
.lp-use:hover { background: rgba(234,88,12,0.12); transform: translateY(-4px); }
.lp-use__icon {
  width: 44px; height: 44px; border-radius: 11px;
  background: rgba(234,88,12,0.18);
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.lp-use__icon svg { width: 22px; height: 22px; stroke: #fb923c; fill: none; stroke-width: 2; }
.lp-use__title { font-weight: 700; color: #fff; margin-bottom: 6px; }
.lp-use__text { font-size: 0.9rem; color: rgba(255,255,255,0.62); }


/* =============================================================
   11 — PROOF (operator story)
   ============================================================= */
.lp-proof {
  max-width: 860px; margin: 0 auto;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 22px;
  padding: 52px 48px;
  text-align: center;
  box-shadow: 0 30px 60px -40px rgba(0,0,0,0.35);
}
.lp-proof__mark { font-size: 3rem; line-height: 1; color: var(--color-primary); font-weight: 800; margin-bottom: 12px; }
.lp-proof__quote {
  font-size: clamp(1.25rem, 2.4vw, 1.65rem);
  font-weight: 600; line-height: 1.4; color: var(--color-black);
  letter-spacing: -0.01em; margin-bottom: 24px;
}
.lp-proof__quote em { font-style: normal; color: var(--color-primary); }
.lp-proof__by { color: var(--color-body-text); font-weight: 600; }


/* =============================================================
   12 — FAQ
   ============================================================= */
.lp-faq {
  max-width: 940px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.lp-faq__item {
  border: 1px solid var(--color-border);
  border-radius: 14px;
  background: #fff;
  padding: 26px 28px;
}
.lp-faq__q { font-size: 1.12rem; font-weight: 700; color: var(--color-black); margin-bottom: 10px; }
.lp-faq__a { color: var(--color-body-text); font-size: 0.97rem; line-height: 1.7; }


/* =============================================================
   13 — CTA
   ============================================================= */
.lp-cta {
  position: relative; overflow: hidden;
  background: radial-gradient(700px 400px at 50% 0%, rgba(234,88,12,0.35), transparent 65%),
              linear-gradient(180deg, #7c2d12, #09090b);
  padding: 100px 0; text-align: center;
}
.lp-cta__title {
  font-size: clamp(1.9rem, 4.4vw, 2.9rem); font-weight: 700;
  color: #fff; margin-bottom: 18px; line-height: 1.12; letter-spacing: -0.02em;
}
.lp-cta__title em { font-style: normal; color: #fdba74; }
.lp-cta__sub { color: rgba(255,255,255,0.78); font-size: 1.15rem; max-width: 560px; margin: 0 auto 36px; }
.lp-cta__note { margin-top: 20px; color: rgba(255,255,255,0.6); font-size: 0.95rem; }
.lp-cta__note strong { color: #fff; }


/* =============================================================
   13b — ANIMATED PRICE BARS (real data: $150 vs $200+)
   ============================================================= */
.lp-bars {
  max-width: 560px;
  margin: 0 auto 44px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.lp-bar-row { display: flex; align-items: center; gap: 18px; }
.lp-bar-label {
  flex: 0 0 110px;
  font-weight: 700;
  color: var(--color-black);
  text-align: right;
  font-size: 0.95rem;
}
.lp-bar-track {
  flex: 1;
  background: rgba(0,0,0,0.06);
  border-radius: 999px;
  height: 46px;
  overflow: hidden;
}
.lp-bar-fill {
  width: 0;
  height: 100%;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 18px;
  color: #fff;
  font-weight: 800;
  font-size: 1.05rem;
  transition: width 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}
.lp-bar-fill--crewli { background: linear-gradient(90deg, var(--color-primary-hover), var(--color-primary)); }
.lp-bar-fill--comp   { background: linear-gradient(90deg, #a1a1aa, #71717a); }
.reveal.is-visible .lp-bar-fill { width: var(--w); }
.lp-bar-tag {
  text-align: center;
  color: var(--color-body-text);
  font-weight: 600;
  font-size: 0.95rem;
}
.lp-bar-tag strong { color: var(--color-primary); }

/* ----- Hero phone load animation ----- */
.lp-app__bar span { width: 0; animation: lp-barfill 1.4s cubic-bezier(0.22,1,0.36,1) 0.5s both; }
@keyframes lp-barfill { to { width: 72%; } }
.lp-app__list .lp-app__row { opacity: 0; animation: lp-rowin 0.5s ease both; }
.lp-app__list .lp-app__row:nth-child(1) { animation-delay: 0.35s; }
.lp-app__list .lp-app__row:nth-child(2) { animation-delay: 0.55s; }
.lp-app__list .lp-app__row:nth-child(3) { animation-delay: 0.75s; }
.lp-app__list .lp-app__row:nth-child(4) { animation-delay: 0.95s; }
.lp-app__list .lp-app__row:nth-child(5) { animation-delay: 1.15s; }
@keyframes lp-rowin { from { opacity: 0; transform: translateX(10px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  .lp-app__bar span { width: 72%; animation: none; }
  .lp-app__list .lp-app__row { opacity: 1; animation: none; }
  .reveal.is-visible .lp-bar-fill { transition: none; }
}


/* =============================================================
   13c — SPLIT + SELF-CHECKING CHECKLIST MOCKUP
   ============================================================= */
.lp-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.lp-split__copy .lp-section__desc { margin-top: 4px; }

.lp-cl {
  max-width: 440px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 34px 64px -38px rgba(0,0,0,0.45);
}
.lp-cl__top {
  background: linear-gradient(135deg, var(--color-primary-hover), var(--color-primary));
  color: #fff;
  padding: 24px 26px;
}
.lp-cl__brand { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; opacity: 0.85; }
.lp-cl__title { font-size: 1.32rem; font-weight: 700; margin-top: 4px; }
.lp-cl__meta { display: flex; justify-content: space-between; align-items: center; margin-top: 18px; font-size: 0.85rem; font-weight: 600; }
.lp-cl__track { height: 8px; border-radius: 99px; background: rgba(255,255,255,0.3); margin-top: 10px; overflow: hidden; }
.lp-cl__track span { display: block; height: 100%; width: 0; background: #fff; border-radius: 99px; transition: width 1.3s cubic-bezier(0.22,1,0.36,1) 0.3s; }
.reveal.is-visible .lp-cl__track span { width: var(--p, 80%); }

/* Row of checklist cards */
.lp-cl-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; align-items: start; max-width: 860px; margin: 0 auto; }
.lp-cl-row .lp-cl { max-width: none; margin: 0; }

.lp-cl__items { padding: 14px 16px 22px; display: flex; flex-direction: column; gap: 4px; }
.lp-cl__item {
  display: flex; align-items: center; gap: 13px;
  padding: 13px 12px; border-radius: 12px;
  font-size: 0.96rem; color: var(--color-black);
  transition: color 0.3s ease var(--d, 0s);
}
.lp-cl__box {
  width: 24px; height: 24px; flex-shrink: 0;
  border-radius: 50%; border: 2px solid var(--color-border);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s ease var(--d, 0s), border-color 0.3s ease var(--d, 0s);
}
.lp-cl__box svg {
  width: 13px; height: 13px; stroke: #fff; fill: none; stroke-width: 3;
  opacity: 0; transform: scale(0.4);
  transition: opacity 0.3s ease var(--d, 0s), transform 0.3s ease var(--d, 0s);
}
.lp-cl__item:nth-child(1) { --d: 0.20s; }
.lp-cl__item:nth-child(2) { --d: 0.38s; }
.lp-cl__item:nth-child(3) { --d: 0.56s; }
.lp-cl__item:nth-child(4) { --d: 0.74s; }
.lp-cl__item:nth-child(5) { --d: 0.92s; }
.reveal.is-visible .lp-cl__item--check .lp-cl__box { background: var(--color-success); border-color: var(--color-success); }
.reveal.is-visible .lp-cl__item--check .lp-cl__box svg { opacity: 1; transform: none; }
.reveal.is-visible .lp-cl__item--check { color: #9ca3af; }
@media (prefers-reduced-motion: reduce) {
  .lp-cl__track span { width: var(--p, 80%); transition: none; }
  .lp-cl__item, .lp-cl__box, .lp-cl__box svg { transition: none; }
}


/* =============================================================
   13d — VISUAL STAGE (dark, glow, floating live cards)
   ============================================================= */
.lp-stage {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  border-radius: 28px;
  padding: 76px 40px;
  background: radial-gradient(600px 380px at 50% -5%, rgba(234,88,12,0.30), transparent 60%),
              linear-gradient(180deg, #1c1c1f, #0a0a0c);
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 50px 90px -44px rgba(0,0,0,0.7);
}
.lp-stage::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background-image: linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at 50% 40%, #000, transparent 72%);
}
.lp-stage__glow {
  position: absolute; top: 50%; left: 50%;
  width: 340px; height: 340px; border-radius: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(234,88,12,0.5), transparent 65%);
  filter: blur(22px); z-index: 0; pointer-events: none;
}
.lp-stage__center { position: relative; z-index: 2; max-width: 380px; margin: 0 auto; }

.lp-float { position: absolute; z-index: 3; }
.lp-float__inner {
  display: flex; align-items: center; gap: 11px;
  background: #fff; border-radius: 14px; padding: 12px 15px;
  box-shadow: 0 24px 44px -18px rgba(0,0,0,0.6);
  font-size: 0.83rem; font-weight: 700; color: var(--color-black);
  white-space: nowrap;
  animation: lp-floaty 4.5s ease-in-out infinite;
}
.lp-float--a { top: 50px;  left: 20px; }
.lp-float--b { top: 132px; right: 14px; }
.lp-float--c { bottom: 56px; left: 36px; }
.lp-float--a .lp-float__inner { animation-delay: 0s; }
.lp-float--b .lp-float__inner { animation-delay: -1.5s; }
.lp-float--c .lp-float__inner { animation-delay: -3s; }
@keyframes lp-floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

.lp-float small { display: block; font-weight: 500; color: var(--color-body-text); font-size: 0.72rem; }
.lp-float__ico {
  width: 32px; height: 32px; border-radius: 9px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.82rem; color: #fff;
}
.lp-float__ico svg { width: 17px; height: 17px; fill: none; stroke-width: 2.4; }
.lp-float__ico--ok   { background: var(--color-success); }
.lp-float__ico--ok svg { stroke: #fff; }
.lp-float__ico--temp { background: var(--color-primary-tint); }
.lp-float__ico--temp svg { stroke: var(--color-primary); }
.lp-float__ico--user { background: linear-gradient(135deg, var(--color-primary-hover), var(--color-primary)); }
@media (prefers-reduced-motion: reduce) { .lp-float__inner { animation: none; } }


/* =============================================================
   13e — PAPER PROBLEM (handwritten checklist + red pinned notes)
   ============================================================= */
.lp-section--paper { background: linear-gradient(180deg, #faf6ef, #f2eadd); }

.lp-paper-stage { position: relative; max-width: 760px; margin: 0 auto; }

.lp-paper {
  position: relative; z-index: 2;
  max-width: 430px; margin: 0 auto;
  padding: 44px 40px 52px;
  background: #fffdf6;
  background-image: repeating-linear-gradient(transparent, transparent 37px, rgba(40, 80, 140, 0.07) 38px);
  border-radius: 3px;
  transform: rotate(-1.6deg);
  box-shadow: 0 36px 66px -30px rgba(0,0,0,0.42);
}
/* second sheet peeking out behind the main page for depth */
.lp-paper__stack {
  position: absolute;
  z-index: 1;
  top: 26px;
  bottom: 18px;
  left: 50%;
  width: 92%;
  max-width: 430px;
  transform: translateX(-50%) rotate(3.4deg);
  background: #fdf6e6;
  border: 1px solid #ece2cd;
  border-radius: 3px;
  box-shadow: 0 26px 46px -28px rgba(0,0,0,0.32);
}
.lp-paper__tape {
  position: absolute; top: -13px; left: 50%;
  width: 132px; height: 28px;
  transform: translateX(-50%) rotate(-2deg);
  background: rgba(214, 201, 168, 0.55);
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}
.lp-paper__stain {
  position: absolute; bottom: 30px; right: 26px;
  width: 86px; height: 86px; border-radius: 50%;
  border: 9px solid rgba(124, 74, 20, 0.13);
}
.lp-paper__title {
  font-family: 'Caveat', cursive;
  font-size: 2.3rem; font-weight: 700; color: #2b2b2b;
  line-height: 1; margin-bottom: 16px; transform: rotate(-1deg);
}
.lp-paper__line {
  display: flex; align-items: center; gap: 14px;
  font-family: 'Caveat', cursive;
  font-size: 1.55rem; color: #33373d; line-height: 38px;
}
.lp-paper__chk { width: 26px; height: 26px; flex-shrink: 0; }
.lp-paper__chk svg { width: 26px; height: 26px; fill: none; stroke: #2952a3; stroke-width: 2.2; }
.lp-paper__sign {
  font-family: 'Caveat', cursive; font-size: 1.7rem;
  color: #2952a3; transform: rotate(-4deg); display: inline-block; margin-top: 6px;
}

.lp-pin {
  position: absolute; z-index: 5;
  width: 174px; padding: 18px 18px 22px;
  font-family: 'Caveat', cursive;
  font-size: 1.32rem; font-weight: 700; color: #44403a; line-height: 1.18;
  box-shadow: 0 16px 30px -12px rgba(0,0,0,0.38);
}
.lp-pin::after {
  content: ""; position: absolute; right: 0; bottom: 0;
  border-style: solid; border-width: 0 0 20px 20px;
  border-color: transparent transparent rgba(0,0,0,0.10) transparent;
}
.lp-pin--1 { top: -6px;  left: -16px; background: #fff59d; transform: rotate(-5deg); }
.lp-pin--2 { top: 122px; right: -18px; background: #ffd5e0; transform: rotate(4deg); }
.lp-pin--3 { bottom: 2px; left: -2px;  background: #bfe6ff; transform: rotate(-2deg); }
.lp-pin--4 { bottom: -14px; right: -4px; background: #c8f0d2; transform: rotate(3deg); }


/* =============================================================
   13g — PROBLEM SPLIT (paper left, accountability text right)
   ============================================================= */
.lp-problem {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.lp-problem__text .lp-section__title { margin-bottom: 22px; }
.lp-problem__text p {
  color: var(--color-body-text);
  font-size: 1.08rem;
  line-height: 1.8;
  margin-bottom: 18px;
}
.lp-problem__text p:last-child { margin-bottom: 0; }
.lp-problem__text strong { color: var(--color-black); font-weight: 700; }
/* yellow top-right, pink right-mid; blue + green sit side by side below the list */
.lp-problem .lp-pin--1 { top: 8px;     right: -12px; left: auto; }
.lp-problem .lp-pin--2 { top: 268px;   right: -14px; left: auto; }
.lp-problem .lp-pin--4 { bottom: -26px; left: 24px;   right: auto; }
.lp-problem .lp-pin--3 { bottom: -26px; left: 212px;  right: auto; }


/* =============================================================
   13f — PROSE (readable SEO body copy)
   ============================================================= */
.lp-prose { max-width: 720px; margin: 52px auto 0; }
.lp-prose h3 {
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--color-black);
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.lp-prose p {
  color: var(--color-body-text);
  font-size: 1.08rem;
  line-height: 1.8;
  margin-bottom: 20px;
}
.lp-prose p:last-child { margin-bottom: 0; }
.lp-prose strong { color: var(--color-black); font-weight: 700; }


/* =============================================================
   14 — RESPONSIVE
   ============================================================= */
@media (max-width: 1023px) {
  .lp-hero__inner { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .lp-phone-wrap { justify-content: center; }
  .lp-hero__sub { margin-left: auto; margin-right: auto; }
  .lp-hero__actions { justify-content: center; }
  .lp-hero__eyebrow { margin-left: auto; margin-right: auto; }
  .lp-pain-grid, .lp-feature-grid, .lp-shots, .lp-cards { grid-template-columns: repeat(2, 1fr); }
  .lp-uses { grid-template-columns: repeat(2, 1fr); }
  .lp-split { grid-template-columns: 1fr; gap: 40px; }
  .lp-cl-row { grid-template-columns: 1fr; gap: 24px; }
  .lp-cl-row .lp-cl { max-width: 440px; margin: 0 auto; }
  .lp-problem { grid-template-columns: 1fr; gap: 48px; }
  .lp-problem .lp-pin { position: static; margin: 14px auto 0; transform: none; width: auto; max-width: 280px; }
  .lp-problem .lp-paper-stage { display: flex; flex-direction: column; align-items: center; }
  .lp-pricing-split { grid-template-columns: 1fr; gap: 44px; }
  .lp-float--a { left: 0; }
  .lp-float--b { right: 0; }
  .lp-float--c { left: 8px; }
  .lp-hero { padding: 108px 0 72px; }
  .lp-section { padding: 64px 0; }
}

@media (max-width: 767px) {
  .lp-stage { padding: 44px 18px; border-radius: 20px; }
  .lp-float { display: none; }
}

@media (max-width: 767px) {
  .lp-pain-grid, .lp-feature-grid, .lp-shots, .lp-uses, .lp-faq { grid-template-columns: 1fr; }
  .lp-section { padding: 48px 0; }
  .lp-hero { padding: 92px 0 60px; }
  .lp-hero__actions { flex-direction: column; align-items: stretch; }
  .lp-compare__cell { padding: 13px 10px; font-size: 0.82rem; }
  .lp-compare__row { grid-template-columns: 1.25fr 1fr 1fr; }
  .lp-compare__badge { display: none; }
  .lp-compare__yes, .lp-compare__no, .lp-compare__maybe { width: 20px; height: 20px; margin-right: 7px; font-size: 0.7rem; }
  .lp-compare__price { font-size: 1.3rem; }
  .lp-price { padding: 40px 26px; }
  .lp-proof { padding: 40px 26px; }
  .lp-pricing-split__right h3 { font-size: 1.3rem; }
}
