/* /lp-indexing.aspx - Prism Deterministic Phase 2 (2026-03-05) */

:root {
  --lb-text: #0A2540;
  --lb-muted: #52525B;
  --lb-muted-light: #6B7280;
  --lb-border: rgba(10, 37, 64, 0.10);
  --lb-border-strong: rgba(10, 37, 64, 0.14);
  --lb-surface: #F0F9FF;
  --lb-surface-soft: #F8FBFF;
  --lb-primary: #635BFF;
  --lb-primary-hover: #4B44FF;
  /* Radar / report preview accents (lp-indexing hero; matches approved prototype) */
  --lb-radar-navy-deep: #102e57;
  --lb-report-radius: 24px;
  --lb-report-shadow: 0 18px 50px rgba(10, 37, 64, 0.08);

  /* Sticky header anchor offset */
  --lp-scroll-offset: 112px;

  /* Scroll reveal easing (spec: cubic-bezier(0.16, 1, 0.3, 1)) */
  --lp-reveal-easing: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
}

html { scroll-padding-top: var(--lp-scroll-offset); }

body {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--lb-text);
  background: #fff;
}

a { color: inherit; text-decoration: none; }

a:hover { text-decoration: underline; }

code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  background: rgba(10, 37, 64, 0.06);
  border: 1px solid var(--lb-border);
  padding: 0.12rem 0.35rem;
  border-radius: 6px;
}

/* ===== Layout ===== */
.lp-page { min-height: 100vh; display: flex; flex-direction: column; }
.lp-main { flex: 1; }

.lp-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Anchor offset for sticky header */
section[id] { scroll-margin-top: var(--lp-scroll-offset); }

.lp-muted { color: var(--lb-muted); }
.lp-small { font-size: 14px; line-height: 1.5; }
.lp-mb0 { margin-bottom: 0; }

/* ===== Header ===== */
.lp-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(10, 37, 64, 0.08);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
}

.lp-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 22px;
  padding-bottom: 22px;
  gap: 16px;
}

.lp-logo img {
  height: 28px;
  width: auto;
  display: block;
}

.lp-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Header nav / CTA sizing per spec: 14-15px/500-600 */
.lp-header-actions .lp-btn {
  font-size: 14px;
}

/* Narrow viewports (~375px): single-row flex + nowrap CTA overflows; stack logo and actions and
   let the primary CTA span a full row so it cannot extend past the viewport. */
@media (max-width: 480px) {
  .lp-header-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .lp-header-actions {
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 8px 10px;
  }

  .lp-header-actions .lp-btn-primary {
    flex: 1 1 100%;
    min-width: 0;
    white-space: normal;
    text-align: center;
  }
}

/* ===== Buttons ===== */
.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 12px 20px;
  font-weight: 600;
  font-size: 16px;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 200ms ease-out, box-shadow 200ms ease-out, background-color 200ms ease-out, border-color 200ms ease-out;
}

.lp-btn:focus {
  outline: 2px solid var(--lb-primary);
  outline-offset: 2px;
}

.lp-btn-primary {
  background: var(--lb-primary);
  border-color: var(--lb-primary);
  color: #fff;
  box-shadow: 0 8px 20px rgba(99, 91, 255, 0.18);
}

.lp-btn-primary:hover,
.lp-btn-primary:focus {
  background: var(--lb-primary-hover);
  border-color: var(--lb-primary-hover);
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(99, 91, 255, 0.24);
}

/* Ghost/outlined secondary per spec */
.lp-btn-secondary {
  background: transparent;
  border-color: var(--lb-border-strong);
  color: var(--lb-text);
}

.lp-btn-secondary:hover,
.lp-btn-secondary:focus {
  background: rgba(99, 91, 255, 0.06);
  border-color: rgba(99, 91, 255, 0.25);
  color: var(--lb-text);
  text-decoration: none;
}

/* ===== Hero ===== */
.lp-hero {
  padding: 120px 0 96px;
  background: #fff;
  position: relative;
  overflow: hidden;
}

/* Radial accent behind hero with subtle ambient motion */
.lp-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 400px at 70% 25%, rgba(99, 91, 255, 0.18), rgba(99, 91, 255, 0) 70%);
  pointer-events: none;
  animation: lp-hero-ambient 12s ease-in-out infinite alternate;
}

@keyframes lp-hero-ambient {
  0%   { transform: translate(0, 0); }
  100% { transform: translate(-20px, 10px); }
}

.lp-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
  position: relative;
}

/* Spec: 12px/600, uppercase, tracking +0.08em, color #52525B */
.lp-eyebrow {
  color: #52525B;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
}

/* Spec: 56px/800, line-height 1.05, letter-spacing -0.02em */
.lp-h1 {
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 12px 0 16px;
  color: var(--lb-text);
}

/* Spec: 18-20px/400, line-height 1.6 */
.lp-subhead {
  font-size: 19px;
  line-height: 1.6;
  color: var(--lb-muted);
  max-width: 560px;
  margin: 0;
}

/* Bullet list with inline check SVG icons */
.lp-bullets {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  color: var(--lb-muted);
}

/* Spec: 16px/400, line-height 1.6 */
.lp-bullet-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 8px 0;
  font-size: 16px;
  line-height: 1.6;
}

.lp-bullet-item svg {
  flex-shrink: 0;
  margin-top: 5px;
}

.lp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

/* ===== Proof row chips (NEW) ===== */
.lp-proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

/* Spec: 12px radius, 1px border, bg rgba(240,249,255,0.6), 14px/500 */
.lp-proof-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid rgba(10, 37, 64, 0.10);
  border-radius: 12px;
  background: rgba(240, 249, 255, 0.6);
  font-size: 14px;
  font-weight: 500;
  color: var(--lb-muted);
  transition: background 150ms ease;
}

.lp-proof-chip:hover {
  background: rgba(240, 249, 255, 0.9);
}

.lp-proof-chip svg {
  flex-shrink: 0;
}

/* ===== Hero: Index Coverage Radar report panel (replaces empty image placeholder) ===== */
.lp-hero-report {
  position: relative;
  border-radius: var(--lb-report-radius);
  box-shadow: var(--lb-report-shadow);
}

/* Outer card: light gradient shell matching prototype “report” panel */
.lp-report-panel {
  padding: 24px;
  border-radius: var(--lb-report-radius);
  border: 1px solid rgba(10, 37, 64, 0.08);
  background: linear-gradient(180deg, #fff, var(--lb-surface-soft));
}

.lp-report-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 16px;
}

/* Indigo pill label for the radar module */
.lp-report-badge {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(99, 91, 255, 0.08);
  color: var(--lb-primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.lp-report-title {
  margin: 12px 0 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--lb-text);
}

.lp-report-preview-label {
  font-size: 13px;
  color: var(--lb-muted-light);
  flex-shrink: 0;
}

/* Dark “radar” canvas: conic rings + radial glows (decorative) */
.lp-radar {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border-radius: 20px;
  min-height: 340px;
  color: #fff;
  background:
    radial-gradient(circle at 20% 30%, rgba(0, 200, 255, 0.18), transparent 24%),
    radial-gradient(circle at 70% 65%, rgba(99, 91, 255, 0.14), transparent 22%),
    linear-gradient(180deg, var(--lb-text), var(--lb-radar-navy-deep));
}

.lp-radar::before {
  content: "";
  position: absolute;
  inset: -20%;
  background: radial-gradient(
    circle at 50% 50%,
    transparent 0 28%,
    rgba(255, 255, 255, 0.08) 29% 30%,
    transparent 31% 45%,
    rgba(255, 255, 255, 0.05) 46% 47%,
    transparent 48% 62%,
    rgba(255, 255, 255, 0.03) 63% 64%,
    transparent 65%
  );
  opacity: 0.75;
  pointer-events: none;
}

.lp-radar-chip {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* Bottom-left workflow caption */
.lp-radar-flow {
  position: absolute;
  left: 24px;
  bottom: 26px;
  z-index: 1;
  max-width: 18ch;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.15;
}

/* Sample findings metric — glass card */
.lp-radar-metric {
  position: absolute;
  right: 20px;
  bottom: 20px;
  z-index: 1;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.lp-radar-metric-label {
  display: block;
  font-size: 12px;
  opacity: 0.85;
  font-weight: 600;
}

.lp-radar-metric-value {
  display: block;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-top: 2px;
}

.lp-radar-metric-sub {
  display: block;
  font-size: 12px;
  opacity: 0.85;
  margin-top: 2px;
}

/* ===== Mid-page: Priority Index Queue (two-column rhythm break) ===== */
.lp-section--mid-queue {
  padding: 88px 0;
  background: linear-gradient(180deg, #fff 0%, var(--lb-surface-soft) 45%, #fff 100%);
  border-top: 1px solid var(--lb-border);
  border-bottom: 1px solid var(--lb-border);
}

/* Prototype-style indigo eyebrow in this section only (hero keeps standard .lp-eyebrow) */
.lp-section--mid-queue .lp-eyebrow {
  color: var(--lb-primary);
  font-weight: 700;
}

.lp-mid-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  align-items: stretch;
  max-width: 1080px;
  margin: 0 auto;
}

.lp-mid-left {
  padding: 28px;
  border-radius: 20px;
  border: 1px solid rgba(10, 37, 64, 0.08);
  background: #fff;
  box-shadow: var(--lb-report-shadow);
}

.lp-mid-h2 {
  margin: 10px 0 0;
  font-size: clamp(24px, 2.5vw, 32px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--lb-text);
}

.lp-mid-lede {
  margin: 12px 0 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--lb-muted);
}

.lp-mid-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.lp-mid-pill {
  padding: 8px 10px;
  border-radius: 999px;
  background: var(--lb-surface-soft);
  border: 1px solid var(--lb-border);
  font-size: 13px;
  font-weight: 600;
  color: var(--lb-text);
}

.lp-mid-right {
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  border: 1px solid var(--lb-border);
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

/* Left-accent callout strip (prototype “callout”) */
.lp-mid-callout {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 22px 22px 22px 26px;
  border-left: 4px solid var(--lb-primary);
  background: linear-gradient(180deg, #fff, var(--lb-surface-soft));
}

.lp-mid-callout-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--lb-text);
}

.lp-mid-callout-text {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--lb-muted);
}

.lp-mid-divider {
  height: 1px;
  background: var(--lb-border);
  margin: 0;
}

.lp-mid-stack {
  display: grid;
  gap: 14px;
  padding: 20px 22px 24px;
}

/* Stacked mini-cards inside the right column */
.lp-mid-mini {
  padding: 16px;
  border-radius: 14px;
  border: 1px solid rgba(10, 37, 64, 0.08);
  background: linear-gradient(180deg, #fff, var(--lb-surface-soft));
}

.lp-mid-mini strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--lb-text);
}

.lp-mid-mini p {
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--lb-muted);
}

/* ===== Sections ===== */
/* Spec: 96px top/bottom */
.lp-section { padding: 96px 0; }
.lp-section--alt { background: var(--lb-surface); }

.lp-section-title {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 32px;
}

/* Spec: 36px/700, line-height 1.15, letter-spacing -0.01em */
.lp-section-title h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0;
}

.lp-section-title p {
  margin: 12px 0 0;
  color: var(--lb-muted);
}

/* ===== Grids ===== */
/* Spec: gap 24px */
.lp-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.lp-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.lp-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* ===== Cards ===== */
/* Spec: 12px radius, border rgba(10,37,64,0.10), shadow 0 1px 3px rgba(0,0,0,0.08), padding 24px */
.lp-card {
  border: 1px solid var(--lb-border);
  border-radius: 12px;
  padding: 24px;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}

/* Spec: card H3 18px/600 */
.lp-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 8px;
}

/* Spec: card body 16px/400, line-height 1.6 */
.lp-card p {
  margin: 0;
  color: var(--lb-muted);
  font-size: 16px;
  line-height: 1.6;
}

/* Spec: feature cards hover translateY(-4px) + shadow 0 8px 24px rgba(0,0,0,0.12) */
.lp-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* Spec: step cards hover shadow deepen only (no lift) */
.lp-step-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* ===== Step visuals (lightweight icons) ===== */
.lp-step-visual {
  margin-top: 16px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(99, 91, 255, 0.10);
  color: var(--lb-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.lp-step-visual svg {
  width: 22px;
  height: 22px;
}

/* ===== Proof metrics ===== */
.lp-metric-card {
  text-align: center;
}

.lp-metric-value {
  font-size: 42px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--lb-text);
}

.lp-metric-label {
  margin-top: 8px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--lb-muted);
}

/* ===== Quotes ===== */
.lp-quote {
  margin: 0;
  border: 1px solid var(--lb-border);
  border-radius: 12px;
  padding: 24px;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.lp-quote p {
  margin: 0 0 12px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--lb-text);
}

.lp-quote footer {
  font-size: 14px;
  color: var(--lb-muted);
}

/* ===== Pricing ===== */
.lp-pricing-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.lp-pricing-card--featured {
  border-color: rgba(99, 91, 255, 0.35);
  box-shadow: 0 12px 30px rgba(99, 91, 255, 0.12);
}

.lp-plan-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lb-muted);
}

.lp-plan-price {
  font-size: 36px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-top: 10px;
}

.lp-plan-price-sub {
  font-size: 14px;
  font-weight: 600;
  color: var(--lb-muted);
}

.lp-plan-kicker {
  margin-top: 8px;
  font-size: 14px;
  color: var(--lb-muted);
}

.lp-plan-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lp-plan-list li {
  position: relative;
  padding-left: 22px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--lb-muted);
}

.lp-plan-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--lb-primary);
  font-weight: 800;
}

.lp-plan-cta {
  margin-top: 18px;
  width: 100%;
}

/* ===== Feature grid iconography ===== */
/* Spec: 56x56, radius 16px, bg rgba(99,91,255,0.10) */
.lp-feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(99, 91, 255, 0.10);
  color: var(--lb-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

/* Spec: 24x24 stroke icons */
.lp-feature-icon svg {
  width: 24px;
  height: 24px;
}

/* ===== Step indicators ===== */
.lp-step-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

/* Spec: 40-48px circle, bg #635BFF, white number 18px/700 */
.lp-step-badge {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: var(--lb-primary);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 10px 24px rgba(99, 91, 255, 0.20);
}

/* Spec: step title 16-18px/600 */
.lp-step-head h3 {
  margin: 0;
  font-size: 17px;
  font-weight: 600;
}

/* ===== FAQ: native <details>/<summary> (no accordion JS) ===== */
/* Spec: max-width 720px centered, not card-like, 1px bottom border */
.lp-accordion {
  max-width: 720px;
  margin: 0 auto;
}

details.lp-accordion-item {
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  margin-bottom: 0;
  border-bottom: 1px solid var(--lb-border);
}

/* Spec: question 16-18px/600, padding 18-20px vertical (summary replaces button) */
.lp-accordion-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  border: 0;
  background: transparent;
  color: var(--lb-text);
  cursor: pointer;
  text-align: left;
  font-size: 17px;
  font-weight: 600;
  transition: color 200ms ease;
  list-style: none; /* Firefox: hide default disclosure marker */
}

/* WebKit/Safari: hide default triangle so custom chevron is the only affordance */
.lp-accordion-btn::-webkit-details-marker {
  display: none;
}

.lp-accordion-btn:hover {
  color: var(--lb-primary);
}

/* Spec: focusable header row with clear focus outline */
.lp-accordion-btn:focus {
  outline: 2px solid var(--lb-primary);
  outline-offset: 2px;
}

/* Spec: chevron rotates 180deg, 200ms */
.lp-accordion-chevron {
  width: 20px;
  height: 20px;
  color: var(--lb-muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 200ms ease;
}

/* Open state tracks native details[open] (replaces aria-expanded on buttons) */
.lp-accordion-item[open] .lp-accordion-chevron {
  transform: rotate(180deg);
}

/* Body block: browser shows/hides with details; no JS height animation */
.lp-accordion-panel {
  overflow: visible;
}

/* Spec: answer 16px/400, line-height 1.6, color #52525B */
.lp-accordion-panel-inner {
  padding: 0 0 20px;
  color: var(--lb-muted);
}

.lp-accordion-panel-inner p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
}

/* ===== Microcopy & proof line below CTAs ===== */
.lp-microcopy {
  margin: 12px 0 0;
  font-size: 14px;
  color: var(--lb-muted-light);
}

.lp-proof-line {
  margin: 16px 0 0;
  font-size: 14px;
  color: var(--lb-muted-light);
  font-weight: 500;
}

/* ===== Miscellaneous (pills, callouts) ===== */
.lp-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.lp-pill {
  display: inline-block;
  padding: 8px 12px;
  border: 1px solid var(--lb-border);
  border-radius: 999px;
  color: var(--lb-muted);
  background: #fff;
  font-weight: 600;
  font-size: 14px;
}

.lp-callout {
  margin-top: 24px;
  border: 1px solid var(--lb-border);
  border-radius: 12px;
  padding: 24px;
  background: #fff;
}

.lp-callout h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 8px;
}

.lp-callout p { margin: 0; color: var(--lb-muted); }

/* Legacy FAQ items (non-accordion) */
.lp-faq-item { margin: 0 0 20px; }
.lp-faq-item h3 { font-size: 16px; font-weight: 700; margin: 0 0 8px; }
.lp-faq-item p { margin: 0; color: var(--lb-muted); }

/* ===== Final CTA ===== */
/* Spec: bg with radial accent, padding 120px, centered max-width 680px */
.lp-section--cta {
  background: radial-gradient(700px 450px at 50% 10%, rgba(99, 91, 255, 0.14), rgba(240, 249, 255, 0) 70%), var(--lb-surface);
  padding: 120px 0;
}

.lp-final {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

/* Spec: 40px/800, letter-spacing -0.01em */
.lp-final h2 {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 0 0 16px;
}

/* Spec: 18px/400, line-height 1.6 */
.lp-final p {
  font-size: 18px;
  line-height: 1.6;
}

/* ===== Footer ===== */
.lp-footer {
  border-top: 1px solid var(--lb-border);
  padding: 32px 0;
  color: var(--lb-muted);
}

.lp-footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.lp-footer-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ===== Wide screens (hero only) ===== */
@media (min-width: 1600px) {
  .lp-hero .lp-container { max-width: 1360px; }

  .lp-hero-grid {
    grid-template-columns: 560px 1fr;
    gap: 80px;
  }

  .lp-hero-report {
    max-width: 640px;
    margin-left: auto;
  }
}

@media (min-width: 1920px) {
  .lp-hero .lp-container { max-width: 1600px; }

  .lp-hero-grid {
    grid-template-columns: 640px 1fr;
    gap: 96px;
  }

  .lp-h1 {
    font-size: clamp(44px, 3.5vw, 64px);
  }

  .lp-subhead {
    font-size: 20px;
    max-width: 640px;
  }

  .lp-hero-report {
    max-width: 820px;
    margin-left: auto;
  }
}

/* ===== Tablet (spec: hero stacks at <1024px) ===== */
@media (max-width: 1023.98px) {
  .lp-hero { padding: 80px 0 64px; }

  .lp-hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* Show report panel below copy (replaces old hidden hero image on tablet) */
  .lp-hero-report {
    max-width: 560px;
    margin: 0 auto;
  }

  .lp-radar {
    min-height: 300px;
  }

  .lp-mid-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .lp-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .lp-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .lp-grid-2 { grid-template-columns: 1fr; }

  /* Split layout stacks on tablet */
  .lp-split { grid-template-columns: 1fr; }
}

/* ===== Mobile ===== */
@media (max-width: 575.98px) {
  .lp-container { padding: 0 16px; }

  .lp-hero { padding: 64px 0 48px; }
  .lp-section { padding: 64px 0; }
  .lp-section--cta { padding: 80px 0; }
  .lp-section--mid-queue { padding: 64px 0; }

  .lp-header-actions { gap: 8px; }

  .lp-btn { padding: 12px 16px; }
  .lp-header-actions .lp-btn { font-size: 13px; padding: 10px 12px; }

  .lp-actions { flex-direction: column; }
  .lp-actions .lp-btn { width: 100%; }

  .lp-form-row { flex-direction: column; }
  .lp-form-row .lp-btn { width: 100%; }

  .lp-proof-row { flex-direction: column; }

  .lp-grid-4,
  .lp-grid-3,
  .lp-grid-2 {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .lp-dcl-card { padding: 20px; }

  .lp-final h2 { font-size: 30px; }
  .lp-section-title h2 { font-size: 28px; }

  .lp-accordion-btn { padding: 16px 0; font-size: 16px; }
  .lp-accordion-panel-inner { padding: 0 0 16px; }
}

/* ===== Hero entrance stagger (CSS-driven via --hero-delay) ===== */
.lp-hero-entrance {
  opacity: 0.98;
  transform: translateY(12px);
  transition: opacity 400ms ease-out, transform 400ms ease-out;
  transition-delay: var(--hero-delay, 0ms);
  will-change: transform;
}

.lp-loaded .lp-hero-entrance {
  opacity: 1;
  transform: none;
}

/* ===== Scroll reveals ===== */
/* Content visible by default; no JS-gated opacity:0 hiding */
.lp-reveal {
  opacity: 1;
  transform: none;
}

.lp-reveal-item {
  opacity: 1;
  transform: none;
}

/* ===== Split layout (Dynamic Content Links) ===== */
/* Two-column copy + image layout; stacks on mobile */
.lp-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

@media (min-width: 992px) {
  .lp-split {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
}

.lp-split-copy h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 12px;
}

.lp-split-copy p {
  color: var(--lb-muted);
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 12px;
}

.lp-split-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10);
}

.lp-split-image img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Dynamic Content Links card within the product-path service stack */
.lp-dcl-card {
    margin-top: 32px;
    padding: 32px;
}

/* ===== Video demo ===== */
/* 16:9 container with card-matching radius/shadow */
.lp-video-wrap {
  max-width: 860px;
  margin: 0 auto;
}

.lp-video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  background: #000;
}

.lp-video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 12px;
}

/* Play overlay button centred on the poster */
.lp-video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
  z-index: 2;
  transition: transform 200ms ease-out, opacity 200ms ease-out;
}

.lp-video-play:hover {
  transform: translate(-50%, -50%) scale(1.08);
}

.lp-video-play:focus {
  outline: 2px solid var(--lb-primary);
  outline-offset: 4px;
  border-radius: 50%;
}

/* ===== Hero capture form ===== */
.lp-hero-form {
  margin-top: 24px;
}

.lp-form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: stretch;
}

.lp-input {
  flex: 1 1 200px;
  padding: 12px 16px;
  border: 1px solid var(--lb-border-strong);
  border-radius: 12px;
  font-size: 15px;
  font-family: inherit;
  color: var(--lb-text);
  background: #fff;
  outline: none;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}

.lp-input:focus {
  border-color: var(--lb-primary);
  box-shadow: 0 0 0 3px rgba(99, 91, 255, 0.12);
}

.lp-input::placeholder {
  color: var(--lb-muted-light);
}

.lp-form-error {
  margin: 8px 0 0;
  font-size: 14px;
  color: #dc2626;
}

/* ===== AG1 preview highlight ===== */

/* Inline highlight span used in the AG1 hero H1 */
.lp-highlight {
  color: var(--lb-primary);
}

/* Fixed badge shown only when ?ag1=1 preview is active */
.lp-ag1-badge {
  position: fixed;
  bottom: 16px;
  right: 16px;
  z-index: 9999;
  background: var(--lb-primary);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 6px 14px;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
  pointer-events: none;
  opacity: 0.92;
}

/* ===== Reduced motion ===== */
@media (prefers-reduced-motion: reduce) {
  .lp-hero-entrance,
  .lp-reveal,
  .lp-reveal-item {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }

  .lp-hero::before {
    animation: none !important;
  }

  .lp-card,
  .lp-btn {
    transition: none !important;
  }
}
