/* ============================================================================
   report.css  ·  Growth Engine Report  ·  lead-magnet landing. ONE job: maximize
   form submissions in exchange for the 20-page report. Conversion-focused, brand
   system (Geist + tokens, sand surface, mono labels, hairline structure, blue
   accent for the unlock/CTA energy). Scoped to .lm-page. Loaded after base.css +
   sention.css. New classes are .lm-*.
   ============================================================================ */
.lm-page {
  background: var(--bg-base);
  color: var(--text-primary);
  overflow-x: clip;
}
.lm-page .lm-shell {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}
.lm-page .lm-kicker {
  margin: 0 0 clamp(1rem, 0.7rem + 1vw, 1.5rem);
  font-family: var(--font-mono);
  font-size: var(--fs-label);
  font-weight: 500;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--ink);
}

/* the wine COST mark: the brand's rarest accent (--accent-alt), reserved for
   the stakes the report exposes (the leak in the hero, the alarm in the
   sample). Color only, inherits the surrounding weight. Blue stays the report /
   proof / action; wine is the cost. */
.lm-page .lm-cost { color: var(--accent-alt); }

/* ----------------------------------------------------------------------------
   HERO  ·  left: the value + proof + the object you get. right: the form.
   -------------------------------------------------------------------------- */
.lm-page .lm-hero {
  padding-top: clamp(7rem, 5rem + 6vw, 10rem);
  padding-bottom: clamp(3rem, 2rem + 4vw, 5.5rem);
}
.lm-page .lm-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(2.5rem, 1.5rem + 4vw, 4.5rem);
  align-items: start;
}
@media (min-width: 900px) {
  .lm-page .lm-hero__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: clamp(2.5rem, 1rem + 4vw, 5rem);
  }
}

.lm-page .lm-hero__headline {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 600;
  /* sized so the manual 2-line break (br after "Engine") fits the copy column
     on one line each, down to mobile. */
  font-size: clamp(1.9rem, 1rem + 3vw, 3.4rem);
  /* the page's biggest type: tight, confident, brand-grade display. Blue: the
     headline carries the brand accent; the kicker above it is ink. */
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--accent);
}
/* the red underline under "Microscope", exactly the width of the word. */
.lm-page .lm-hero__mark {
  position: relative;
  white-space: nowrap;
}
.lm-page .lm-hero__mark::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.06em;
  height: 4px;
  background: var(--accent-alt);
  border-radius: 2px;
}
/* SIGNATURE MOTION · the red line DRAWS in under "Microscope" once the headline
   has settled (the lens marking the focal word). Rest state = fully drawn, so
   no-JS and reduced-motion land on it complete. Only transform animates. */
@media (prefers-reduced-motion: no-preference) {
  .lm-page .lm-hero__mark::after {
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1) 0.5s;
  }
  .lm-page .lm-hero__headline.is-in .lm-hero__mark::after {
    transform: scaleX(1);
  }
}
.lm-page .lm-hero__sub {
  margin: clamp(1.25rem, 0.9rem + 1.4vw, 2rem) 0 0;
  max-width: 56ch;
  font-family: var(--font-sans);
  font-size: clamp(1.0625rem, 1rem + 0.4vw, 1.2rem);
  line-height: 1.6;
  color: var(--text-primary);
}

/* the badge: replaces the invented "$3,000 value". Honest, concrete. */
.lm-page .lm-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  margin-top: clamp(1.5rem, 1.1rem + 1.6vw, 2.25rem);
  padding: 0.55rem 1rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: color-mix(in srgb, var(--accent) 7%, transparent);
  border: 1px solid color-mix(in srgb, var(--accent) 30%, transparent);
  border-radius: 999px;
}

/* the proof stats: real credibility, mono numbers. */
.lm-page .lm-stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 1.4rem + 2.5vw, 3.5rem);
  margin-top: clamp(2rem, 1.5rem + 2vw, 3rem);
  padding-top: clamp(1.5rem, 1.1rem + 1.6vw, 2.25rem);
  border-top: 1px solid var(--line);
}
.lm-page .lm-stat__num {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: clamp(1.85rem, 1.2rem + 2vw, 2.6rem);
  line-height: 1;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
}
.lm-page .lm-stat__label {
  margin-top: 0.5rem;
  max-width: 18ch;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  line-height: 1.4;
  color: var(--text-muted);
}

/* the report mockup: the object you take, shown before the form. */
.lm-page .lm-mockup {
  margin: clamp(2rem, 1.5rem + 2vw, 3rem) 0 0;
}
.lm-page .lm-mockup__img {
  display: block;
  width: 100%;
  max-width: 440px;
  height: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 40px -24px rgba(19, 20, 25, 0.35);
}

/* ----------------------------------------------------------------------------
   FORM  ·  right column. The Zoho iframe is cross-origin and NOT styled; the
   container carries the brand frame + the LinkedIn justification microcopy.
   -------------------------------------------------------------------------- */
.lm-page .lm-form {
  position: sticky;
  top: clamp(6rem, 3rem + 10vh, 8rem);
  background: var(--bg-raised);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 1.1rem + 1.6vw, 2.25rem);
}
@media (max-width: 899px) {
  .lm-page .lm-form { position: static; }
}
.lm-page .lm-form__title {
  margin: 0 0 0.5rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: clamp(1.4rem, 1.1rem + 1vw, 1.85rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.lm-page .lm-form__note {
  margin: 0 0 1.25rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text-muted);
}
.lm-page .lm-form__well { width: 100%; }
.lm-page .lm-form__well iframe { display: block; width: 100%; }
/* the LinkedIn justification: defuses the required field vs "no questionnaires".
   Prose in sans (not mono): warmer + more readable, so it disarms instead of
   reading as a cold system note. */
.lm-page .lm-form__micro {
  margin: 0.9rem 0 0;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  letter-spacing: 0;
  line-height: 1.5;
  color: var(--text-muted);
}

/* ----------------------------------------------------------------------------
   FORM (native)  ·  the Zoho embed is rendered NATIVE (HTML & CSS export, not an
   iframe), styled here from tokens. Zoho's own form.css is NOT loaded; every
   .zf-* rule below replaces it. The form's own header (a stale Zoho-internal
   label unrelated to this page) is hidden; .lm-form__title / .lm-form__note
   above carry the real on-page copy instead.
   -------------------------------------------------------------------------- */
.lm-page .lm-form__well .zf-templateWidth { max-width: none; width: 100%; margin: 0; padding: 0; box-sizing: border-box; }
.lm-page .lm-form__well .zf-templateWrapper { background: transparent; box-shadow: none; border-radius: 0; }
.lm-page .lm-form__well .zf-backgroundBg { background: transparent; }
.lm-page .lm-form__well .zf-tempHeadBdr { display: none; }
.lm-page .lm-form__well .zf-subContWrap { padding: 0; }
.lm-page .lm-form__well form,
.lm-page .lm-form__well ul,
.lm-page .lm-form__well li { margin: 0; padding: 0; list-style: none; }
.lm-page .lm-form__well .zf-clearBoth { clear: both; }

.lm-page .lm-form__well .zf-tempFrmWrapper {
  padding: clamp(0.9rem, 0.7rem + 0.8vw, 1.25rem) 0;
  border-top: 1px solid var(--line);
  box-sizing: border-box;
}
.lm-page .lm-form__well .zf-subContWrap > ul > .zf-tempFrmWrapper:first-child { border-top: 0; padding-top: 0; }
.lm-page .lm-form__well .zf-labelName {
  display: block;
  margin: 0 0 0.6rem;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.92rem;
  line-height: 1.3;
  color: var(--ink);
}
.lm-page .lm-form__well .zf-important { color: var(--accent-alt); font-size: 0.92rem; font-weight: 500; margin-left: 0.15em; }
.lm-page .lm-form__well .zf-tempContDiv { margin: 0; padding: 0; }

.lm-page .lm-form__well .zf-form-sBox,
.lm-page .lm-form__well .zf-tempContDiv input[type="text"] {
  width: 100%;
  box-sizing: border-box;
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  color: var(--ink);
  background: var(--bg-base);
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  padding: 0.7rem 0.9rem;
  transition: border-color var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
}
.lm-page .lm-form__well .zf-tempContDiv input[type="text"]::placeholder { color: var(--text-faint); }
.lm-page .lm-form__well .zf-form-sBox {
  appearance: none; -webkit-appearance: none;
  cursor: pointer;
  padding-right: 2.25rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%2334353c' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
}
.lm-page .lm-form__well .zf-form-sBox:focus,
.lm-page .lm-form__well .zf-tempContDiv input[type="text"]:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--accent) 14%, transparent);
}
/* Name: First / Last side by side, faint mono sub-labels */
.lm-page .lm-form__well .zf-nameWrapper { display: flex; flex-wrap: wrap; gap: 0.8rem; }
.lm-page .lm-form__well .zf-nameWrapper > span { flex: 1 1 9rem; display: block; }
.lm-page .lm-form__well .zf-nameWrapper > span input[type="text"] { width: 100%; }
.lm-page .lm-form__well .zf-nameWrapper > span label {
  display: block;
  margin-top: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.lm-page .lm-form__well .zf-instruction {
  margin: 0.5rem 0 0;
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--text-muted);
}
.lm-page .lm-form__well .zf-errorMessage {
  margin: 0.45rem 0 0;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--accent-alt);
}

/* the privacy note: Zoho renders it with inline colour/font/size spans;
   !important is required to beat the inline style attribute Zoho generates. */
.lm-page .lm-form__well .zf-note { margin-top: 0.4rem; }
.lm-page .lm-form__well .zf-note .colour { color: var(--text-faint) !important; }
.lm-page .lm-form__well .zf-note .font { font-family: var(--font-sans) !important; }
.lm-page .lm-form__well .zf-note .size { font-size: 0.78rem !important; line-height: 1.5; }
.lm-page .lm-form__well .zf-note a { color: var(--text-muted) !important; }

.lm-page .lm-form__well .zf-fmFooter {
  padding: clamp(1.1rem, 0.9rem + 0.8vw, 1.5rem) 0 0;
  text-align: left;
}
.lm-page .lm-form__well .zf-submitColor {
  width: 100%;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-inverse);
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 2px;
  padding: 0.95rem 1.5rem;
  cursor: pointer;
  transition: background-color var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out);
}
.lm-page .lm-form__well .zf-submitColor:hover,
.lm-page .lm-form__well .zf-submitColor:focus-visible {
  background: var(--accent);
  border-color: var(--accent);
  outline: none;
}

/* ----------------------------------------------------------------------------
   INSIDE YOUR REPORT  ·  what twenty pages contain + a live sample.
   -------------------------------------------------------------------------- */
.lm-page .lm-inside {
  background: var(--bg-raised);
  padding-block: clamp(4rem, 3rem + 5vw, 7rem);
}
.lm-page .lm-inside__headline {
  margin: 0;
  max-width: 22ch;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: clamp(1.85rem, 1.2rem + 2.4vw, 2.85rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--ink);
  text-wrap: balance;
}
.lm-page .lm-bullets {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  margin: clamp(2rem, 1.5rem + 2vw, 3rem) 0 0;
  padding: 0;
  list-style: none;
}
@media (min-width: 680px) {
  .lm-page .lm-bullets { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: clamp(2rem, 1rem + 3vw, 4rem); }
}
.lm-page .lm-bullets__item {
  position: relative;
  padding: 0.95rem 0 0.95rem 1.9rem;
  font-family: var(--font-sans);
  font-size: clamp(1.0625rem, 1rem + 0.3vw, 1.15rem);
  line-height: 1.45;
  color: var(--text-primary);
  border-top: 1px solid var(--line);
}
.lm-page .lm-bullets__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.55em;
  width: 0.85rem;
  height: 1px;
  background: var(--accent);
}

/* the SAMPLE: a report excerpt styled as a document. Best conversion asset. */
.lm-page .lm-sample {
  margin-top: clamp(3rem, 2rem + 4vw, 5rem);
  background: var(--bg-base);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 1.1rem + 2vw, 3rem);
}
.lm-page .lm-sample__plate {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.25rem;
  justify-content: space-between;
  margin: 0 0 clamp(1.5rem, 1.1rem + 1.6vw, 2.25rem);
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.lm-page .lm-sample__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.75rem, 0.5rem + 1vw, 1.25rem);
  margin: 0 0 clamp(1.75rem, 1.25rem + 2vw, 2.75rem);
  padding: 0;
  list-style: none;
}
@media (min-width: 680px) {
  .lm-page .lm-sample__stats { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.lm-page .lm-sample__box {
  padding: clamp(0.9rem, 0.7rem + 0.8vw, 1.35rem);
  background: var(--bg-raised);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.lm-page .lm-sample__num {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: clamp(1.9rem, 1.3rem + 1.8vw, 2.6rem);
  line-height: 1;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
  color: var(--accent);
}
.lm-page .lm-sample__num--zero { color: var(--accent-alt); }
.lm-page .lm-sample__cap {
  margin-top: 0.55rem;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  line-height: 1.4;
  color: var(--text-muted);
}
.lm-page .lm-sample__body p {
  margin: 0 0 1em;
  max-width: 70ch;
  font-family: var(--font-sans);
  font-size: clamp(1rem, 0.96rem + 0.25vw, 1.0625rem);
  line-height: 1.65;
  color: var(--text-primary);
}
.lm-page .lm-sample__body p:last-child { margin-bottom: 0; }
.lm-page .lm-sample__kicker {
  display: block;
  margin: clamp(1.5rem, 1.1rem + 1.6vw, 2.25rem) 0 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.lm-page .lm-sample__close {
  margin-top: clamp(1.25rem, 1rem + 1.2vw, 1.75rem);
  font-weight: 600;
  color: var(--ink);
}

/* ----------------------------------------------------------------------------
   REQUEST / NOT FOR YOU  ·  the double filter (qualify + disqualify).
   -------------------------------------------------------------------------- */
.lm-page .lm-filter {
  padding-block: clamp(4rem, 3rem + 5vw, 7rem);
}
.lm-page .lm-filter__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(2.5rem, 1.5rem + 3vw, 4rem);
}
@media (min-width: 768px) {
  .lm-page .lm-filter__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(2.5rem, 1rem + 4vw, 5rem); }
}
.lm-page .lm-filter__title {
  margin: 0 0 clamp(1.25rem, 1rem + 1vw, 1.75rem);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: clamp(1.35rem, 1.1rem + 1vw, 1.7rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.lm-page .lm-filter__list { margin: 0; padding: 0; list-style: none; }
.lm-page .lm-filter__item {
  position: relative;
  padding: 0.9rem 0 0.9rem 2rem;
  font-family: var(--font-sans);
  font-size: clamp(1.0625rem, 1rem + 0.3vw, 1.15rem);
  line-height: 1.45;
  color: var(--text-primary);
  border-top: 1px solid var(--line);
}
.lm-page .lm-filter__item:last-child { border-bottom: 1px solid var(--line); }
.lm-page .lm-filter__item::before {
  position: absolute;
  left: 0;
  top: 0.85rem;
  font-family: var(--font-mono);
  font-size: 0.95rem;
  font-weight: 600;
}
.lm-page .lm-filter__col--yes .lm-filter__item::before { content: "+"; color: var(--accent); }
.lm-page .lm-filter__col--no .lm-filter__item { color: var(--text-muted); }
.lm-page .lm-filter__col--no .lm-filter__item::before { content: "\00D7"; color: var(--text-faint); }

/* ----------------------------------------------------------------------------
   MOTION  ·  sober scroll-enter (fade + translateY 16->0). The form + iframe do
   NOT animate (no layout shift). Rest state = the default; reduced-motion holds.
   -------------------------------------------------------------------------- */
.lm-page .reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: no-preference) {
  .lm-page .reveal {
    opacity: 0;
    transform: translateY(16px);
    transition:
      opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1) var(--rd, 0s),
      transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) var(--rd, 0s);
    will-change: opacity, transform;
  }
  .lm-page .reveal.is-in { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .lm-page .reveal, .lm-page .reveal.is-in { opacity: 1; transform: none; transition: none; }
}

/* ----------------------------------------------------------------------------
   RESPONSIVE  ·  <= 767px: everything is already single-column via the grids
   above; just relax measures + keep the form full width with no inner scroll.
   -------------------------------------------------------------------------- */
@media (max-width: 767px) {
  .lm-page .lm-hero__headline,
  .lm-page .lm-hero__sub,
  .lm-page .lm-stat__label,
  .lm-page .lm-inside__headline { max-width: none; }
  .lm-page .lm-mockup__img { max-width: 360px; margin-inline: auto; }
  .lm-page .lm-form { padding: clamp(1.1rem, 0.9rem + 1vw, 1.5rem); }
}
