:root {
  --head: 'Barlow Condensed', sans-serif;
  --body: 'Source Sans 3', sans-serif;
  --lq-green: #1e6b4a;
  --lq-green-dark: #15503a;
  --lq-green-vivid: #2dbe72;
  --lq-orange: #ea580c;
  --lq-orange-light: #f27340;
  --lq-canvas: #faf7f2;
  --lq-panel: #fefcf8;
  --lq-stone: #ede8df;
  --lq-muted: #f1ede6;
  --lq-dark-anchor: #141e1a;
  --lq-dark-panel: #1e2420;
  --lq-dark-sidebar: #1e2d26;
  --lq-border: #d4ccbf;
  --lq-border-strong: #a89e8f;
  --lq-border-dark: #2a3b33;
  --lq-text: #1c1712;
  --lq-text-secondary: #4a3e35;
  --lq-text-muted: #6b5e52;
  --lq-text-on-dark: #f5f0e8;
  /* Site-intentional: no dimmed/muted text on dark or green surfaces.
     Hierarchy via weight and size only — never opacity or cool tones.
     lq-text-muted-dark is a warm off-white for body/secondary on dark bg.
     Distinct from headline white (#f5f0e8) without going cold or minted. */
  --lq-text-muted-dark: #ddd8ce;
  --lq-radius-btn: 3px;
  --lq-radius-card: 4px;
  --lq-shadow-sm: 0 1px 2px rgba(28, 23, 18, 0.07);
  --lq-shadow-md: 0 3px 8px rgba(28, 23, 18, 0.09);
  --lq-shadow-lg: 0 8px 20px rgba(28, 23, 18, 0.13);
  --lq-raised-color: inset 0 1px 0 rgba(255, 255, 255, 0.25), inset 1px 0 0 rgba(255, 255, 255, 0.12), inset 0 -2px 0 rgba(0, 0, 0, 0.32), inset -1px 0 0 rgba(0, 0, 0, 0.18), 0 3px 7px rgba(0, 0, 0, 0.28), 0 1px 0 rgba(0, 0, 0, 0.45);
  --lq-raised-dark: inset 0 1px 0 rgba(255, 255, 255, 0.15), inset 1px 0 0 rgba(255, 255, 255, 0.07), inset 0 -1px 0 rgba(0, 0, 0, 0.38), inset -1px 0 0 rgba(0, 0, 0, 0.22), 0 2px 4px rgba(0, 0, 0, 0.3), 0 1px 0 rgba(0, 0, 0, 0.5);
  --lq-pressed: inset 0 4px 10px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(0, 0, 0, 0.55), inset 1px 0 4px rgba(0, 0, 0, 0.35);

  /* ── Site-intentional letter spacing ───────────────────────────────────────
     The dashboard design system locks to 4 tracking values (0.02–0.08em).
     The site uses wider tracking on uppercase labels and eyebrows by design —
     this is the field-tool / equipment-label aesthetic, not drift.
     Dashboard: tight, functional. Site: bolder, more air on caps.

     system values:        0.02em display | 0.04em card | 0.06em btn | 0.08em label
     site-only eyebrow:    0.10em
     site-only kicker:     0.12em
     site-only stamp:      0.14em  (small uppercase labels, badges)
  ── ─────────────────────────────────────────────────────────────────────── */
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--lq-canvas);
  color: var(--lq-text);
  font-family: "Source Sans 3", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
img, video { display: block; max-width: 100%; }

.lq-release h1,
.lq-release h2,
.lq-release h3,
.lq-logo,
.lq-btn,
.lq-eyebrow,
.lq-price,
.lq-badge {
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
}

.lq-wrap {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
}

.lq-section { padding: clamp(56px, 8vw, 96px) 0; }
.lq-section--tight { padding: clamp(28px, 5vw, 48px) 0; }
.lq-section--dark {
  background: var(--lq-dark-anchor);
  color: var(--lq-text-on-dark);
}
.lq-section--stone {
  background: var(--lq-stone);
  border-block: 1px solid var(--lq-border);
}
.lq-section--tool {
  background:
    linear-gradient(135deg, rgba(20, 30, 26, 0.98), rgba(30, 45, 38, 0.98)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.04) 0 2px, transparent 2px 14px);
  color: var(--lq-text-on-dark);
}

.lq-skip {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 999;
  background: var(--lq-orange);
  color: #fff;
  padding: 12px 16px;
}
.lq-skip:focus { top: 16px; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.lq-topbar {
  background: var(--lq-dark-anchor);
  color: var(--lq-text-on-dark);
  border-bottom: 1px solid var(--lq-border-dark);
}
.lq-topbar__inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 15px;
}
.lq-topbar p { margin: 0; font-weight: 800; }
.lq-topbar a { color: var(--lq-orange-light); font-weight: 800; }

.lq-nav-shell {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 247, 242, 0.96);
  border-bottom: 1px solid var(--lq-border);
  backdrop-filter: blur(12px);
}
.lq-nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.lq-logo {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1;
}
.lq-logo span { color: var(--lq-text); }
.lq-logo strong { color: var(--lq-orange); }
/* Footer: LAWN always warm white on dark bg — never green on green */
.lq-logo--footer span,
.lq-logo--footer .lq-logo__lawn { color: #F5F0E8; }
.lq-logo__lawn { color: #F5F0E8; }
.lq-logo__quoter { color: var(--lq-orange); }

.lq-nav__links,
.lq-nav__actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.lq-nav__links a,
.lq-link-action {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  color: var(--lq-text-secondary);
  font-weight: 800;
}
.lq-nav__links a[aria-current="page"] { color: var(--lq-text); }

.lq-btn {
  position: relative;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--lq-radius-btn);
  border: 1px solid rgba(0, 0, 0, 0.25);
  padding: 0 22px;
  font-size: 20px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  touch-action: manipulation;
  user-select: none;
  transition: box-shadow 160ms ease, background 160ms ease;
}
.lq-btn--primary {
  background: var(--lq-orange);
  color: #fff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    inset 1px 0 0 rgba(255, 255, 255, 0.12),
    inset 0 -2px 0 rgba(0, 0, 0, 0.32),
    inset -1px 0 0 rgba(0, 0, 0, 0.18),
    0 2px 4px rgba(0, 0, 0, 0.24),
    0 1px 0 rgba(0, 0, 0, 0.42);
}
.lq-btn--secondary {
  background: var(--lq-green);
  color: var(--lq-text-on-dark);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    inset 1px 0 0 rgba(255, 255, 255, 0.12),
    inset 0 -2px 0 rgba(0, 0, 0, 0.32),
    inset -1px 0 0 rgba(0, 0, 0, 0.18),
    0 2px 4px rgba(0, 0, 0, 0.24),
    0 1px 0 rgba(0, 0, 0, 0.42);
}
.lq-btn.is-pressing,
.lq-btn:active {
  box-shadow:
    inset 0 3px 8px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(0, 0, 0, 0.45),
    inset 1px 0 3px rgba(0, 0, 0, 0.28),
    inset 0 -1px 0 rgba(255, 255, 255, 0.08),
    inset -1px 0 0 rgba(255, 255, 255, 0.04);
  transition: box-shadow 55ms ease;
}
.lq-btn:focus-visible {
  outline: 3px solid rgba(45, 190, 114, 0.42);
  outline-offset: 3px;
}

.lq-menu-btn {
  display: none;
  width: 52px;
  height: 52px;
  border-radius: var(--lq-radius-btn);
  border: 1px solid rgba(0, 0, 0, 0.25);
  background: var(--lq-dark-sidebar);
  box-shadow: var(--lq-raised-dark);
}
.lq-menu-btn span:not(.sr-only) {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--lq-text-on-dark);
}
.lq-mobile-nav {
  background: var(--lq-dark-sidebar);
  color: var(--lq-text-on-dark);
  padding: 16px;
  border-bottom: 1px solid var(--lq-border-dark);
}
.lq-mobile-nav a {
  min-height: 52px;
  display: flex;
  align-items: center;
  border-radius: var(--lq-radius-card);
  padding: 0 14px;
  color: var(--lq-green-vivid);
  font-weight: 800;
}

.lq-mobile-cta-bar,
.lq-mobile-nav__cta {
  display: none;
}

.lq-eyebrow {
  margin: 0 0 12px;
  color: var(--lq-orange);
  font-size: 16px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.lq-release h1,
.lq-release h2 {
  margin: 0;
  color: var(--lq-text);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.lq-release h1 {
  font-size: clamp(46px, 8vw, 88px);
  line-height: 0.95;
  max-width: 15.5ch;
  letter-spacing: 0.01em;
  text-wrap: balance;
}
.lq-hero-line {
  display: block;
}

.lq-display-line {
  display: block;
}

.lq-release h2 {
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
}
.lq-release h3 {
  margin: 0;
  color: var(--lq-text);
  font-size: 24px;
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.lq-section--dark h2,
.lq-section--dark h3,
.lq-section--tool h2,
.lq-section--tool h3 { color: var(--lq-text-on-dark); }
.lq-copy {
  color: var(--lq-text-secondary);
  font-size: 18px;
  line-height: 1.6;
  max-width: 680px;
}
.lq-section--dark .lq-copy,
.lq-section--tool .lq-copy { color: var(--lq-text-muted-dark); }

.lq-grid { display: grid; gap: 20px; }
.lq-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.lq-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.lq-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.lq-hero__grid,
.lq-feature-row,
.lq-beta-form-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(320px, 0.78fr);
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
}
.lq-hero__grid > div:first-child {
  max-width: 760px;
}
.lq-feature-row:nth-child(even) .lq-feature-row__visual { order: -1; }

.lq-card {
  background: var(--lq-panel);
  border: 1px solid var(--lq-border-strong);
  border-radius: var(--lq-radius-card);
  box-shadow: var(--lq-shadow-md);
  padding: 22px;
}
.lq-card--stone { background: var(--lq-stone); }
.lq-card--dark {
  background: var(--lq-dark-panel);
  border-color: var(--lq-border-dark);
  color: var(--lq-text-on-dark);
  box-shadow: 0 8px 20px rgba(28, 23, 18, 0.22);
}
.lq-card p {
  color: var(--lq-text-secondary);
  font-size: 17px;
  line-height: 1.55;
}
.lq-card--dark h3 { color: var(--lq-text-on-dark); }
.lq-card--dark p,
.lq-section--dark p,
.lq-section--tool p,
.lq-card--dark .lq-list li { color: var(--lq-text-muted-dark); }

.lq-benefit-card {
  display: grid;
  align-content: start;
  gap: 12px;
}
.lq-benefit-card p {
  margin: 0;
  font-size: 18px;
  line-height: 1.35;
}
.lq-card-label {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 9px;
  background: var(--lq-dark-anchor);
  color: var(--lq-orange-light);
  border-radius: 2px;
  box-shadow: var(--lq-raised-dark);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.07em;
  line-height: 1;
  text-transform: uppercase;
}

.lq-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 28px;
}
.lq-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}
.lq-list li {
  display: flex;
  gap: 10px;
  color: var(--lq-text-secondary);
  font-size: 17px;
  line-height: 1.45;
}
.lq-list li::before {
  content: "✓";
  color: var(--lq-green);
  font-weight: 900;
}
.lq-section--dark .lq-list li::before,
.lq-card--dark .lq-list li::before { color: var(--lq-green-vivid); }
.lq-section-head {
  display: grid;
  gap: 14px;
  margin-bottom: 32px;
}
.lq-section-head--center {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}
.lq-note {
  margin: 24px 0 0;
  color: var(--lq-text-secondary);
  font-size: 18px;
  font-weight: 800;
}

.lq-install-code {
  max-width: 100%;
  margin: 18px 0;
  padding: 16px;
  overflow-x: auto;
  background: var(--lq-dark-anchor);
  border: 1px solid rgba(255, 247, 234, 0.18);
  border-radius: var(--lq-radius-card);
  color: var(--lq-orange-light);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -3px 0 rgba(0, 0, 0, 0.28);
}

.lq-install-code code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: clamp(13px, 1.4vw, 16px);
  font-weight: 800;
  white-space: pre;
}

.lq-section--textured-dark .lq-install-code {
  background: #0f1714;
}

.lq-hero-note {
  max-width: 520px;
  margin: 20px 0 0;
  padding: 0;
  background: none;
  border: none;
  color: var(--lq-orange);
  font-family: var(--head);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.4;
}

.lq-hero-media {
  background:
    linear-gradient(180deg, rgba(245, 240, 232, 0.04), rgba(0, 0, 0, 0)),
    var(--lq-dark-anchor);
  border: 2px solid #0d241b;
  border-radius: var(--lq-radius-card);
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -3px 0 rgba(0, 0, 0, 0.34),
    0 18px 42px rgba(0, 0, 0, 0.24);
}
.lq-hero-media__chrome {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 14px;
  background: var(--lq-dark-sidebar);
  border-bottom: 1px solid var(--lq-border-dark);
}
.lq-hero-media__dots {
  display: inline-flex;
  gap: 6px;
}
.lq-hero-media__dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(245, 240, 232, 0.22);
}
.lq-hero-media__dots span:nth-child(1) {
  background: #ff5f56;
}
.lq-hero-media__dots span:nth-child(2) {
  background: #ffbd2e;
}
.lq-hero-media__dots span:nth-child(3) {
  background: #27c93f;
}
.lq-hero-media__title {
  flex: 1;
  text-align: center;
  color: var(--lq-text-muted-dark);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.lq-hero-media__badge {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 2px;
  background: var(--lq-orange);
  color: var(--lq-dark-anchor);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: var(--lq-raised-color);
}
.lq-hero-media__body {
  margin: 12px;
  background: var(--lq-stone);
  border: 1px solid rgba(245, 240, 232, 0.16);
  box-shadow:
    inset 0 0 0 1px rgba(20, 30, 26, 0.26),
    inset 0 8px 20px rgba(0, 0, 0, 0.2);
}
.lq-hero-media__widget-shell {
  min-height: 360px;
  display: grid;
  align-items: center;
  padding: clamp(18px, 4vw, 34px);
  background:
    linear-gradient(135deg, rgba(30, 107, 74, 0.12), rgba(234, 88, 12, 0.08)),
    radial-gradient(circle at 72% 18%, rgba(45, 190, 114, 0.18), transparent 32%),
    var(--lq-canvas);
}
.lq-hero-media__widget {
  width: min(100%, 460px);
  justify-self: center;
}
.lq-hero-media__fallback {
  margin: 0;
  color: var(--lq-text-secondary);
  font-weight: 800;
  text-align: center;
}
.lq-hero-media__video {
  display: block;
  width: 100%;
  max-height: min(52vh, 520px);
  object-fit: contain;
  background: #050705;
}
.lq-hero-media__rail {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 0;
  padding: 4px 12px 14px;
  list-style: none;
  background: var(--lq-dark-panel);
  border-top: 1px solid var(--lq-border-dark);
}
.lq-hero-media__rail li {
  padding: 8px 12px;
  background: rgba(245, 240, 232, 0.08);
  border: 1px solid rgba(245, 240, 232, 0.14);
  border-radius: var(--lq-radius-card);
  color: var(--lq-text-muted-dark);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.lq-hero-media__spec {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--lq-border-dark);
  border-top: 1px solid var(--lq-border-dark);
}
.lq-hero-media__spec span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  background: var(--lq-muted);
  color: var(--lq-text-secondary);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lq-beta-app {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
}
.lq-beta-app__intro .lq-copy {
  margin-bottom: 0;
}
.lq-beta-app__shell {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--lq-dark-anchor);
  border-radius: var(--lq-radius-card);
  background: var(--lq-dark-anchor);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 16px 40px rgba(28, 23, 18, 0.2);
}
.lq-beta-app__shell-bar {
  padding: 14px 18px;
  background: var(--lq-dark-anchor);
  border-bottom: 1px solid var(--lq-border-dark);
  color: var(--lq-orange-light);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.lq-beta-app__shell-body {
  padding: clamp(14px, 2.5vw, 22px);
  background: var(--lq-stone);
}
.lq-beta-app__shell--framed {
  border: 2px solid var(--lq-dark-anchor);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 16px 40px rgba(28, 23, 18, 0.2);
}
.lq-beta-app__form.lq-form label textarea {
  min-height: 120px;
}

.lq-after-apply__head {
  margin-bottom: 28px;
}
.lq-after-apply__head h2 {
  margin: 0;
}
.lq-after-apply__track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  border: 1px solid var(--lq-border-strong);
  border-radius: var(--lq-radius-card);
  overflow: hidden;
  background: var(--lq-border-strong);
  box-shadow: var(--lq-shadow-md);
}
.lq-after-apply__track li {
  display: grid;
  gap: 12px;
  min-height: 220px;
  padding: 26px;
  background: var(--lq-panel);
}
.lq-after-apply__marker {
  width: fit-content;
  padding: 6px 10px;
  background: var(--lq-dark-anchor);
  color: var(--lq-orange-light);
  border-radius: var(--lq-radius-card);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 18px;
  font-weight: 800;
}
.lq-after-apply__track h3 {
  margin: 0;
}
.lq-after-apply__track p {
  margin: 0;
  color: var(--lq-text-secondary);
  font-size: 17px;
  line-height: 1.5;
}
.lq-after-apply__note {
  margin-top: 22px;
}

.lq-founding-value {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.38fr);
  gap: 22px;
  align-items: stretch;
}
.lq-founding-value__main {
  padding: clamp(26px, 4vw, 40px);
  background: var(--lq-panel);
  border: 1px solid var(--lq-border-strong);
  border-radius: var(--lq-radius-card);
  box-shadow: var(--lq-shadow-md);
}
.lq-founding-value__main h2 {
  margin-top: 0;
}
.lq-founding-value__rates {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}
.lq-founding-value__rates div {
  display: grid;
  gap: 8px;
  padding: 18px;
  background: var(--lq-stone);
  border: 1px solid var(--lq-border-strong);
  border-radius: var(--lq-radius-card);
  text-align: center;
}
.lq-founding-value__rates strong {
  color: var(--lq-green-dark);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: clamp(34px, 5vw, 48px);
  font-weight: 800;
  line-height: 1;
}
.lq-founding-value__rates span {
  color: var(--lq-text-secondary);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.lq-founding-value__aside {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: clamp(26px, 4vw, 36px);
  background: var(--lq-dark-panel);
  border: 1px solid var(--lq-border-dark);
  border-radius: var(--lq-radius-card);
  color: var(--lq-text-on-dark);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}
.lq-founding-value__aside h3 {
  margin: 0;
  color: var(--lq-text-on-dark);
}
.lq-founding-value__aside p {
  margin: 0;
  color: var(--lq-text-muted-dark);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.45;
}

.lq-proof-strip {
  background: var(--lq-dark-sidebar);
  color: var(--lq-text-on-dark);
}
.lq-proof-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--lq-border-dark);
  border: 1px solid var(--lq-border-dark);
}
.lq-proof-strip__grid span {
  min-height: 76px;
  display: grid;
  place-items: center;
  padding: 16px;
  background: var(--lq-dark-panel);
  color: var(--lq-text-on-dark);
  font-weight: 800;
  text-align: center;
}

.lq-stat-band {
  background:
    linear-gradient(135deg, rgba(20, 30, 26, 0.98), rgba(30, 45, 38, 0.98)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 18px);
  color: var(--lq-text-on-dark);
}
.lq-stat-band h2 {
  color: var(--lq-text-on-dark);
}
.lq-stat-band .lq-eyebrow {
  color: var(--lq-orange-light);
}
.lq-stat-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--lq-border-dark);
  border-radius: var(--lq-radius-card);
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
}
.lq-stat-box {
  min-height: 154px;
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 24px;
  background: var(--lq-dark-panel);
  border-right: 1px solid var(--lq-border-dark);
  text-align: center;
}
.lq-stat-box:last-child {
  border-right: 0;
}
.lq-stat-box strong {
  color: var(--lq-orange-light);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: clamp(42px, 6vw, 64px);
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 0.9;
}
.lq-stat-box span {
  color: var(--lq-text-muted-dark);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.25;
}

.lq-step-number {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  background: var(--lq-dark-anchor);
  color: var(--lq-orange-light);
  border-radius: var(--lq-radius-card);
  box-shadow: var(--lq-raised-dark);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 22px;
  font-weight: 800;
}
.lq-step-card {
  display: grid;
  align-content: start;
  min-height: 220px;
}
.lq-step-card p {
  margin-bottom: 0;
}
.lq-conversion-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--lq-border-strong);
  border-radius: var(--lq-radius-card);
  overflow: hidden;
  box-shadow: var(--lq-shadow-md);
}
.lq-conversion-step {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 300px;
  padding: 28px;
  background: var(--lq-panel);
  border-right: 1px solid var(--lq-border-strong);
}
.lq-conversion-step:last-child {
  border-right: 0;
}
.lq-conversion-step__num {
  color: rgba(28, 23, 18, 0.12);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: clamp(62px, 8vw, 92px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.82;
}
.lq-conversion-step p {
  margin: 0;
  color: var(--lq-text-secondary);
  font-size: 17px;
  line-height: 1.5;
}
.lq-outcome {
  margin-top: auto;
  padding: 12px 14px;
  background: rgba(30, 107, 74, 0.1);
  border: 1px solid rgba(30, 107, 74, 0.24);
  color: var(--lq-green-dark);
  font-weight: 900;
  line-height: 1.35;
}

.lq-hiw-blueprint {
  background: var(--lq-dark-anchor);
  color: var(--lq-text-on-dark);
}
.lq-hiw-blueprint__header {
  margin-bottom: 48px;
  text-align: center;
}
.lq-hiw-blueprint__kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.lq-hiw-blueprint__kicker::before,
.lq-hiw-blueprint__kicker::after {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--lq-orange);
}
.lq-hiw-blueprint__kicker span {
  color: var(--lq-orange-light);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.lq-hiw-blueprint h2 {
  color: var(--lq-text-on-dark);
  font-size: clamp(34px, 5vw, 58px);
}
.lq-hiw-blueprint__steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--lq-border-dark);
  border-radius: var(--lq-radius-card);
  overflow: hidden;
  counter-reset: blueprint-step;
}
.lq-hiw-blueprint__step {
  position: relative;
  min-height: 260px;
  padding: 28px 24px;
  border-right: 1px solid var(--lq-border-dark);
  background: var(--lq-dark-panel);
  counter-increment: blueprint-step;
}
.lq-hiw-blueprint__step:last-child {
  border-right: 0;
}
.lq-hiw-blueprint__step + .lq-hiw-blueprint__step::before {
  content: "→";
  position: absolute;
  left: -7px;
  top: 50%;
  color: rgba(245, 240, 232, 0.18);
  font-size: 18px;
  transform: translateY(-50%);
}
.lq-hiw-blueprint__step-num {
  margin-bottom: 12px;
  color: var(--lq-orange-light);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.lq-hiw-blueprint__step-num::before {
  content: counter(blueprint-step, decimal-leading-zero) " ";
}
.lq-hiw-blueprint__step h3 {
  color: var(--lq-text-on-dark);
  font-size: 24px;
  margin-bottom: 8px;
}
.lq-hiw-blueprint__step p {
  color: var(--lq-text-muted-dark);
  font-size: 16px;
  line-height: 1.65;
  margin: 0;
}
.lq-personas-moments {
  background: var(--lq-stone);
}
.lq-personas-moments__header {
  margin-bottom: 48px;
}
.lq-personas-moments__kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.lq-personas-moments__kicker::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--lq-green);
}
.lq-personas-moments__kicker span {
  color: var(--lq-green);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.lq-personas-moments h2 {
  color: var(--lq-text);
  font-size: clamp(34px, 5vw, 58px);
}
.lq-personas-moments__stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.lq-persona-moment {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  overflow: hidden;
  background: var(--lq-panel);
  border: 1px solid var(--lq-border-strong);
  border-radius: var(--lq-radius-card);
  box-shadow: var(--lq-shadow-sm);
}
.lq-persona-moment--featured {
  background: var(--lq-green);
  border-color: var(--lq-green);
  color: var(--lq-text-on-dark);
}
.lq-persona-moment__quote-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 36px;
}
.lq-persona-moment__quote-mark {
  color: var(--lq-border);
  font-family: Georgia, serif;
  font-size: 64px;
  line-height: 0.6;
  margin-bottom: 12px;
  user-select: none;
}
.lq-persona-moment--featured .lq-persona-moment__quote-mark {
  color: rgba(255, 255, 255, 0.15);
}
.lq-persona-moment__quote-text {
  color: var(--lq-text);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.12;
}
.lq-persona-moment--featured .lq-persona-moment__quote-text {
  color: var(--lq-text-on-dark);
}
.lq-persona-moment__quote-context {
  margin: 14px 0 0;
  color: var(--lq-text-muted);
  font-size: 15px;
  font-style: italic;
}
.lq-persona-moment--featured .lq-persona-moment__quote-context {
  color: rgba(255, 255, 255, 0.52);
}
.lq-persona-moment__detail-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  padding: 36px 28px;
  border-left: 1px solid var(--lq-border);
}
.lq-persona-moment--featured .lq-persona-moment__detail-side {
  border-left-color: rgba(255, 255, 255, 0.16);
}
.lq-persona-moment__detail-text {
  margin: 0;
  color: var(--lq-text-secondary);
  font-size: 17px;
  line-height: 1.7;
}
.lq-persona-moment--featured .lq-persona-moment__detail-text {
  color: rgba(255, 255, 255, 0.68);
}
.lq-persona-moment__who {
  display: flex;
  align-items: center;
  gap: 10px;
}
.lq-persona-moment__badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  background: var(--lq-stone);
  border: 1px solid var(--lq-border-strong);
  border-radius: 999px;
  color: var(--lq-text-secondary);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.lq-persona-moment--featured .lq-persona-moment__badge {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.76);
}
.lq-persona-moment__link {
  color: var(--lq-orange);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.lq-persona-moment--featured .lq-persona-moment__link {
  color: rgba(255, 255, 255, 0.72);
}
.lq-compare-capabilities {
  background: var(--lq-stone);
}
.lq-compare-capabilities__header {
  margin-bottom: 36px;
}
.lq-compare-capabilities__kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.lq-compare-capabilities__kicker::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--lq-green);
}
.lq-compare-capabilities__kicker span {
  color: var(--lq-green);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.lq-compare-capabilities h2 {
  color: var(--lq-text);
  font-size: clamp(34px, 5vw, 58px);
}
.lq-compare-capabilities__header p {
  max-width: 480px;
  margin: 10px 0 0;
  color: var(--lq-text-secondary);
  font-size: 18px;
  line-height: 1.55;
}
.lq-compare-capabilities__table-wrap {
  overflow-x: auto;
  border: 1px solid var(--lq-border-strong);
  border-radius: var(--lq-radius-card);
  box-shadow: var(--lq-shadow-md);
}
.lq-capability-table {
  width: 100%;
  min-width: 820px;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--lq-panel);
}
.lq-capability-table th {
  padding: 16px 20px;
  background: var(--lq-stone);
  border-bottom: 2px solid var(--lq-border-strong);
  border-right: 1px solid var(--lq-border);
  color: var(--lq-text);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-align: left;
  text-transform: uppercase;
}
.lq-capability-table th:last-child,
.lq-capability-table td:last-child {
  border-right: 0;
}
.lq-capability-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--lq-border);
  border-right: 1px solid var(--lq-border);
  color: var(--lq-text-secondary);
  font-size: 16px;
  line-height: 1.4;
  vertical-align: middle;
}
.lq-capability-table tbody tr:last-child td {
  border-bottom: 0;
}
.lq-capability-table td:first-child {
  color: var(--lq-text);
  font-weight: 800;
}
.lq-capability-table .is-featured {
  background: rgba(30, 107, 74, 0.08);
}
.lq-table-check {
  color: var(--lq-green);
  font-weight: 900;
}
.lq-table-dash {
  color: var(--lq-text-muted);
}
.lq-table-badge {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  margin-left: 6px;
  padding: 0 7px;
  background: var(--lq-orange);
  color: #fff;
  border-radius: 2px;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.lq-compare-capabilities__mobile {
  display: none;
}
.lq-walk-card {
  display: grid;
  align-content: start;
  gap: 14px;
}
.lq-walk-card__body {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
}
.lq-walk-card .lq-step-number {
  margin-bottom: 0;
}
.lq-walk-card h3,
.lq-walk-card p {
  margin: 0;
}
.lq-media-slot {
  min-height: 108px;
  display: grid;
  place-items: center;
  margin: -6px -6px 4px;
  border: 1px solid rgba(245, 240, 232, 0.22);
  background:
    linear-gradient(135deg, rgba(245, 240, 232, 0.08), rgba(245, 240, 232, 0.03)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 12px);
  color: var(--lq-text-muted-dark);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lq-product-frame {
  background: var(--lq-dark-anchor);
  color: var(--lq-text-on-dark);
  border: 2px solid var(--lq-border-dark);
  border-radius: var(--lq-radius-card);
  box-shadow: 0 10px 28px rgba(28, 23, 18, 0.28);
  padding: 20px;
}
.lq-product-frame__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--lq-border-dark);
}
.lq-product-frame__bar span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(245, 240, 232, 0.3);
}
.lq-product-frame__bar strong {
  margin-left: auto;
  color: var(--lq-text-muted-dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
}
.lq-flow-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
}
.lq-flow-rail li {
  min-height: 34px;
  display: grid;
  place-items: center;
  background: rgba(245, 240, 232, 0.08);
  border: 1px solid var(--lq-border-dark);
  color: var(--lq-text-muted-dark);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.lq-product-step,
.lq-lead-card {
  background: var(--lq-panel);
  color: var(--lq-text);
  border: 1px solid var(--lq-border-strong);
  border-radius: var(--lq-radius-card);
  padding: 16px;
  margin-bottom: 12px;
}
.lq-product-step span,
.lq-lead-card span,
.lq-quote-card span {
  display: block;
  color: var(--lq-text-secondary);
  font-size: 14px;
}
.lq-map-frame {
  min-height: 190px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(30, 107, 74, 0.95), rgba(20, 30, 26, 0.92)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.07) 0 2px, transparent 2px 16px);
  border: 1px solid var(--lq-border-dark);
  border-radius: var(--lq-radius-card);
  margin-bottom: 12px;
}
.lq-map-frame__shape {
  width: 54%;
  height: 96px;
  border: 3px solid var(--lq-green-vivid);
  background: rgba(45, 190, 114, 0.2);
  clip-path: polygon(12% 18%, 88% 8%, 96% 56%, 72% 91%, 18% 78%);
}
.lq-map-frame span {
  position: absolute;
  bottom: 12px;
  left: 12px;
  color: var(--lq-text-on-dark);
  font-weight: 800;
}
.lq-quote-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: var(--lq-stone);
  color: var(--lq-text);
  border: 1px solid var(--lq-border-strong);
  border-radius: var(--lq-radius-card);
  padding: 16px;
  margin-bottom: 12px;
}
.lq-quote-card strong {
  display: block;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 42px;
  line-height: 1;
}

.lq-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  width: fit-content;
  padding: 0 12px;
  border-radius: 2px;
  background: var(--lq-orange);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: var(--lq-raised-color);
}
.lq-pricing-rounds {
  grid-template-columns: minmax(0, 1.25fr) repeat(2, minmax(0, 0.82fr));
  align-items: stretch;
}

.lq-home-pricing .lq-pricing-rounds {
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.25fr) minmax(0, 0.82fr);
}

.lq-home-pricing .lq-pricing-card.is-featured {
  order: 2;
}

.lq-home-pricing .lq-pricing-card.is-subdued:nth-of-type(2) {
  order: 1;
}

.lq-home-pricing .lq-pricing-card.is-subdued:nth-of-type(3) {
  order: 3;
}
.lq-pricing-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--lq-panel);
  border: 1px solid var(--lq-border-strong);
  border-radius: var(--lq-radius-card);
  box-shadow: var(--lq-shadow-md);
  padding: 24px;
}
.lq-pricing-card.is-featured {
  background: var(--lq-dark-panel);
  color: var(--lq-text-on-dark);
  border: 2px solid var(--lq-orange);
  box-shadow: 0 14px 34px rgba(28, 23, 18, 0.28);
  padding: 30px;
  transform: translateY(-8px);
}
.lq-pricing-card.is-featured h3 {
  font-size: clamp(30px, 4vw, 44px);
}
.lq-pricing-card.is-subdued {
  background: color-mix(in srgb, var(--lq-panel) 72%, var(--lq-stone));
  box-shadow: var(--lq-shadow-sm);
  opacity: 0.86;
}
.lq-pricing-card.is-featured h3,
.lq-pricing-card.is-featured .lq-price { color: var(--lq-text-on-dark); }
.lq-pricing-card.is-featured p:not(.lq-spots),
.lq-pricing-card.is-featured .lq-list li { color: var(--lq-text-muted-dark); }
.lq-price {
  color: var(--lq-text);
  font-size: 54px;
  line-height: 0.95;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.lq-pricing-card.is-featured .lq-price {
  font-size: clamp(62px, 8vw, 86px);
}
.lq-pricing-card.is-subdued .lq-price {
  font-size: 42px;
  color: var(--lq-text-secondary);
}
.lq-spots {
  width: fit-content;
  margin: 0;
  padding: 9px 12px;
  background: var(--lq-orange);
  color: #fff;
  border-radius: 2px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.lq-pricing-card.is-subdued .lq-spots {
  background: var(--lq-stone);
  color: var(--lq-text-secondary);
  border: 1px solid var(--lq-border-strong);
}

.lq-faq {
  display: grid;
  gap: 10px;
}
.lq-faq__item {
  background: var(--lq-panel);
  border: 1px solid var(--lq-border-strong);
  border-radius: var(--lq-radius-card);
  box-shadow: var(--lq-shadow-sm);
}
.lq-faq__button {
  width: 100%;
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 0;
  background: transparent;
  color: var(--lq-text);
  padding: 16px;
  text-align: left;
  cursor: pointer;
}
.lq-faq__button span {
  color: var(--lq-orange);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-weight: 800;
}
.lq-faq__answer {
  padding: 0 16px 18px 48px;
  color: var(--lq-text-secondary);
  font-size: 17px;
  line-height: 1.6;
}

.lq-final-cta {
  background: var(--lq-dark-anchor);
  color: var(--lq-text-on-dark);
}
.lq-final-cta__panel {
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
}
.lq-final-cta h2 { color: var(--lq-text-on-dark); }
.lq-final-cta p {
  max-width: 620px;
  margin: 18px auto 0;
  color: var(--lq-text-muted-dark);
  font-size: 19px;
  line-height: 1.6;
}
.lq-final-cta .lq-cta-row { justify-content: center; }

.lq-visual-card {
  min-height: 250px;
  display: grid;
  gap: 14px;
  place-items: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(0, 0, 0, 0)),
    linear-gradient(135deg, rgba(30, 107, 74, 0.92), rgba(20, 30, 26, 0.96)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 18px);
  border: 2px solid var(--lq-border-dark);
  border-radius: var(--lq-radius-card);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    inset 0 -3px 0 rgba(0, 0, 0, 0.28),
    var(--lq-shadow-lg);
  color: var(--lq-text-on-dark);
  padding: 24px;
}
.lq-visual-card strong {
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 0.95;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
}
.lq-visual-card p {
  max-width: 32ch;
  margin: 0;
  color: var(--lq-text-muted-dark);
  font-size: 18px;
  line-height: 1.45;
  text-align: center;
}

.lq-form {
  position: relative;
  display: grid;
  gap: 16px;
  background: var(--lq-panel);
  border: 1px solid var(--lq-border-strong);
  border-radius: var(--lq-radius-card);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 6px 18px rgba(28, 23, 18, 0.1);
  padding: 28px 24px 24px;
}
.lq-form::before {
  content: "Operator Intake";
  width: fit-content;
  min-height: 26px;
  display: inline-flex;
  align-items: center;
  padding: 0 9px;
  background: var(--lq-dark-anchor);
  color: var(--lq-orange-light);
  border-radius: 2px;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.lq-form label {
  display: grid;
  gap: 7px;
  color: var(--lq-text);
  font-weight: 800;
}
.lq-form label span,
.lq-form label em {
  color: var(--lq-text-muted);
  font-size: 14px;
  font-weight: 600;
  font-style: normal;
}
.lq-form input,
.lq-form textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--lq-border-strong);
  border-radius: var(--lq-radius-card);
  background: #fffdf7;
  color: var(--lq-text);
  padding: 12px 14px;
  box-shadow:
    inset 0 2px 5px rgba(28, 23, 18, 0.08),
    inset 0 1px 0 rgba(0, 0, 0, 0.05);
}
.lq-form input:focus,
.lq-form textarea:focus {
  outline: 2px solid rgba(45, 190, 114, 0.34);
  outline-offset: 2px;
  border-color: var(--lq-green);
}
.lq-form textarea {
  min-height: 112px;
  resize: vertical;
}
.lq-form__note,
.lq-form__status {
  margin: 0;
  color: var(--lq-text-secondary);
  font-size: 15px;
  line-height: 1.5;
}
.lq-form__status {
  background: #dff0e8;
  border: 1px solid #9dccb5;
  color: var(--lq-green);
  padding: 12px;
  border-radius: var(--lq-radius-card);
  font-weight: 800;
}
.lq-form__status--error {
  background: #f7e1dc;
  border-color: #d59b8d;
  color: #8a2d1a;
}

.lq-footer {
  background: var(--lq-dark-anchor);
  color: var(--lq-text-on-dark);
  padding: 56px 0 24px;
}
.lq-footer__top {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr;
  gap: 48px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--lq-border-dark);
}
.lq-footer p {
  max-width: 420px;
  color: var(--lq-text-on-dark);
  font-size: 16px;
  line-height: 1.55;
}
.lq-footer__columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}
.lq-footer h2 {
  margin: 0 0 14px;
  color: var(--lq-text-on-dark);
  font-size: 20px;
}
.lq-footer a {
  display: block;
  color: var(--lq-text-on-dark);
  margin-bottom: 10px;
  font-size: 15px;
}
.lq-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 22px;
  padding-bottom: 80px; /* clear floating widget button */
  color: var(--lq-text-on-dark);
  font-size: 13px;
  font-weight: 600;
}

.lq-quote-console {
  background:
    radial-gradient(circle at 82% 18%, rgba(234, 88, 12, 0.16), transparent 30%),
    linear-gradient(135deg, var(--lq-dark-anchor), var(--lq-dark-sidebar));
  color: var(--lq-text-on-dark);
}
.lq-quote-console__header {
  max-width: 760px;
  margin-bottom: 36px;
}
.lq-quote-console h2 {
  color: var(--lq-text-on-dark);
}
.lq-quote-console .lq-copy {
  color: var(--lq-text-muted-dark);
}
.lq-quote-console__panel {
  display: grid;
  grid-template-columns: 0.8fr 1.25fr 0.9fr;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid var(--lq-border-dark);
  border-radius: var(--lq-radius-card);
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 18px),
    var(--lq-dark-panel);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}
.lq-quote-console__readout,
.lq-quote-console__controls,
.lq-quote-console__switches {
  padding: clamp(24px, 4vw, 38px);
}
.lq-quote-console__readout {
  display: grid;
  align-content: center;
  border-right: 1px solid var(--lq-border-dark);
}
.lq-quote-console__readout span,
.lq-console-control span,
.lq-quote-console__switches span {
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.lq-quote-console__readout span {
  color: var(--lq-orange-light);
  font-size: 16px;
}
.lq-quote-console__readout strong {
  margin: 12px 0;
  color: var(--lq-text-on-dark);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: clamp(58px, 8vw, 92px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.9;
}
.lq-quote-console__readout p {
  max-width: 220px;
  margin: 0;
  color: var(--lq-text-muted-dark);
  font-weight: 800;
}
.lq-quote-console__controls {
  display: grid;
  align-content: center;
  gap: 18px;
  background: rgba(20, 30, 26, 0.36);
}
.lq-console-control {
  display: grid;
  gap: 10px;
  padding: 16px;
  background: rgba(245, 240, 232, 0.06);
  border: 1px solid rgba(245, 240, 232, 0.12);
}
.lq-console-control div:first-child {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}
.lq-console-control span {
  color: var(--lq-text-muted-dark);
  font-size: 14px;
}
.lq-console-control strong {
  color: var(--lq-orange-light);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 24px;
}
.lq-console-control__track {
  height: 14px;
  padding: 3px;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(245, 240, 232, 0.12);
}
.lq-console-control__track span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--lq-green-vivid), var(--lq-orange-light));
  box-shadow: var(--lq-raised-color);
}
.lq-quote-console__switches {
  display: grid;
  align-content: center;
  gap: 14px;
  border-left: 1px solid var(--lq-border-dark);
}
.lq-quote-console__switches span {
  position: relative;
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 10px 12px 10px 48px;
  background: rgba(45, 190, 114, 0.1);
  border: 1px solid rgba(45, 190, 114, 0.24);
  color: var(--lq-text-on-dark);
  font-size: 14px;
}
.lq-quote-console__switches span::before {
  content: "";
  position: absolute;
  left: 12px;
  width: 24px;
  height: 14px;
  background: var(--lq-green-vivid);
  box-shadow: var(--lq-raised-color);
}

.lq-lead-conveyor {
  background: var(--lq-stone);
}
.lq-lead-conveyor__intro {
  max-width: 720px;
  margin-bottom: 34px;
}
.lq-lead-conveyor__belt {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border: 1px solid var(--lq-border-strong);
  border-radius: var(--lq-radius-card);
  background: var(--lq-dark-anchor);
  box-shadow: var(--lq-shadow-lg);
  overflow: hidden;
}
.lq-lead-conveyor__belt::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 22px;
  height: 18px;
  background:
    repeating-linear-gradient(90deg, rgba(245, 240, 232, 0.18) 0 18px, transparent 18px 34px),
    rgba(0, 0, 0, 0.2);
}
.lq-lead-conveyor__belt li {
  position: relative;
  min-height: 280px;
  display: grid;
  align-content: end;
  gap: 10px;
  padding: 68px 24px 28px;
  border-right: 1px solid var(--lq-border-dark);
  color: var(--lq-text-on-dark);
}
.lq-lead-conveyor__belt li:last-child {
  border-right: 0;
}
.lq-lead-conveyor__station {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: auto;
  background: var(--lq-orange);
  color: #fff;
  border-radius: var(--lq-radius-card);
  box-shadow: var(--lq-raised-color);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 26px;
  font-weight: 800;
}
.lq-lead-conveyor h3 {
  color: var(--lq-text-on-dark);
  font-size: 26px;
  margin: 0;
}
.lq-lead-conveyor p {
  margin: 0;
  color: var(--lq-text-muted-dark);
  font-size: 16px;
  line-height: 1.55;
}

.lq-beta-diagnostic {
  background: var(--lq-panel);
}
.lq-beta-diagnostic__header {
  max-width: 760px;
  margin-bottom: 34px;
}
.lq-beta-diagnostic__board {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 14px;
}
.lq-beta-diagnostic__lane {
  position: relative;
  display: grid;
  align-content: start;
  gap: 16px;
  min-height: 360px;
  padding: 28px;
  background: var(--lq-stone);
  border: 1px solid var(--lq-border-strong);
  border-radius: var(--lq-radius-card);
  box-shadow: var(--lq-shadow-sm);
}
.lq-beta-diagnostic__lane::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--lq-border-strong);
}
.lq-beta-diagnostic__lane.is-ready {
  background: var(--lq-green);
  border-color: var(--lq-green);
  color: var(--lq-text-on-dark);
  box-shadow: var(--lq-shadow-lg);
}
.lq-beta-diagnostic__lane.is-ready::before {
  background: var(--lq-green-vivid);
}
.lq-beta-diagnostic__lane.is-not-fit {
  background:
    repeating-linear-gradient(45deg, rgba(20, 30, 26, 0.05) 0 2px, transparent 2px 12px),
    var(--lq-muted);
}
.lq-beta-diagnostic__lane span {
  width: fit-content;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  background: var(--lq-dark-anchor);
  color: var(--lq-orange-light);
  border-radius: var(--lq-radius-card);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.lq-beta-diagnostic__lane.is-ready span {
  background: rgba(0, 0, 0, 0.24);
  color: var(--lq-text-on-dark);
}
.lq-beta-diagnostic__lane h3 {
  margin: 0;
  font-size: clamp(28px, 3vw, 38px);
}
.lq-beta-diagnostic__lane.is-ready h3 {
  color: var(--lq-text-on-dark);
}
.lq-beta-diagnostic__lane ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.lq-beta-diagnostic__lane li {
  position: relative;
  padding-left: 24px;
  color: var(--lq-text-secondary);
  font-weight: 800;
  line-height: 1.45;
}
.lq-beta-diagnostic__lane.is-ready li {
  color: rgba(255, 255, 255, 0.74);
}
.lq-beta-diagnostic__lane li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 10px;
  height: 10px;
  background: var(--lq-orange);
  border-radius: 999px;
}
.lq-beta-diagnostic__lane.is-ready li::before {
  background: var(--lq-orange-light);
}

.lq-benefit-meter {
  background: var(--lq-panel);
}
.lq-benefit-meter__head,
.lq-demo-instrument__head,
.lq-process-rig__head,
.lq-pricing-rack__head {
  max-width: 760px;
  margin-bottom: 34px;
}
.lq-benefit-meter__board {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr 0.95fr 1.15fr;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--lq-border-strong);
  border-radius: var(--lq-radius-card);
  background: var(--lq-border-strong);
  box-shadow: var(--lq-shadow-md);
}
.lq-benefit-meter__board article {
  min-height: 260px;
  display: grid;
  align-content: space-between;
  gap: 18px;
  padding: 26px;
  background:
    linear-gradient(180deg, rgba(245, 240, 232, 0.78), rgba(250, 247, 242, 0.98)),
    var(--lq-panel);
}
.lq-benefit-meter__board article:nth-child(even) {
  background: var(--lq-stone);
}
.lq-benefit-meter__board span {
  width: fit-content;
  padding: 5px 8px;
  background: var(--lq-dark-anchor);
  color: var(--lq-orange-light);
  border-radius: var(--lq-radius-card);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.lq-benefit-meter__board h3 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 0.95;
}
.lq-benefit-meter__board p {
  margin: 0;
  color: var(--lq-text-secondary);
  font-weight: 800;
}

.lq-demo-instrument {
  background: var(--lq-dark-anchor);
  color: var(--lq-text-on-dark);
}
.lq-demo-instrument h2 {
  color: var(--lq-text-on-dark);
}
.lq-demo-instrument .lq-copy {
  color: var(--lq-text-muted-dark);
}
.lq-demo-instrument__panel {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid var(--lq-border-dark);
  border-radius: var(--lq-radius-card);
  background: var(--lq-dark-panel);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}
.lq-demo-instrument__panel ol {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  border-right: 1px solid var(--lq-border-dark);
}
.lq-demo-instrument__panel li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2px 14px;
  align-content: center;
  padding: 22px;
  border-bottom: 1px solid var(--lq-border-dark);
}
.lq-demo-instrument__panel li:last-child {
  border-bottom: 0;
}
.lq-demo-instrument__panel li span {
  grid-row: span 2;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: var(--lq-orange);
  color: #fff;
  border-radius: var(--lq-radius-card);
  box-shadow: var(--lq-raised-color);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 20px;
  font-weight: 800;
}
.lq-demo-instrument__panel strong {
  color: var(--lq-text-on-dark);
  font-size: 18px;
}
.lq-demo-instrument__panel em {
  color: var(--lq-text-muted-dark);
  font-style: normal;
  font-weight: 800;
}
.lq-demo-instrument__screen {
  display: grid;
  place-content: center;
  gap: 14px;
  padding: 32px;
  background:
    linear-gradient(135deg, rgba(45, 190, 114, 0.12), rgba(234, 88, 12, 0.12)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 14px);
  text-align: center;
}
.lq-demo-instrument__screen video {
  width: 100%;
  max-width: 760px;
  aspect-ratio: 16 / 9;
  display: block;
  background: var(--lq-dark-anchor);
  border: 1px solid rgba(245, 240, 232, 0.18);
  object-fit: cover;
}
.lq-demo-instrument__screen span {
  color: var(--lq-orange-light);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.lq-demo-instrument__screen strong {
  max-width: 10ch;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: clamp(48px, 7vw, 82px);
  line-height: 0.9;
}

.lq-process-rig {
  background: var(--lq-stone);
}
.lq-process-rig__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 14px;
}
.lq-process-rig__grid article {
  min-height: 390px;
  display: grid;
  align-content: start;
  gap: 22px;
  padding: clamp(26px, 4vw, 40px);
  border: 1px solid var(--lq-border-strong);
  border-radius: var(--lq-radius-card);
  background: var(--lq-panel);
}
.lq-process-rig__grid article.is-new {
  background: var(--lq-dark-anchor);
  color: var(--lq-text-on-dark);
  box-shadow: var(--lq-shadow-lg);
}
.lq-process-rig__grid article.is-new h3 {
  color: var(--lq-text-on-dark);
}
.lq-process-rig__grid ol {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: rig-step;
}
.lq-process-rig__grid li {
  position: relative;
  min-height: 54px;
  display: flex;
  align-items: center;
  padding: 12px 14px 12px 54px;
  background: var(--lq-stone);
  border: 1px solid var(--lq-border);
  color: var(--lq-text-secondary);
  font-weight: 900;
  counter-increment: rig-step;
}
.lq-process-rig__grid li::before {
  content: counter(rig-step, decimal-leading-zero);
  position: absolute;
  left: 12px;
  color: var(--lq-orange);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 20px;
  font-weight: 800;
}
.lq-process-rig__grid article.is-new li {
  background: rgba(245, 240, 232, 0.08);
  border-color: rgba(245, 240, 232, 0.14);
  color: var(--lq-text-on-dark);
}

.lq-pricing-rack {
  background: var(--lq-panel);
}
.lq-pricing-rack__grid {
  display: grid;
  grid-template-columns: 1.35fr 0.82fr 0.82fr;
  gap: 14px;
}
.lq-pricing-rack__grid article {
  position: relative;
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 310px;
  padding: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0)),
    var(--lq-stone);
  border: 1px solid var(--lq-border-strong);
  border-radius: var(--lq-radius-card);
  box-shadow: var(--lq-shadow-sm);
}
.lq-pricing-rack__grid article::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--lq-border-strong);
}
.lq-pricing-rack__grid article.is-current {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0)),
    radial-gradient(circle at 92% 8%, rgba(234, 88, 12, 0.22), transparent 26%),
    var(--lq-dark-anchor);
  color: var(--lq-text-on-dark);
  box-shadow: var(--lq-shadow-lg);
}
.lq-pricing-rack__grid article.is-current::before {
  background: var(--lq-orange);
}
.lq-pricing-rack__grid span {
  width: fit-content;
  padding: 5px 9px;
  background: var(--lq-dark-anchor);
  color: var(--lq-orange-light);
  border-radius: var(--lq-radius-card);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.lq-pricing-rack__grid .is-current span {
  background: var(--lq-orange);
  color: var(--lq-dark-anchor);
  box-shadow: var(--lq-raised-color);
}
.lq-panel-status {
  width: fit-content;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid var(--lq-border-strong);
  border-radius: 2px;
  color: var(--lq-text-secondary);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.lq-panel-status--open {
  border-color: var(--lq-green-vivid);
  color: var(--lq-green-vivid);
}
.lq-pricing-rack__grid .is-current .lq-panel-status {
  border-color: rgba(45, 190, 114, 0.5);
  color: var(--lq-green-vivid);
}
.lq-pricing-rack__grid h3 {
  margin: 0;
  font-size: clamp(28px, 3vw, 42px);
}
.lq-pricing-rack__grid .is-current h3 {
  color: var(--lq-text-on-dark);
}
.lq-pricing-rack__grid strong {
  color: var(--lq-green-dark);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 800;
  line-height: 0.95;
}
.lq-pricing-rack__grid .is-current strong {
  color: var(--lq-orange-light);
}
.lq-pricing-rack__grid p {
  margin: 0;
  color: var(--lq-text-secondary);
  font-weight: 900;
}
.lq-pricing-rack__grid .is-current p,
.lq-pricing-rack__grid .is-current li {
  color: var(--lq-text-muted-dark);
}
.lq-pricing-rack__grid ul {
  display: grid;
  gap: 8px;
  margin: 8px 0 0;
  padding-left: 18px;
}

.lq-feature-stack {
  background: var(--lq-stone);
}
.lq-feature-stack__head,
.lq-pricing-workbench__head {
  max-width: 760px;
  margin-bottom: 34px;
}
.lq-feature-stack__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 12px;
}
.lq-feature-stack__grid article {
  position: relative;
  min-height: 220px;
  display: grid;
  align-content: space-between;
  gap: 14px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.48), rgba(255, 255, 255, 0)),
    var(--lq-panel);
  border: 1px solid var(--lq-border-strong);
  border-radius: var(--lq-radius-card);
  box-shadow: var(--lq-shadow-sm);
}
.lq-feature-stack__grid article::before,
.lq-feature-stack__grid article::after {
  content: "";
  position: absolute;
  top: 10px;
  width: 8px;
  height: 8px;
  border: 1px solid var(--lq-border-strong);
  border-radius: 999px;
  background: var(--lq-canvas);
}
.lq-feature-stack__grid article::before {
  left: 10px;
}
.lq-feature-stack__grid article::after {
  right: 10px;
}
.lq-feature-stack__grid article.is-large {
  grid-row: span 2;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0)),
    var(--lq-dark-anchor);
  color: var(--lq-text-on-dark);
  box-shadow: var(--lq-shadow-lg);
}
.lq-feature-stack__grid article.is-large::before,
.lq-feature-stack__grid article.is-large::after {
  border-color: rgba(245, 240, 232, 0.28);
  background: rgba(245, 240, 232, 0.12);
}
.lq-feature-stack__grid span {
  width: fit-content;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 9px;
  background: var(--lq-dark-anchor);
  color: var(--lq-orange);
  border-radius: 2px;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.lq-feature-stack__grid .is-large span,
.lq-feature-stack__grid .is-large h3 {
  color: var(--lq-text-on-dark);
}
.lq-feature-stack__grid .is-large span {
  background: rgba(0, 0, 0, 0.24);
}
.lq-feature-stack__grid h3 {
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
}
.lq-feature-stack__grid p {
  margin: 0;
  color: var(--lq-text-secondary);
  line-height: 1.5;
}
.lq-feature-stack__grid .is-large p {
  color: var(--lq-text-muted-dark);
}

.lq-satellite-frame {
  background: var(--lq-panel);
}
.lq-satellite-frame__grid,
.lq-lead-docket__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: center;
}
.lq-satellite-frame__visual {
  display: grid;
  gap: 18px;
  padding: 28px;
  background: var(--lq-dark-anchor);
  border: 1px solid var(--lq-border-dark);
  border-radius: var(--lq-radius-card);
  color: var(--lq-text-on-dark);
  box-shadow: var(--lq-shadow-lg);
}
.lq-satellite-frame__visual > span,
.lq-lead-docket__card > span {
  color: var(--lq-orange-light);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.lq-satellite-frame__plot {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(45, 190, 114, 0.18), rgba(245, 240, 232, 0.06)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 22px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 22px);
  border: 1px solid rgba(245, 240, 232, 0.16);
}
.lq-satellite-frame__plot i {
  position: absolute;
  display: block;
  border: 2px solid var(--lq-orange-light);
  background: rgba(45, 190, 114, 0.16);
}
.lq-satellite-frame__plot i:nth-child(1) {
  inset: 48px 88px 78px 58px;
  transform: skew(-8deg);
}
.lq-satellite-frame__plot i:nth-child(2) {
  inset: 28px 42px auto auto;
  width: 92px;
  height: 66px;
}
.lq-satellite-frame__plot i:nth-child(3) {
  left: 42px;
  bottom: 34px;
  width: 120px;
  height: 38px;
  border-color: rgba(245, 240, 232, 0.35);
}
.lq-satellite-frame__visual ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
  color: var(--lq-text-muted-dark);
  font-weight: 800;
}

.lq-pricing-workbench {
  background: var(--lq-dark-anchor);
  color: var(--lq-text-on-dark);
}
.lq-pricing-workbench h2 {
  color: var(--lq-text-on-dark);
}
.lq-pricing-workbench .lq-copy {
  color: var(--lq-text-muted-dark);
}
.lq-pricing-workbench__panel {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  overflow: hidden;
  border: 1px solid var(--lq-border-dark);
  border-radius: var(--lq-radius-card);
  background: var(--lq-dark-panel);
}
.lq-pricing-workbench__copy {
  display: grid;
  gap: 14px;
  align-content: center;
  padding: clamp(26px, 4vw, 42px);
  border-right: 1px solid var(--lq-border-dark);
}
.lq-pricing-workbench__copy p {
  margin: 0;
  color: var(--lq-text-muted-dark);
  line-height: 1.6;
}
.lq-pricing-workbench__copy strong {
  color: var(--lq-orange-light);
  font-size: 20px;
}
.lq-pricing-workbench__panel ul {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}
.lq-pricing-workbench__panel li {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 14px;
  align-items: center;
  padding: 22px;
  border-bottom: 1px solid var(--lq-border-dark);
  color: var(--lq-text-on-dark);
  font-weight: 900;
}
.lq-pricing-workbench__panel li:last-child {
  border-bottom: 0;
}
.lq-pricing-workbench__panel span {
  color: var(--lq-orange-light);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lq-lead-docket {
  background: var(--lq-stone);
}
.lq-lead-docket__card {
  padding: 28px;
  background: var(--lq-panel);
  border: 1px solid var(--lq-border-strong);
  border-radius: var(--lq-radius-card);
  box-shadow: var(--lq-shadow-md);
}
.lq-lead-docket__card dl {
  display: grid;
  gap: 1px;
  margin: 22px 0;
  background: var(--lq-border);
  border: 1px solid var(--lq-border);
}
.lq-lead-docket__card div {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 12px;
  padding: 16px;
  background: var(--lq-panel);
}
.lq-lead-docket__card dt {
  color: var(--lq-text);
  font-weight: 900;
}
.lq-lead-docket__card dd {
  margin: 0;
  color: var(--lq-text-secondary);
}
.lq-lead-docket__card p {
  margin: 0;
  color: var(--lq-text-secondary);
  font-weight: 800;
}

.lq-command-cards {
  background: var(--lq-panel);
}
.lq-command-cards__head,
.lq-widget-lockup__head,
.lq-dashboard-docket__head {
  max-width: 760px;
  margin-bottom: 34px;
}
.lq-command-cards__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.lq-command-cards__grid article {
  min-height: 290px;
  display: grid;
  align-content: space-between;
  gap: 18px;
  padding: 24px;
  background: var(--lq-stone);
  border: 1px solid var(--lq-border-strong);
  border-radius: var(--lq-radius-card);
  box-shadow: var(--lq-shadow-sm);
}
.lq-command-cards__grid article:nth-child(2) {
  transform: translateY(18px);
}
.lq-command-cards__grid article:nth-child(3) {
  background: var(--lq-dark-anchor);
  color: var(--lq-text-on-dark);
  box-shadow: var(--lq-shadow-lg);
}
.lq-command-cards__grid span {
  color: var(--lq-orange);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 22px;
  font-weight: 800;
}
.lq-command-cards__grid h3 {
  margin: 0;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 0.96;
}
.lq-command-cards__grid article:nth-child(3) h3 {
  color: var(--lq-text-on-dark);
}
.lq-command-cards__grid p {
  margin: 0;
  color: var(--lq-text-secondary);
  font-weight: 800;
}
.lq-command-cards__grid article:nth-child(3) p {
  color: var(--lq-text-muted-dark);
}

.lq-media-lockup {
  background: var(--lq-stone);
}
.lq-media-lockup__grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 42px;
  align-items: center;
}
.lq-media-lockup__frame {
  margin: 0;
  padding: 12px;
  background: var(--lq-dark-anchor);
  border: 1px solid var(--lq-border-dark);
  border-radius: var(--lq-radius-card);
  box-shadow: var(--lq-shadow-lg);
}
.lq-media-lockup__frame div {
  min-height: 390px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(45, 190, 114, 0.16), rgba(234, 88, 12, 0.12)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 14px);
  border: 1px solid rgba(245, 240, 232, 0.16);
  color: var(--lq-text-muted-dark);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 800;
  text-align: center;
}
.lq-media-lockup__frame img {
  display: block;
  width: 100%;
  min-height: 390px;
  aspect-ratio: 898 / 644;
  object-fit: cover;
  border: 1px solid rgba(245, 240, 232, 0.16);
  background: var(--lq-dark-panel);
}
.lq-media-lockup__frame figcaption {
  padding: 12px 4px 0;
  color: var(--lq-text-muted-dark);
  font-weight: 800;
}

.lq-widget-lockup {
  background: var(--lq-dark-anchor);
  color: var(--lq-text-on-dark);
}
.lq-widget-lockup h2,
.lq-widget-lockup h3 {
  color: var(--lq-text-on-dark);
}
.lq-widget-lockup__shell {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  min-height: 430px;
  overflow: hidden;
  border: 2px solid var(--lq-border-dark);
  border-radius: var(--lq-radius-card);
  background: var(--lq-dark-panel);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 42px rgba(0, 0, 0, 0.28);
}
.lq-widget-lockup__screen {
  display: grid;
  place-content: center;
  gap: 14px;
  padding: 34px;
  background:
    linear-gradient(180deg, rgba(250, 247, 242, 0.94), rgba(237, 232, 223, 0.96)),
    repeating-linear-gradient(90deg, rgba(20, 30, 26, 0.05) 0 1px, transparent 1px 18px);
  color: var(--lq-text);
  text-align: center;
  margin: 14px;
  border: 1px solid var(--lq-border-strong);
  box-shadow: inset 0 0 0 1px rgba(20, 30, 26, 0.08), inset 0 10px 24px rgba(28, 23, 18, 0.08);
}
.lq-widget-lockup__screen span {
  color: var(--lq-orange-light);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.lq-widget-lockup__screen strong {
  max-width: 10ch;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: clamp(48px, 7vw, 86px);
  line-height: 0.9;
}
.lq-widget-lockup__screen em {
  width: fit-content;
  justify-self: center;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  background: var(--lq-orange);
  color: var(--lq-dark-anchor);
  border-radius: 2px;
  font-style: normal;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: var(--lq-raised-color);
}
.lq-widget-lockup aside {
  display: grid;
  align-content: center;
  gap: 16px;
  padding: 30px;
  border-left: 1px solid var(--lq-border-dark);
}
.lq-widget-lockup aside p {
  color: var(--lq-text-muted-dark);
}

.lq-dashboard-docket {
  background: var(--lq-panel);
}
.lq-dashboard-docket__panel {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  overflow: hidden;
  border: 1px solid var(--lq-border-strong);
  border-radius: var(--lq-radius-card);
  background: var(--lq-stone);
  box-shadow: var(--lq-shadow-lg);
}
.lq-dashboard-docket__screen {
  min-height: 390px;
  display: grid;
  place-items: center;
  margin: 14px;
  background:
    linear-gradient(135deg, rgba(30, 107, 74, 0.14), rgba(250, 247, 242, 0.9)),
    repeating-linear-gradient(0deg, rgba(20, 30, 26, 0.06) 0 1px, transparent 1px 22px);
  border: 1px solid var(--lq-border-strong);
  color: var(--lq-text-secondary);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  text-align: center;
}
.lq-dashboard-docket__screen img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
  object-position: left center;
}
.lq-dashboard-docket dl {
  display: grid;
  align-content: center;
  margin: 0;
  border-left: 1px solid var(--lq-border-strong);
}
.lq-dashboard-docket dl div {
  padding: 24px;
  border-bottom: 1px solid var(--lq-border-strong);
}
.lq-dashboard-docket dl div:last-child {
  border-bottom: 0;
}
.lq-dashboard-docket dt {
  color: var(--lq-text);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 24px;
  font-weight: 800;
}
.lq-dashboard-docket dd {
  margin: 4px 0 0;
  color: var(--lq-text-secondary);
}

.lq-component-lab-hero {
  background: var(--lq-dark-anchor);
  color: var(--lq-text-on-dark);
}
.lq-component-lab-hero h1 {
  max-width: 12ch;
  color: var(--lq-text-on-dark);
}
.lq-component-lab-hero .lq-copy {
  color: var(--lq-text-muted-dark);
}
.lq-component-lab-index {
  padding: 18px 0;
  background: var(--lq-stone);
  border-block: 1px solid var(--lq-border);
}
.lq-component-lab-index__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.lq-component-lab-index__grid a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  background: var(--lq-panel);
  border: 1px solid var(--lq-border-strong);
  border-radius: var(--lq-radius-card);
  color: var(--lq-text-secondary);
  font-weight: 900;
}
.lq-component-lab {
  background: var(--lq-canvas);
}
.lq-component-lab__group {
  border-bottom: 10px solid var(--lq-dark-anchor);
}
.lq-component-lab__label {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px max(16px, calc((100vw - 1120px) / 2));
  background: var(--lq-dark-sidebar);
  color: var(--lq-text-on-dark);
}
.lq-component-lab__label span,
.lq-component-lab__label strong {
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.lq-component-lab__label span {
  color: var(--lq-orange-light);
}
.lq-component-lab__label strong {
  color: var(--lq-text-muted-dark);
  font-size: 15px;
}

@media (max-width: 900px) {
  .lq-nav__links,
  .lq-link-action { display: none; }
  .lq-menu-btn { display: block; }
  .lq-release h1 {
    max-width: min(100%, 13.5ch);
    font-size: clamp(44px, 14vw, 60px);
    letter-spacing: 0;
  }
  .lq-hero-line {
    display: inline;
  }
  .lq-grid--2,
  .lq-grid--3,
  .lq-grid--4,
  .lq-hero__grid,
  .lq-feature-row,
  .lq-beta-form-grid,
  .lq-beta-app,
  .lq-founding-value,
  .lq-after-apply__track,
  .lq-footer__top,
  .lq-footer__columns,
  .lq-proof-strip__grid,
  .lq-stat-strip,
  .lq-conversion-steps,
  .lq-quote-console__panel,
  .lq-lead-conveyor__belt,
  .lq-beta-diagnostic__board,
  .lq-benefit-meter__board,
  .lq-demo-instrument__panel,
  .lq-process-rig__grid,
  .lq-pricing-rack__grid,
  .lq-feature-stack__grid,
  .lq-satellite-frame__grid,
  .lq-pricing-workbench__panel,
  .lq-lead-docket__grid,
  .lq-command-cards__grid,
  .lq-media-lockup__grid,
  .lq-widget-lockup__shell,
  .lq-dashboard-docket__panel { grid-template-columns: 1fr; }
  .lq-founding-value__rates {
    grid-template-columns: 1fr;
  }
  .lq-hero-media__video {
    max-height: none;
  }
  .lq-command-cards__grid article:nth-child(2) {
    transform: none;
  }
  .lq-widget-lockup aside,
  .lq-dashboard-docket dl {
    border-left: 0;
    border-top: 1px solid var(--lq-border-dark);
  }
  .lq-dashboard-docket dl {
    border-top-color: var(--lq-border-strong);
  }
  .lq-feature-stack__grid article.is-large {
    grid-row: auto;
  }
  .lq-pricing-workbench__copy {
    border-right: 0;
    border-bottom: 1px solid var(--lq-border-dark);
  }
  .lq-lead-docket__card div {
    grid-template-columns: 1fr;
  }
  .lq-benefit-meter__board article,
  .lq-process-rig__grid article,
  .lq-pricing-rack__grid article {
    min-height: auto;
  }
  .lq-demo-instrument__panel ol {
    border-right: 0;
    border-bottom: 1px solid var(--lq-border-dark);
  }
  .lq-demo-instrument__screen {
    min-height: 260px;
  }
  .lq-hero-media__title {
    text-align: left;
  }
  .lq-hero-media__spec {
    grid-template-columns: 1fr;
  }
  .lq-compare-capabilities__table-wrap {
    display: none;
  }
  .lq-compare-capabilities__mobile {
    display: grid;
    gap: 16px;
  }
  .lq-release h2 {
    font-size: clamp(30px, 11vw, 42px);
    line-height: 1.05;
  }
  .lq-section-head {
    margin-bottom: 24px;
  }
  .lq-form {
    padding: 18px;
  }
  .lq-btn {
    width: 100%;
    text-align: center;
  }
  .lq-nav__actions .lq-btn {
    width: auto;
  }
  .lq-quote-console__readout,
  .lq-quote-console__switches {
    border: 0;
  }
  .lq-quote-console__readout,
  .lq-quote-console__controls {
    border-bottom: 1px solid var(--lq-border-dark);
  }
  .lq-lead-conveyor__belt::before {
    bottom: 0;
    left: 22px;
    right: auto;
    top: 0;
    width: 18px;
    height: auto;
    background:
      repeating-linear-gradient(180deg, rgba(245, 240, 232, 0.18) 0 18px, transparent 18px 34px),
      rgba(0, 0, 0, 0.2);
  }
  .lq-lead-conveyor__belt li {
    min-height: auto;
    padding: 28px 24px 28px 68px;
    border-right: 0;
    border-bottom: 1px solid var(--lq-border-dark);
  }
  .lq-lead-conveyor__belt li:last-child {
    border-bottom: 0;
  }
  .lq-lead-conveyor__station {
    margin-bottom: 12px;
  }
  .lq-beta-diagnostic__lane {
    min-height: auto;
  }
  .lq-conversion-step {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--lq-border-strong);
  }
  .lq-conversion-step:last-child {
    border-bottom: 0;
  }
  .lq-stat-box {
    min-height: 118px;
    border-right: 0;
    border-bottom: 1px solid var(--lq-border-dark);
  }
  .lq-stat-box:last-child {
    border-bottom: 0;
  }
  .lq-pricing-rounds { grid-template-columns: 1fr; }
  .lq-home-pricing .lq-pricing-card { order: initial; }
  .lq-pricing-card.is-featured { transform: none; }
  .lq-hiw-blueprint__steps { grid-template-columns: 1fr; }
  .lq-hiw-blueprint__step {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--lq-border-dark);
  }
  .lq-hiw-blueprint__step:last-child {
    border-bottom: 0;
  }
  .lq-hiw-blueprint__step + .lq-hiw-blueprint__step::before {
    display: none;
  }
  .lq-persona-moment {
    grid-template-columns: 1fr;
  }
  .lq-persona-moment__quote-side,
  .lq-persona-moment__detail-side {
    padding: 28px;
  }
  .lq-persona-moment__detail-side {
    border-left: 0;
    border-top: 1px solid var(--lq-border);
  }
  .lq-persona-moment--featured .lq-persona-moment__detail-side {
    border-top-color: rgba(255, 255, 255, 0.16);
  }
  .lq-feature-row:nth-child(even) .lq-feature-row__visual { order: 0; }
  .lq-topbar__inner,
  .lq-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* =========================================================
   Field-tool lockup pass
   Continuous warm surface, dark only where the product UI needs it.
   ========================================================= */

:root {
  --lq-blue: #1b71ab;
  --lq-blue-dark: #145e94;
  --lq-canvas: #f7f1e7;
  --lq-panel: #fffaf1;
  --lq-stone: #ebe1d2;
  --lq-muted: #f0e7d9;
  --lq-orange: #d4650e;
  --lq-orange-light: #ef7a22;
  --lq-green: #1d6b45;
  --lq-green-dark: #123f2c;
  --lq-green-vivid: #2d9f61;
  --lq-dark-anchor: #102419;
  --lq-dark-panel: #172d21;
  --lq-dark-sidebar: #1f3828;
  --lq-border: #cfc1ac;
  --lq-border-strong: #9f8f77;
  --lq-text: #171d15;
  --lq-text-secondary: #3d473b;
  --lq-text-muted: #6e695f;
}

body {
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.92), rgba(247, 241, 231, 1)),
    var(--lq-canvas);
}

.lq-topbar {
  background: var(--lq-green-dark);
}

.lq-nav-shell {
  background: rgba(247, 241, 231, 0.97);
  box-shadow: 0 2px 0 rgba(23, 29, 21, 0.04);
}

.lq-header .lq-btn,
.lq-hero .lq-btn {
  min-height: 54px;
}

.lq-home-lockup {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(207, 193, 172, 0.28) 1px, transparent 1px),
    linear-gradient(180deg, rgba(207, 193, 172, 0.18) 1px, transparent 1px),
    var(--lq-canvas);
  background-size: 44px 44px;
  border-bottom: 1px solid var(--lq-border);
}

.lq-home-lockup::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(247, 241, 231, 0.2), rgba(247, 241, 231, 0.88) 54%, rgba(247, 241, 231, 0.2));
  pointer-events: none;
}

.lq-home-lockup .lq-wrap {
  position: relative;
}

.lq-home-lockup .lq-copy {
  max-width: 620px;
  font-size: clamp(19px, 2vw, 22px);
  line-height: 1.45;
}

.lq-home-lockup .lq-hero-note {
  max-width: 620px;
  color: var(--lq-green-dark);
}

.lq-hero__grid {
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.78fr);
  gap: clamp(34px, 6vw, 72px);
}

.lq-quote-panel {
  background: var(--lq-dark-anchor);
  border: 2px solid #0b1a12;
  color: var(--lq-text-on-dark);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 18px 34px rgba(23, 29, 21, 0.2);
}

.lq-quote-panel__bar,
.lq-quote-panel__addr,
.lq-quote-panel__readouts,
.lq-quote-panel__rail {
  display: grid;
  border-color: rgba(245, 240, 232, 0.16);
}

.lq-quote-panel__bar {
  grid-template-columns: 1fr auto;
  gap: 12px;
  min-height: 48px;
  align-items: center;
  padding: 0 16px;
  background: var(--lq-dark-panel);
  border-bottom: 1px solid rgba(245, 240, 232, 0.14);
  color: var(--lq-text-muted-dark);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.lq-quote-panel__status {
  color: var(--lq-text-on-dark);
}

.lq-quote-panel__status::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 8px;
  background: var(--lq-green-vivid);
}

.lq-quote-panel__addr {
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  min-height: 48px;
  padding: 0 16px;
  border-bottom: 1px solid rgba(245, 240, 232, 0.14);
  background: #0c130f;
}

.lq-quote-panel__addr span,
.lq-quote-panel__readouts span {
  color: var(--lq-orange-light);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lq-quote-panel__addr strong {
  color: var(--lq-text-on-dark);
  font-size: 16px;
  font-weight: 700;
}

.lq-quote-panel__map {
  position: relative;
  min-height: 330px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: rgba(245, 240, 232, 0.42);
  background:
    linear-gradient(180deg, rgba(13, 26, 20, 0.26), rgba(13, 26, 20, 0.82)),
    radial-gradient(circle at 26% 36%, rgba(95, 117, 92, 0.72) 0 10%, transparent 20%),
    radial-gradient(circle at 72% 64%, rgba(91, 121, 78, 0.74) 0 12%, transparent 22%),
    linear-gradient(32deg, transparent 0 45%, rgba(194, 181, 160, 0.35) 46% 52%, transparent 53%),
    linear-gradient(100deg, rgba(46, 64, 44, 0.9), rgba(30, 45, 38, 0.94));
}

.lq-quote-panel__map::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 34px 34px;
  mix-blend-mode: screen;
  opacity: .5;
}

.lq-quote-panel__map svg {
  position: relative;
  z-index: 1;
  width: min(92%, 520px);
  height: auto;
}

.lq-quote-panel__readouts {
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(245, 240, 232, 0.14);
}

.lq-quote-panel__readouts > div {
  display: grid;
  gap: 10px;
  min-height: 124px;
  align-content: center;
  padding: 20px;
}

.lq-quote-panel__readouts > div + div {
  border-left: 1px solid rgba(245, 240, 232, 0.14);
}

.lq-quote-panel__readouts strong {
  color: var(--lq-text-on-dark);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 800;
  line-height: 0.95;
}

.lq-quote-panel__readouts strong.accent {
  color: var(--lq-orange-light);
}

.lq-quote-panel__readouts em {
  display: inline-block;
  margin-left: 4px;
  color: var(--lq-text-muted-dark);
  font-family: "Source Sans 3", system-ui, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.lq-quote-panel__rail {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(245, 240, 232, 0.14);
}

.lq-quote-panel__rail li {
  min-height: 42px;
  display: grid;
  place-items: center;
  color: var(--lq-text-muted-dark);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lq-quote-panel__rail li + li {
  border-left: 1px solid rgba(245, 240, 232, 0.14);
}

.lq-stat-band,
.lq-hiw-blueprint,
.lq-quote-console,
.lq-process-rig,
.lq-pricing-rack,
.lq-beta-diagnostic,
.lq-final-cta,
.lq-satellite-frame,
.lq-lead-docket {
  background: var(--lq-canvas);
  color: var(--lq-text);
  border-bottom: 1px solid var(--lq-border);
}

.lq-stat-band h2,
.lq-hiw-blueprint h2,
.lq-hiw-blueprint__step h3,
.lq-quote-console h2,
.lq-final-cta h2,
.lq-process-rig__grid article.is-new h3,
.lq-pricing-rack__grid .is-current h3 {
  color: var(--lq-text);
}

.lq-stat-band .lq-eyebrow,
.lq-hiw-blueprint__kicker span,
.lq-quote-console .lq-copy,
.lq-final-cta p {
  color: var(--lq-text-secondary);
}

.lq-stat-strip,
.lq-hiw-blueprint__steps,
.lq-quote-console__panel,
.lq-process-rig__grid article,
.lq-process-rig__grid article.is-new,
.lq-pricing-rack__grid article,
.lq-pricing-rack__grid article.is-current,
.lq-beta-diagnostic__lane,
.lq-beta-diagnostic__lane.is-ready,
.lq-satellite-frame__visual,
.lq-lead-docket__card,
.lq-faq__item {
  background: var(--lq-panel);
  border-color: var(--lq-border-strong);
  color: var(--lq-text);
  box-shadow: var(--lq-shadow-sm);
}

.lq-stat-box,
.lq-hiw-blueprint__step,
.lq-quote-console__controls,
.lq-console-control,
.lq-process-rig__grid li,
.lq-pricing-rack__grid article:not(.is-current),
.lq-beta-diagnostic__lane:not(.is-ready),
.lq-satellite-frame__plot {
  background: var(--lq-stone);
  border-color: var(--lq-border);
  color: var(--lq-text);
}

.lq-stat-box strong,
.lq-step-number,
.lq-hiw-blueprint__step-num,
.lq-quote-console__readout span,
.lq-console-control strong,
.lq-pricing-rack__grid .is-current strong,
.lq-satellite-frame__visual > span,
.lq-lead-docket__card > span {
  color: var(--lq-orange);
}

.lq-stat-box span,
.lq-hiw-blueprint__step p,
.lq-quote-console__readout p,
.lq-pricing-rack__grid .is-current p,
.lq-pricing-rack__grid .is-current li,
.lq-satellite-frame__visual ul,
.lq-lead-docket__card p {
  color: var(--lq-text-secondary);
}

.lq-hiw-blueprint__step + .lq-hiw-blueprint__step::before {
  color: var(--lq-border-strong);
}

.lq-quote-console__panel {
  grid-template-columns: 0.8fr 1.25fr 0.9fr;
  background: var(--lq-panel);
}

.lq-quote-console__readout,
.lq-quote-console__switches,
.lq-quote-console__controls {
  border-color: var(--lq-border);
}

.lq-quote-console__readout strong {
  color: var(--lq-green-dark);
}

.lq-console-control span {
  color: var(--lq-text-secondary);
}

.lq-console-control__track {
  background: rgba(23, 29, 21, 0.12);
  border-color: var(--lq-border);
}

.lq-console-control__track span {
  background: linear-gradient(90deg, var(--lq-blue), var(--lq-orange));
}

.lq-quote-console__switches span {
  background: rgba(29, 107, 69, 0.1);
  border-color: rgba(29, 107, 69, 0.24);
  color: var(--lq-text);
}

.lq-process-rig__grid article.is-new {
  box-shadow: var(--lq-shadow-md);
}

.lq-process-rig__grid article.is-new li {
  background: rgba(29, 107, 69, 0.1);
  border-color: rgba(29, 107, 69, 0.24);
  color: var(--lq-text);
}

.lq-pricing-rack__grid article.is-current::before,
.lq-beta-diagnostic__lane.is-ready::before {
  background: var(--lq-orange);
}

.lq-pricing-rack__grid span,
.lq-pricing-rack__grid .is-current span,
.lq-beta-diagnostic__lane span,
.lq-beta-diagnostic__lane.is-ready span {
  background: var(--lq-dark-anchor);
  color: var(--lq-orange-light);
}

.lq-beta-diagnostic__lane.is-ready h3,
.lq-beta-diagnostic__lane.is-ready li {
  color: var(--lq-text);
}

.lq-final-cta {
  background:
    linear-gradient(90deg, rgba(207, 193, 172, 0.18) 1px, transparent 1px),
    var(--lq-stone);
  background-size: 44px 44px;
}

.lq-final-cta__panel {
  max-width: 900px;
}

.lq-footer {
  background: var(--lq-green-dark);
}

@media (max-width: 900px) {
  .lq-hero__grid {
    grid-template-columns: 1fr;
  }

  .lq-quote-panel {
    width: min(100%, 520px);
    margin-inline: auto;
  }

  .lq-quote-panel__bar,
  .lq-quote-panel__addr,
  .lq-quote-panel__readouts,
  .lq-quote-panel__rail {
    grid-template-columns: 1fr;
  }

  .lq-quote-panel__readouts > div + div,
  .lq-quote-panel__rail li + li {
    border-left: 0;
    border-top: 1px solid rgba(245, 240, 232, 0.14);
  }

  .lq-quote-panel__map {
    min-height: 260px;
  }
}

/* =========================================================
   Actual merge pass: light industrial release system.
   Uses the beta structure without turning the site into a dark console.
   ========================================================= */

:root {
  --lq-sky: #1b71ab;
  --lq-sky-deep: #10527f;
  --lq-paper: #f4ecdd;
  --lq-paper-2: #fff7ea;
  --lq-iron: #17261c;
  --lq-iron-2: #203829;
  --lq-rule: #b9a78d;
  --lq-rule-soft: #d9cbb7;
  --lq-ink: #151914;
  --lq-copy-strong: #313a31;
  --lq-copy-muted: #676456;
}

body {
  background:
    linear-gradient(90deg, rgba(185, 167, 141, 0.18) 1px, transparent 1px),
    linear-gradient(180deg, rgba(185, 167, 141, 0.16) 1px, transparent 1px),
    var(--lq-paper);
  background-size: 48px 48px;
  color: var(--lq-ink);
}

.lq-topbar {
  background: var(--lq-iron);
  border-bottom: 2px solid #0d1711;
}

.lq-topbar__inner {
  min-height: 46px;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.lq-nav-shell {
  background: var(--lq-paper-2);
  border-bottom: 2px solid var(--lq-rule);
  backdrop-filter: none;
}

.lq-nav { min-height: 78px; }

.lq-logo {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-size: 24px;
  letter-spacing: 0.02em;
}

.lq-logo span {
  color: var(--lq-green);
}

/* .lq-logo::before removed — replaced by inline SVG icon mark */

.lq-nav__links a,
.lq-link-action {
  color: var(--lq-copy-strong);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 18px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lq-nav__links a[aria-current="page"] {
  color: var(--lq-orange);
  box-shadow: inset 0 -4px 0 var(--lq-orange);
}

.lq-release-ribbon {
  height: 38px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--lq-iron-2);
  color: var(--lq-text-on-dark);
  border-bottom: 1px solid rgba(255, 247, 234, 0.14);
}

.lq-release-ribbon__track {
  display: flex;
  width: max-content;
  animation: lq-ribbon-move 32s linear infinite;
}

.lq-release-ribbon span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 22px;
  border-right: 1px solid rgba(255, 247, 234, 0.14);
  color: #f2e6d2;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.lq-release-ribbon span:nth-child(3n + 1) { color: var(--lq-orange-light); }
.lq-release-ribbon span:nth-child(3n + 2) { color: #7db7dc; }

@keyframes lq-ribbon-move {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.lq-home-lockup {
  padding-top: 0;
  background:
    linear-gradient(90deg, rgba(185, 167, 141, 0.26) 1px, transparent 1px),
    linear-gradient(180deg, rgba(185, 167, 141, 0.22) 1px, transparent 1px),
    linear-gradient(180deg, var(--lq-paper-2), var(--lq-paper));
  background-size: 48px 48px, 48px 48px, auto;
  border-bottom: 2px solid var(--lq-rule);
}

.lq-home-lockup::before { display: none; }

.lq-home-status {
  max-width: 100%;
  min-height: 46px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 0 max(16px, calc((100vw - 1120px) / 2));
  border-bottom: 1px solid var(--lq-rule-soft);
  background: rgba(29, 107, 69, 0.08);
  color: var(--lq-copy-strong);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lq-home-status > div {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
}

.lq-home-status span {
  width: 10px;
  height: 10px;
  margin-right: 10px;
  background: var(--lq-green-vivid);
  box-shadow: 0 0 0 4px rgba(45, 159, 97, 0.16);
}

.lq-hero__grid--merged {
  grid-template-columns: minmax(0, 0.96fr) minmax(430px, 1.04fr);
  gap: clamp(28px, 4.8vw, 62px);
  align-items: stretch;
  padding-top: clamp(46px, 6vw, 72px);
}

.lq-hero-copy-lockup {
  display: grid;
  align-content: center;
}

.lq-hero-copy-lockup .lq-eyebrow {
  font-size: 18px;
  color: var(--lq-orange);
}

.lq-hero-copy-lockup h1 {
  max-width: 9.8ch;
  font-size: clamp(66px, 9.3vw, 118px);
  line-height: 0.88;
  letter-spacing: 0;
}

.lq-hero-copy-lockup h1 span { display: block; }
.lq-hero-copy-lockup h1 span:nth-child(2) { color: var(--lq-sky-deep); }

.lq-hero-copy-lockup .lq-copy {
  max-width: 650px;
  margin-top: 24px;
  color: var(--lq-copy-strong);
  font-size: clamp(19px, 1.8vw, 23px);
  line-height: 1.42;
}

.lq-hero-copy-lockup .lq-cta-row { margin-top: 30px; }

.lq-hero-specs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 32px 0 0;
  border-block: 2px solid var(--lq-rule);
}

.lq-hero-specs div {
  min-height: 112px;
  display: grid;
  align-content: center;
  gap: 3px;
  padding: 16px 18px;
}

.lq-hero-specs div + div { border-left: 1px solid var(--lq-rule); }

.lq-hero-specs dt {
  color: var(--lq-copy-muted);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lq-hero-specs dd {
  margin: 0;
  color: var(--lq-ink);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 800;
  line-height: 0.95;
  text-transform: uppercase;
}

.lq-hero-specs span {
  color: var(--lq-copy-muted);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.lq-hero-note {
  max-width: 640px;
  margin-top: 22px;
  color: var(--lq-green-dark);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-transform: uppercase;
}

.lq-quote-panel {
  align-self: stretch;
  display: grid;
  grid-template-rows: auto auto minmax(300px, 1fr) auto auto auto;
  border: 3px solid #0c1710;
  border-radius: 0;
  background: #0d1711;
  box-shadow:
    0 0 0 1px rgba(255, 247, 234, 0.1),
    0 22px 42px rgba(21, 25, 20, 0.24);
}

.lq-quote-panel__bar,
.lq-quote-panel__addr,
.lq-quote-panel__rail,
.lq-quote-panel__tabs {
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
}

.lq-quote-panel__bar {
  min-height: 54px;
  background: #15291e;
}

.lq-quote-panel__map {
  min-height: clamp(330px, 38vw, 430px);
  background:
    linear-gradient(180deg, rgba(13, 23, 17, 0.04), rgba(13, 23, 17, 0.78)),
    radial-gradient(circle at 18% 28%, rgba(57, 86, 53, 0.92) 0 11%, transparent 20%),
    radial-gradient(circle at 72% 56%, rgba(124, 142, 75, 0.78) 0 13%, transparent 24%),
    linear-gradient(32deg, transparent 0 44%, rgba(202, 188, 160, 0.45) 45% 53%, transparent 54%),
    linear-gradient(110deg, #243d2a, #16281c);
}

.lq-quote-panel__map polygon {
  fill: rgba(27, 113, 171, 0.24);
  stroke: var(--lq-sky);
}

.lq-quote-panel__map rect,
.lq-quote-panel__map text {
  stroke: var(--lq-sky);
  fill: var(--lq-sky);
}

.lq-quote-panel__tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 247, 234, 0.14);
}

.lq-quote-panel__tabs span {
  min-height: 46px;
  display: grid;
  place-items: center;
  color: var(--lq-text-muted-dark);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
}

.lq-quote-panel__tabs span:first-child {
  color: var(--lq-orange-light);
  background: rgba(212, 101, 14, 0.12);
}

.lq-quote-panel__tabs span + span {
  border-left: 1px solid rgba(255, 247, 234, 0.14);
}

.lq-field-board {
  background: var(--lq-paper);
  border-bottom: 2px solid var(--lq-rule);
}

.lq-field-board__head {
  max-width: 880px;
  margin-bottom: clamp(26px, 4vw, 42px);
}

.lq-field-board__head h2 {
  font-size: clamp(42px, 5.2vw, 70px);
  line-height: 0.94;
}

.lq-field-board__head .lq-copy {
  max-width: 760px;
  color: var(--lq-copy-strong);
}

.lq-field-board__rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 2px solid var(--lq-rule);
  border-left: 2px solid var(--lq-rule);
}

.lq-field-board__rail article {
  position: relative;
  min-height: 230px;
  display: grid;
  align-content: space-between;
  gap: 18px;
  padding: 24px;
  background: var(--lq-paper-2);
  border-right: 2px solid var(--lq-rule);
  border-bottom: 2px solid var(--lq-rule);
}

.lq-field-board__rail article::after {
  content: "";
  position: absolute;
  top: 29px;
  right: -12px;
  z-index: 2;
  width: 22px;
  height: 22px;
  background:
    linear-gradient(45deg, transparent 0 46%, var(--lq-orange) 46% 56%, transparent 56%),
    var(--lq-paper-2);
  border: 2px solid var(--lq-rule);
  transform: rotate(45deg);
}

.lq-field-board__rail article:last-child::after {
  display: none;
}

.lq-field-board__rail span {
  color: var(--lq-sky-deep);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 24px;
  font-weight: 800;
}

.lq-field-board__rail h3 {
  margin: 0;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 0.95;
}

.lq-field-board__rail p {
  margin: 0;
  color: var(--lq-copy-strong);
  font-weight: 800;
  line-height: 1.45;
}

.lq-field-board__footer {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  gap: 10px 16px;
  align-items: center;
  padding: 16px 18px;
  color: #fff7ea;
  background: var(--lq-iron);
  border: 2px solid var(--lq-rule);
  border-top: 0;
}

.lq-field-board__footer strong {
  color: var(--lq-orange-light);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 22px;
  letter-spacing: 0.07em;
  line-height: 1;
  text-transform: uppercase;
}

.lq-field-board__footer span {
  color: rgba(255, 247, 234, 0.82);
  font-weight: 800;
  line-height: 1.35;
}

.lq-stat-band,
.lq-hiw-blueprint,
.lq-quote-console,
.lq-satellite-frame,
.lq-lead-docket,
.lq-process-rig,
.lq-pricing-rack,
.lq-beta-diagnostic {
  background:
    linear-gradient(90deg, rgba(185, 167, 141, 0.12) 1px, transparent 1px),
    var(--lq-paper);
  background-size: 48px 48px;
}

.lq-stat-strip,
.lq-hiw-blueprint__steps,
.lq-quote-console__panel,
.lq-pricing-rack__grid,
.lq-beta-diagnostic__board {
  border-radius: 0;
}

.lq-stat-box,
.lq-hiw-blueprint__step,
.lq-pricing-rack__grid article,
.lq-beta-diagnostic__lane,
.lq-faq__item,
.lq-lead-docket__card,
.lq-satellite-frame__visual {
  border-width: 2px;
  border-radius: 0;
  box-shadow: none;
}

.lq-stat-box strong,
.lq-hiw-blueprint__step-num,
.lq-console-control strong,
.lq-pricing-rack__grid strong,
.lq-lead-docket__card > span {
  color: var(--lq-sky-deep);
}

.lq-pricing-rack__grid article.is-current strong,
.lq-quote-panel__readouts strong.accent {
  color: var(--lq-orange-light);
}

.lq-final-cta {
  background:
    linear-gradient(90deg, rgba(185, 167, 141, 0.16) 1px, transparent 1px),
    var(--lq-paper);
  background-size: 48px 48px;
  border-top: 2px solid var(--lq-rule);
}

.lq-hero:not(.lq-home-lockup) {
  background:
    linear-gradient(90deg, rgba(185, 167, 141, 0.18) 1px, transparent 1px),
    linear-gradient(180deg, rgba(185, 167, 141, 0.16) 1px, transparent 1px),
    var(--lq-paper-2);
  background-size: 48px 48px;
  border-bottom: 2px solid var(--lq-rule);
}

.lq-hero:not(.lq-home-lockup) h1 {
  max-width: 11ch;
  font-size: clamp(58px, 8vw, 96px);
  line-height: 0.9;
  letter-spacing: 0;
}

.lq-hero:not(.lq-home-lockup) .lq-copy {
  max-width: 690px;
  color: var(--lq-copy-strong);
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.45;
}

.lq-visual-card,
.lq-card {
  border-radius: 0;
  border-width: 2px;
  box-shadow: none;
}

.lq-visual-card {
  background:
    linear-gradient(90deg, rgba(185, 167, 141, 0.2) 1px, transparent 1px),
    var(--lq-paper);
  background-size: 32px 32px;
  border-color: var(--lq-rule);
}

.lq-visual-card strong {
  color: var(--lq-orange);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: clamp(44px, 6vw, 78px);
  line-height: 0.9;
  text-transform: uppercase;
}

.lq-section--tool,
.lq-section--dark,
.lq-section--stone {
  background:
    linear-gradient(90deg, rgba(185, 167, 141, 0.14) 1px, transparent 1px),
    var(--lq-paper);
  background-size: 48px 48px;
  color: var(--lq-ink);
  border-block: 2px solid var(--lq-rule);
}

.lq-section--tool h1,
.lq-section--tool h2,
.lq-section--tool h3,
.lq-section--dark h1,
.lq-section--dark h2,
.lq-section--dark h3 {
  color: var(--lq-ink);
}

.lq-section--tool .lq-copy,
.lq-section--tool p,
.lq-section--dark .lq-copy,
.lq-section--dark p {
  color: var(--lq-copy-strong);
}

.lq-card--dark {
  background: var(--lq-paper-2);
  color: var(--lq-ink);
  border-color: var(--lq-rule);
}

.lq-card--dark h2,
.lq-card--dark h3 {
  color: var(--lq-ink);
}

@media (max-width: 900px) {
  .lq-release-ribbon { height: 34px; }
  .lq-release-ribbon span {
    min-height: 34px;
    padding: 0 16px;
    font-size: 13px;
  }
  .lq-home-status {
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
    padding-inline: 16px;
  }
  .lq-home-status > div { min-height: 34px; }
  .lq-hero__grid--merged,
  .lq-field-board__rail {
    grid-template-columns: 1fr;
  }
  .lq-hero-copy-lockup h1 {
    max-width: 9.5ch;
    font-size: clamp(52px, 14vw, 68px);
  }
  .lq-hero-specs {
    grid-template-columns: 1fr;
  }
  .lq-hero-specs div + div {
    border-left: 0;
    border-top: 1px solid var(--lq-rule);
  }
  .lq-field-board__rail {
    border-left: 0;
  }
  .lq-field-board__rail article {
    min-height: 185px;
    border-left: 2px solid var(--lq-rule);
  }
  .lq-field-board__rail article::after {
    top: auto;
    right: auto;
    bottom: -12px;
    left: 26px;
  }
  .lq-field-board__rail article:last-child::after {
    display: none;
  }
  .lq-field-board__footer {
    grid-template-columns: 1fr;
    padding-right: 110px;
  }
  .lq-quote-panel__tabs,
  .lq-quote-panel__readouts {
    grid-template-columns: 1fr;
  }
  .lq-quote-panel__tabs span + span,
  .lq-quote-panel__readouts > div + div {
    border-left: 0;
    border-top: 1px solid rgba(255, 247, 234, 0.14);
  }
}

.lq-satellite-frame__grid {
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.42fr);
  align-items: center;
}

.lq-satellite-frame__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.lq-action-lab {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(280px, 0.96fr);
  gap: 14px;
  min-width: 0;
}

.lq-action-lab__panel {
  min-width: 0;
  overflow: hidden;
  border: 2px solid var(--lq-rule);
  background: var(--lq-paper-2);
}

.lq-action-lab__panel--logs {
  background: #172536;
  border-color: #172536;
  color: #fff7ea;
}

.lq-action-lab__header {
  display: grid;
  gap: 4px;
  padding: 15px 16px;
  border-bottom: 2px solid var(--lq-rule);
}

.lq-action-lab__panel--logs .lq-action-lab__header {
  border-bottom-color: rgba(255, 247, 234, 0.14);
}

.lq-action-lab__header span,
.lq-action-lab__media-slot span,
.lq-action-lab__quote-card span,
.lq-action-lab__steps span {
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lq-action-lab__header span {
  color: var(--lq-orange);
  font-size: 15px;
}

.lq-action-lab__panel--logs .lq-action-lab__header span {
  color: var(--lq-orange-light);
}

.lq-action-lab__header strong {
  color: var(--lq-ink);
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1;
}

.lq-action-lab__panel--logs .lq-action-lab__header strong {
  color: #fff7ea;
}

.lq-action-lab__screen {
  position: relative;
  min-height: 360px;
  padding: 16px;
  background:
    linear-gradient(90deg, rgba(185, 167, 141, 0.18) 1px, transparent 1px),
    linear-gradient(180deg, rgba(185, 167, 141, 0.16) 1px, transparent 1px),
    #f6efe0;
  background-size: 30px 30px;
}

.lq-action-lab__media-slot {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  display: grid;
  gap: 2px;
  width: min(250px, calc(100% - 32px));
  padding: 10px 12px;
  color: var(--lq-ink);
  background: rgba(255, 247, 234, 0.88);
  border: 2px solid var(--lq-rule);
}

.lq-action-lab__media-slot--video {
  gap: 0;
  padding: 0;
  overflow: hidden;
  background: #102419;
  box-shadow: 6px 6px 0 rgba(31, 64, 92, 0.13);
}

.lq-action-lab__media-slot video {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.lq-action-lab__media-slot--video span,
.lq-action-lab__media-slot--video small {
  padding-inline: 10px;
  background: #fff7ea;
}

.lq-action-lab__media-slot--video span {
  padding-top: 8px;
}

.lq-action-lab__media-slot--video small {
  padding-bottom: 9px;
}

.lq-action-lab__media-slot span {
  color: var(--lq-sky-deep);
  font-size: 14px;
}

.lq-action-lab__media-slot small,
.lq-action-lab__quote-card small,
.lq-action-lab__steps small {
  color: var(--lq-copy-strong);
  font-weight: 800;
  line-height: 1.35;
}

.lq-action-lab__map {
  position: absolute;
  inset: 132px 16px 72px;
  border: 2px solid rgba(31, 64, 92, 0.26);
  background: #e8e0cf;
}

.lq-action-lab__map svg {
  display: block;
  width: 100%;
  height: 100%;
}

.lq-action-lab__quote-card {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  display: grid;
  gap: 4px;
  width: min(230px, calc(100% - 32px));
  padding: 13px 14px;
  background: #fff7ea;
  border: 2px solid var(--lq-ink);
  box-shadow: 8px 8px 0 rgba(31, 64, 92, 0.16);
}

.lq-action-lab__quote-card span {
  color: var(--lq-sky-deep);
  font-size: 14px;
}

.lq-action-lab__quote-card strong {
  color: var(--lq-orange);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: clamp(42px, 5vw, 62px);
  line-height: 0.9;
}

.lq-action-lab__steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 2px solid var(--lq-rule);
}

.lq-action-lab__steps li {
  display: grid;
  gap: 5px;
  min-height: 116px;
  padding: 14px;
  border-right: 2px solid var(--lq-rule);
  border-bottom: 2px solid var(--lq-rule);
}

.lq-action-lab__steps li:nth-child(2n) {
  border-right: 0;
}

.lq-action-lab__steps li:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.lq-action-lab__steps span {
  color: var(--lq-orange);
  font-size: 16px;
}

.lq-action-lab__steps strong {
  color: var(--lq-ink);
  font-size: 18px;
  line-height: 1.1;
}

.lq-action-log {
  display: grid;
  gap: 0;
  padding: 14px;
  background:
    linear-gradient(90deg, rgba(255, 247, 234, 0.055) 1px, transparent 1px),
    #172536;
  background-size: 28px 28px;
}

.lq-action-log p {
  display: grid;
  grid-template-columns: minmax(112px, 0.42fr) minmax(0, 1fr);
  gap: 10px;
  min-width: 0;
  margin: 0;
  padding: 7px 0;
  color: rgba(255, 247, 234, 0.78);
  border-bottom: 1px solid rgba(255, 247, 234, 0.11);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: clamp(11px, 1.1vw, 12px);
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.lq-action-log p:last-child {
  border-bottom: 0;
}

.lq-action-log p span {
  color: #8fc7e5;
  font-weight: 800;
}

.lq-action-log p.is-complete {
  color: #fff7ea;
}

.lq-action-log p.is-complete span {
  color: var(--lq-orange-light);
}

.lq-action-lab__bridge {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  gap: 7px 10px;
  padding: 14px 16px 16px;
  color: rgba(255, 247, 234, 0.78);
  border-top: 1px solid rgba(255, 247, 234, 0.14);
  font-weight: 800;
  line-height: 1.35;
}

.lq-action-lab__bridge strong {
  color: #fff7ea;
}

.lq-break-even {
  background:
    linear-gradient(90deg, rgba(185, 167, 141, 0.16) 1px, transparent 1px),
    linear-gradient(180deg, rgba(185, 167, 141, 0.12) 1px, transparent 1px),
    var(--lq-paper-2);
  background-size: 48px 48px;
  border-block: 2px solid var(--lq-rule);
}

.lq-break-even__grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
}

.lq-break-even__copy h2 {
  max-width: 9.8ch;
  font-size: clamp(42px, 6vw, 82px);
  line-height: 0.92;
}

.lq-break-even__cta {
  margin-top: 28px;
}

.lq-break-even__panel {
  display: grid;
  gap: 0;
  margin: 0;
  overflow: hidden;
  background: var(--lq-paper);
  border: 2px solid var(--lq-ink);
  box-shadow: 10px 10px 0 rgba(31, 64, 92, 0.13);
}

.lq-break-even__panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  color: #fff7ea;
  background: #1f405c;
  border-bottom: 2px solid var(--lq-ink);
}

.lq-break-even__panel-head span,
.lq-break-even__panel-head strong,
.lq-break-even__controls label > span,
.lq-break-even__controls legend,
.lq-break-even__results span,
.lq-break-even__rates span {
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.lq-break-even__panel-head span {
  color: var(--lq-orange-light);
  font-size: 15px;
}

.lq-break-even__panel-head strong {
  font-size: clamp(24px, 3vw, 36px);
  line-height: 0.95;
}

.lq-break-even__controls {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-bottom: 2px solid var(--lq-rule);
  border-left: 2px solid var(--lq-rule);
}

.lq-break-even__controls label,
.lq-break-even__controls fieldset {
  display: grid;
  gap: 10px;
  min-width: 0;
  margin: 0;
  padding: 16px;
  border: 0;
  border-right: 2px solid var(--lq-rule);
  border-bottom: 2px solid var(--lq-rule);
}

.lq-break-even__controls label:nth-last-child(-n + 2),
.lq-break-even__controls fieldset:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.lq-break-even__controls label > span,
.lq-break-even__controls legend {
  padding: 0;
  color: var(--lq-copy-strong);
  font-size: 16px;
  line-height: 1.05;
}

.lq-break-even__input {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  min-height: 58px;
  background: #fff7ea;
  border: 2px solid var(--lq-rule);
}

.lq-break-even__input input {
  width: 100%;
  min-width: 0;
  min-height: 54px;
  border: 0;
  padding: 0 8px;
  color: var(--lq-ink);
  background: transparent;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: clamp(34px, 4.4vw, 48px);
  font-weight: 800;
  line-height: 1;
}

.lq-break-even__input input:focus {
  outline: 3px solid rgba(212, 101, 14, 0.28);
  outline-offset: -3px;
}

.lq-break-even__input em {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 100%;
  color: var(--lq-sky-deep);
  border-right: 2px solid var(--lq-rule);
  font-style: normal;
  font-weight: 900;
}

.lq-break-even__input input + em {
  border-right: 0;
  border-left: 2px solid var(--lq-rule);
}

.lq-break-even__input input:first-child {
  grid-column: 1 / 3;
}

.lq-break-even__input input:first-child + em {
  grid-column: 3;
  min-width: 62px;
}

.lq-break-even__input--prefix {
  grid-template-columns: 42px minmax(0, 1fr);
}

.lq-break-even__input--prefix input {
  grid-column: 2;
}

.lq-break-even__input--suffix {
  grid-template-columns: minmax(0, 1fr) 62px;
}

.lq-break-even__input--suffix input {
  grid-column: 1;
}

.lq-break-even__input--suffix em {
  grid-column: 2;
  min-width: 62px;
}

.lq-break-even__rates {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.lq-break-even__rates label {
  position: relative;
  min-height: 58px;
  padding: 0;
  border: 0;
}

.lq-break-even__rates input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.lq-break-even__rates span {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--lq-ink);
  background: #fff7ea;
  border: 2px solid var(--lq-rule);
  font-size: 28px;
  line-height: 1;
  box-shadow: inset 0 -2px 0 rgba(23, 29, 21, 0.18);
}

.lq-break-even__rates input:checked + span {
  color: #fff;
  background: var(--lq-orange);
  border-color: var(--lq-ink);
  box-shadow: var(--lq-raised-color);
}

.lq-break-even__rates input:focus-visible + span {
  outline: 3px solid rgba(45, 159, 97, 0.42);
  outline-offset: 2px;
}

.lq-break-even__results {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-bottom: 2px solid var(--lq-rule);
}

.lq-break-even__results div {
  display: grid;
  align-content: space-between;
  min-height: 138px;
  gap: 18px;
  padding: 16px;
  background: var(--lq-paper-2);
  border-right: 2px solid var(--lq-rule);
  border-bottom: 2px solid var(--lq-rule);
}

.lq-break-even__results div:nth-child(2n) {
  border-right: 0;
}

.lq-break-even__results div:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.lq-break-even__results div.is-primary {
  background: #1f405c;
}

.lq-break-even__results span {
  color: var(--lq-copy-strong);
  font-size: 15px;
  line-height: 1.05;
}

.lq-break-even__results .is-primary span {
  color: rgba(255, 247, 234, 0.82);
}

.lq-break-even__results strong {
  color: var(--lq-sky-deep);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 0.92;
  overflow-wrap: anywhere;
}

.lq-break-even__results .is-primary strong {
  color: var(--lq-orange-light);
}

.lq-break-even__verdict {
  margin: 0;
  padding: 16px 18px;
  color: var(--lq-ink);
  background: #fff7ea;
  font-weight: 900;
  line-height: 1.35;
}

@media (max-width: 1120px) {
  .lq-satellite-frame__grid,
  .lq-action-lab,
  .lq-break-even__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .lq-satellite-frame__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .lq-action-lab__screen {
    min-height: 390px;
  }

  .lq-action-lab__map {
    inset: 170px 12px 94px;
  }

  .lq-action-lab__media-slot {
    top: 12px;
    left: 12px;
    width: calc(100% - 24px);
  }

  .lq-action-lab__quote-card {
    right: 12px;
    bottom: 12px;
    width: calc(100% - 24px);
    box-shadow: none;
  }

  .lq-action-lab__steps {
    grid-template-columns: 1fr;
  }

  .lq-action-lab__steps li,
  .lq-action-lab__steps li:nth-child(2n),
  .lq-action-lab__steps li:nth-last-child(-n + 2) {
    min-height: auto;
    border-right: 0;
    border-bottom: 2px solid var(--lq-rule);
  }

  .lq-action-lab__steps li:last-child {
    border-bottom: 0;
  }

  .lq-action-log p,
  .lq-action-lab__bridge {
    grid-template-columns: 1fr;
  }

  .lq-break-even__copy h2 {
    max-width: 100%;
    font-size: clamp(36px, 11vw, 44px);
    line-height: 0.96;
  }

  .lq-break-even__panel {
    box-shadow: none;
  }

  .lq-break-even__panel-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
    padding: 14px;
  }

  .lq-break-even__controls,
  .lq-break-even__results {
    grid-template-columns: 1fr;
    border-left: 0;
  }

  .lq-break-even__controls label,
  .lq-break-even__controls fieldset,
  .lq-break-even__controls label:nth-last-child(-n + 2),
  .lq-break-even__controls fieldset:nth-last-child(-n + 2),
  .lq-break-even__results div,
  .lq-break-even__results div:nth-child(2n),
  .lq-break-even__results div:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 2px solid var(--lq-rule);
  }

  .lq-break-even__results div {
    min-height: 104px;
  }

  .lq-break-even__results div:last-child {
    border-bottom: 0;
  }

  .lq-break-even__verdict {
    padding: 14px;
  }
}

/* Mobile-first review pass: first judgment is likely from a phone. */
@media (max-width: 700px) {
  .lq-section,
  .lq-hero:not(.lq-home-lockup) {
    padding-block: 44px;
  }

  .lq-home-lockup {
    padding-bottom: 42px;
  }

  .lq-wrap {
    width: min(100% - 20px, var(--lq-max));
  }

  .lq-topbar__inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
    min-height: auto;
    padding-block: 8px;
  }

  .lq-topbar__inner p,
  .lq-topbar__inner a {
    line-height: 1.15;
  }

  .lq-nav {
    min-height: 62px;
  }

  .lq-logo {
    font-size: 20px;
  }

  .lq-nav__actions .lq-btn {
    min-height: 42px;
    padding-inline: 14px;
    font-size: 14px;
    line-height: 0.95;
  }

  .lq-menu-btn {
    width: 42px;
    height: 42px;
  }

  .lq-release-ribbon {
    height: 30px;
  }

  .lq-release-ribbon span {
    min-height: 30px;
    padding-inline: 12px;
    font-size: 12px;
  }

  .lq-home-status {
    font-size: 12px;
    line-height: 1.2;
  }

  .lq-hero-copy-lockup h1,
  .lq-hero:not(.lq-home-lockup) h1 {
    max-width: 10.5ch;
    font-size: clamp(42px, 13vw, 56px);
    line-height: 0.9;
  }

  .lq-hero-copy-lockup .lq-copy,
  .lq-hero:not(.lq-home-lockup) .lq-copy,
  .lq-copy {
    font-size: 17px;
    line-height: 1.48;
  }

  .lq-hero-note,
  .lq-home-lockup .lq-hero-note,
  .lq-note {
    font-size: 15px;
    line-height: 1.35;
  }

  .lq-hero__grid,
  .lq-hero__grid--merged {
    gap: 24px;
    padding-top: 34px;
  }

  .lq-cta-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .lq-btn {
    min-height: 50px;
    justify-content: center;
    white-space: normal;
  }

  .lq-hero:not(.lq-home-lockup) .lq-visual-card {
    min-height: 150px;
    padding: 18px;
    place-items: center;
  }

  .lq-hero:not(.lq-home-lockup) .lq-visual-card strong {
    font-size: clamp(34px, 10vw, 46px);
  }

  .lq-visual-card p {
    color: var(--lq-copy-strong);
    font-size: 16px;
    line-height: 1.35;
  }

  .lq-quote-panel {
    grid-template-rows: auto auto minmax(250px, auto) auto auto auto;
  }

  .lq-quote-panel__map {
    min-height: 250px;
  }

  .lq-hero-specs div {
    min-height: 88px;
    padding: 13px 14px;
  }

  .lq-hero-specs dd {
    font-size: 32px;
  }

  .lq-section-head,
  .lq-pricing-rack__head,
  .lq-feature-stack__head,
  .lq-quote-console__header,
  .lq-beta-diagnostic__header,
  .lq-process-rig__head {
    margin-bottom: 22px;
  }

  .lq-release h2,
  .lq-section h2 {
    font-size: clamp(32px, 10.5vw, 44px);
    line-height: 0.95;
  }

  .lq-card,
  .lq-pricing-rack__grid article,
  .lq-beta-diagnostic__lane,
  .lq-after-apply__track li,
  .lq-faq__item {
    padding: 18px;
  }

  .lq-pricing-rack__grid,
  .lq-feature-stack__grid,
  .lq-grid {
    gap: 12px;
  }

  .lq-pricing-rack__grid strong {
    font-size: clamp(38px, 13vw, 54px);
  }

  .lq-proof-strip__grid span {
    min-height: 76px;
    padding: 14px;
  }

  .lq-product-frame {
    padding: 14px;
  }

  .lq-product-frame__bar strong {
    font-size: 12px;
  }

  .lq-flow-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lq-map-frame {
    min-height: 150px;
  }

  .lq-action-lab {
    gap: 12px;
  }

  .lq-action-lab__header,
  .lq-action-log,
  .lq-action-lab__bridge {
    padding-inline: 12px;
  }

  .lq-action-lab__screen {
    min-height: 300px;
  }

  .lq-action-lab__steps li {
    padding: 12px;
  }

  .lq-action-log p {
    font-size: 11px;
  }

  .lq-beta-app__shell-body,
  .lq-form {
    padding: 14px;
  }

  .lq-form label {
    gap: 6px;
  }

  .lq-form input,
  .lq-form textarea {
    min-height: 48px;
    font-size: 16px;
  }

  .lq-form textarea {
    min-height: 104px;
  }

  .lq-final-cta__panel {
    text-align: center;
  }

  .lq-footer__top {
    gap: 30px;
  }
}

@media (max-width: 700px) {
  .lq-break-even__copy h2 {
    max-width: 100%;
    font-size: clamp(36px, 11vw, 44px);
    line-height: 0.96;
  }

  .lq-break-even__input--suffix {
    grid-template-columns: minmax(0, 1fr) 62px;
  }

  .lq-break-even__input--suffix input {
    grid-column: 1;
  }

  .lq-break-even__input--suffix em {
    grid-column: 2;
    min-width: 62px;
  }

  .lq-action-lab__screen {
    min-height: 390px;
  }

  .lq-action-lab__map {
    inset: 170px 12px 94px;
  }

  .lq-display-line {
    display: inline;
  }
}

@media (min-width: 901px) {
  .lq-home-lockup {
    min-height: calc(100vh - 162px);
    padding-bottom: clamp(34px, 4vw, 52px);
  }

  .lq-hero__grid--merged {
    grid-template-columns: minmax(0, 0.9fr) minmax(390px, 0.82fr);
    gap: clamp(28px, 4vw, 52px);
    align-items: center;
    padding-top: clamp(26px, 3.5vw, 42px);
  }

  .lq-hero-copy-lockup h1 {
    max-width: 100%;
    margin-bottom: 0;
    font-size: clamp(56px, 5.8vw, 76px);
    line-height: 0.9;
  }

  .lq-hero-copy-lockup h1 span {
    white-space: nowrap;
  }

  .lq-hero-copy-lockup .lq-copy {
    max-width: 590px;
    margin-top: 18px;
    font-size: clamp(18px, 1.35vw, 20px);
    line-height: 1.36;
  }

  .lq-hero-copy-lockup .lq-cta-row {
    margin-top: 22px;
  }

  .lq-hero-specs {
    margin-top: 22px;
  }

  .lq-hero-specs div {
    min-height: 84px;
    padding: 12px 14px;
  }

  .lq-hero-specs dd {
    font-size: clamp(28px, 3vw, 36px);
  }

  .lq-hero-note {
    max-width: 590px;
    margin-top: 16px;
    font-size: 17px;
    line-height: 1.18;
  }

  .lq-quote-panel {
    align-self: center;
    max-height: 590px;
    grid-template-rows: auto auto minmax(210px, 270px) auto auto auto;
  }

  .lq-quote-panel__bar {
    min-height: 44px;
  }

  .lq-quote-panel__addr {
    min-height: 42px;
  }

  .lq-quote-panel__map {
    min-height: 210px;
  }

  .lq-quote-panel__readouts > div {
    min-height: 88px;
    padding: 14px 16px;
  }

  .lq-quote-panel__readouts strong {
    font-size: clamp(30px, 3vw, 38px);
  }

  .lq-quote-panel__rail li {
    min-height: 34px;
  }

  .lq-quote-panel__tabs span {
    min-height: 38px;
  }
}

@media (min-width: 901px) {
  .lq-section-head,
  .lq-pricing-rack__head,
  .lq-feature-stack__head,
  .lq-quote-console__header,
  .lq-beta-diagnostic__header,
  .lq-process-rig__head,
  .lq-break-even__copy {
    max-width: 860px;
  }

  .lq-section-head h2,
  .lq-pricing-rack__head h2,
  .lq-feature-stack__head h2,
  .lq-quote-console__header h2,
  .lq-beta-diagnostic__header h2,
  .lq-process-rig__head h2,
  .lq-satellite-frame h2,
  .lq-lead-docket h2 {
    max-width: 16ch;
    font-size: clamp(40px, 4.8vw, 66px);
    line-height: 0.94;
    text-wrap: balance;
  }

  .lq-field-board h2 {
    max-width: 15ch;
    font-size: clamp(40px, 4.7vw, 64px);
    line-height: 0.94;
    text-wrap: balance;
  }

  .lq-break-even__grid {
    grid-template-columns: minmax(360px, 0.95fr) minmax(0, 1.05fr);
  }

  .lq-break-even__copy h2 {
    max-width: 15ch;
    font-size: clamp(40px, 4.7vw, 64px);
    line-height: 0.94;
    text-wrap: balance;
  }

  .lq-hero:not(.lq-home-lockup) h1 {
    max-width: 14ch;
    font-size: clamp(54px, 6.4vw, 82px);
    line-height: 0.9;
  }
}

/* Product proof bench: intro first, demonstration second. */
.lq-satellite-frame__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 4vw, 42px);
  align-items: start;
}

.lq-satellite-frame__intro {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 14px clamp(26px, 5vw, 58px);
  align-items: end;
}

.lq-satellite-frame__intro .lq-eyebrow,
.lq-satellite-frame__intro h2 {
  grid-column: 1;
}

.lq-satellite-frame__intro-copy {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: end;
  display: grid;
  gap: 10px;
}

.lq-satellite-frame__intro-copy .lq-copy,
.lq-satellite-frame__intro-copy .lq-note {
  max-width: 720px;
  margin: 0;
}

.lq-satellite-frame__actions {
  grid-column: 2;
  margin-top: 0;
}

.lq-satellite-frame .lq-action-lab {
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: 0;
  overflow: hidden;
  border: 2px solid var(--lq-rule);
  background: var(--lq-paper-2);
}

.lq-satellite-frame .lq-action-lab__panel {
  border: 0;
}

.lq-satellite-frame .lq-action-lab__panel--logs {
  border-left: 2px solid var(--lq-rule);
}

.lq-satellite-frame .lq-action-lab__screen {
  min-height: 330px;
}

.lq-satellite-frame .lq-action-log {
  max-height: 555px;
  overflow: auto;
}

@media (max-width: 1120px) {
  .lq-satellite-frame__intro,
  .lq-satellite-frame__intro .lq-eyebrow,
  .lq-satellite-frame__intro h2,
  .lq-satellite-frame__intro-copy,
  .lq-satellite-frame__actions,
  .lq-satellite-frame .lq-action-lab {
    grid-column: auto;
    grid-row: auto;
    grid-template-columns: 1fr;
  }

  .lq-satellite-frame .lq-action-lab__panel--logs {
    border-left: 0;
    border-top: 2px solid var(--lq-rule);
  }
}

@media (max-width: 700px) {
  .lq-satellite-frame .lq-action-log {
    max-height: 390px;
    overflow: auto;
  }
}

/* =========================================================
   Mobile-first design polish pass.
   Keeps the beta copy stable while tightening hierarchy,
   first-viewport density, tap targets, and product proof.
   ========================================================= */

:root {
  --lq-max: 1120px;
  --lq-card-polish: 6px;
  --lq-focus-ring: rgba(27, 113, 171, 0.32);
}

body {
  background:
    linear-gradient(180deg, rgba(255, 247, 234, 0.88), rgba(244, 236, 221, 0.94) 42%, rgba(244, 236, 221, 1)),
    var(--lq-paper);
}

.lq-nav-shell {
  box-shadow: 0 10px 24px rgba(21, 25, 20, 0.06);
}

.lq-btn {
  border-radius: var(--lq-card-polish);
  isolation: isolate;
}

.lq-btn:hover {
  transform: translateY(-1px);
}

.lq-btn:focus-visible,
.lq-faq__button:focus-visible,
.lq-menu-btn:focus-visible,
.lq-form input:focus,
.lq-form textarea:focus {
  outline-color: var(--lq-focus-ring);
}

.lq-card,
.lq-stat-strip,
.lq-hiw-blueprint__steps,
.lq-quote-console__panel,
.lq-pricing-rack__grid,
.lq-beta-diagnostic__board,
.lq-action-lab,
.lq-faq__item,
.lq-final-cta__panel,
.lq-form,
.lq-quote-panel {
  border-radius: var(--lq-card-polish);
}

.lq-card,
.lq-stat-box,
.lq-hiw-blueprint__step,
.lq-pricing-rack__grid article,
.lq-beta-diagnostic__lane,
.lq-faq__item,
.lq-lead-docket__card {
  box-shadow: 0 10px 26px rgba(21, 25, 20, 0.07);
}

.lq-section {
  padding-block: clamp(54px, 7vw, 88px);
}

.lq-home-lockup {
  padding-top: 0;
  background:
    linear-gradient(180deg, rgba(255, 247, 234, 0.96), rgba(244, 236, 221, 0.98)),
    var(--lq-paper);
}

.lq-nav__actions .lq-btn {
  min-width: 238px;
  white-space: nowrap;
}

.lq-hero-copy-lockup h1 {
  letter-spacing: 0.005em;
}

.lq-hero-specs {
  overflow: hidden;
  border: 2px solid var(--lq-rule);
  border-radius: var(--lq-card-polish);
  background: rgba(255, 247, 234, 0.76);
}

.lq-quote-panel {
  overflow: hidden;
  border-width: 2px;
}

.lq-quote-panel__map svg {
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.16));
}

.lq-field-board__rail {
  border-radius: var(--lq-card-polish);
  overflow: hidden;
  background: var(--lq-rule);
  gap: 2px;
  border: 2px solid var(--lq-rule);
}

.lq-field-board__rail article {
  border: 0;
}

.lq-field-board__rail article::after {
  display: none;
}

.lq-field-board__footer {
  border-radius: 0 0 var(--lq-card-polish) var(--lq-card-polish);
}

.lq-pricing-rack__grid article,
.lq-beta-diagnostic__lane {
  position: relative;
  overflow: hidden;
}

.lq-pricing-rack__grid article::before,
.lq-beta-diagnostic__lane::before {
  height: 5px;
}

.lq-pricing-rack__grid article.is-current {
  box-shadow:
    0 0 0 1px rgba(212, 101, 14, 0.18),
    0 18px 34px rgba(21, 25, 20, 0.12);
}

.lq-action-lab {
  box-shadow: 0 18px 42px rgba(21, 25, 20, 0.1);
}

.lq-action-lab__screen {
  background:
    radial-gradient(circle at 22% 18%, rgba(27, 113, 171, 0.12), transparent 28%),
    linear-gradient(180deg, #fff7ea, #efe1ca);
}

.lq-action-lab__quote-card {
  border-radius: var(--lq-card-polish);
  box-shadow: 0 14px 28px rgba(21, 25, 20, 0.14);
}

.lq-final-cta {
  background:
    linear-gradient(135deg, rgba(23, 38, 28, 0.96), rgba(32, 56, 41, 0.96)),
    var(--lq-iron);
  color: var(--lq-text-on-dark);
}

.lq-final-cta h2 {
  color: var(--lq-text-on-dark);
}

.lq-final-cta p {
  color: rgba(255, 247, 234, 0.78);
}

.lq-final-cta__panel {
  max-width: 820px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  .lq-release-ribbon__track {
    animation: none;
  }

  .lq-btn:hover {
    transform: none;
  }
}

@media (max-width: 900px) {
  .lq-topbar {
    display: none;
  }

  .lq-nav {
    min-height: 64px;
  }

  .lq-home-status {
    display: none;
  }

  .lq-hero__grid--merged {
    padding-top: 28px;
  }

  .lq-hero-specs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lq-hero-specs div {
    min-height: 86px;
    padding: 12px 10px;
  }

  .lq-hero-specs div + div {
    border-top: 0;
    border-left: 1px solid var(--lq-rule);
  }

  .lq-hero-specs dt,
  .lq-hero-specs span {
    font-size: 12px;
    line-height: 1.1;
  }

  .lq-hero-specs dd {
    font-size: clamp(24px, 7vw, 32px);
  }

  .lq-field-board__rail {
    gap: 1px;
  }

  .lq-field-board__rail article {
    min-height: 0;
    gap: 12px;
    padding: 18px;
  }

  .lq-field-board__footer {
    padding-right: 18px;
  }

  .lq-pricing-rack__grid {
    gap: 12px;
  }
}

@media (max-width: 700px) {
  body {
    background: var(--lq-paper);
  }

  .lq-hero:not(.lq-home-lockup),
  .lq-section--tool,
  .lq-section--dark,
  .lq-section--stone {
    background: var(--lq-paper-2);
  }

  .lq-release-ribbon {
    display: none;
  }

  .lq-wrap {
    width: min(100% - 22px, var(--lq-max));
  }

  .lq-header {
    position: sticky;
    top: 0;
    z-index: 90;
  }

  .lq-nav-shell {
    position: relative;
    z-index: 2;
  }

  /* .lq-logo::before responsive removed — SVG scales naturally */

  .lq-logo {
    font-size: 19px;
  }

  .lq-nav__actions {
    gap: 8px;
  }

  .lq-nav__actions .lq-btn {
    display: none;
  }

  .lq-menu-btn {
    flex: 0 0 auto;
    width: 46px;
    height: 46px;
    background: var(--lq-iron);
  }

  .lq-mobile-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 11px;
    right: 11px;
    z-index: 1;
    display: grid;
    gap: 6px;
    padding: 10px;
    background: rgba(255, 247, 234, 0.98);
    border: 2px solid var(--lq-rule);
    border-radius: var(--lq-card-polish);
    box-shadow:
      0 18px 36px rgba(21, 25, 20, 0.2),
      0 0 0 1px rgba(255, 247, 234, 0.7) inset;
  }

  .lq-mobile-nav[hidden] {
    display: none !important;
  }

  .lq-mobile-nav > a {
    min-height: 42px;
    padding: 0 14px;
    background: rgba(244, 236, 221, 0.54);
    border: 1px solid rgba(185, 167, 141, 0.5);
    border-radius: 4px;
    color: var(--lq-ink);
    font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
    font-size: 18px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .lq-mobile-nav > a[aria-current="page"] {
    background: rgba(29, 107, 69, 0.12);
    border-color: rgba(29, 107, 69, 0.28);
    color: var(--lq-green);
  }

  .lq-mobile-nav__cta {
    display: block;
    margin-top: 4px;
    padding-top: 10px;
    border-top: 1px solid var(--lq-rule-soft);
  }

  .lq-mobile-nav__cta .lq-btn {
    width: 100%;
    min-height: 46px;
    color: #fff;
    font-size: 16px;
    letter-spacing: 0.06em;
  }

  .lq-section,
  .lq-hero:not(.lq-home-lockup) {
    padding-block: 42px;
  }

  .lq-home-lockup {
    padding-bottom: 36px;
  }

  .lq-hero__grid--merged {
    padding-top: 18px;
  }

  .lq-hero-copy-lockup h1,
  .lq-hero:not(.lq-home-lockup) h1 {
    max-width: 11ch;
    font-size: clamp(38px, 11.2vw, 48px);
    line-height: 0.93;
  }

  .lq-hero-copy-lockup .lq-copy,
  .lq-copy {
    font-size: 16px;
    line-height: 1.45;
  }

  .lq-hero-copy-lockup .lq-cta-row {
    margin-top: 18px;
  }

  .lq-btn {
    min-height: 52px;
    padding-inline: 16px;
    font-size: 18px;
  }

  .lq-hero-specs {
    margin-top: 14px;
  }

  .lq-hero-specs div {
    min-height: 66px;
    gap: 1px;
  }

  .lq-hero-specs span {
    display: none;
  }

  .lq-hero-note {
    display: none;
  }

  .lq-quote-panel {
    width: 100%;
    grid-template-rows: auto auto minmax(210px, auto) auto auto;
  }

  .lq-quote-panel__bar,
  .lq-quote-panel__addr {
    min-height: 40px;
    padding-inline: 12px;
  }

  .lq-quote-panel__addr {
    grid-template-columns: 1fr;
    gap: 2px;
    padding-block: 8px;
  }

  .lq-quote-panel__map {
    min-height: 214px;
  }

  .lq-quote-panel__readouts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lq-quote-panel__readouts > div {
    min-height: 78px;
    padding: 12px;
  }

  .lq-quote-panel__readouts > div + div {
    border-top: 0;
    border-left: 1px solid rgba(255, 247, 234, 0.14);
  }

  .lq-quote-panel__readouts strong {
    font-size: clamp(24px, 8vw, 32px);
  }

  .lq-quote-panel__readouts em {
    display: block;
    margin: 3px 0 0;
    font-size: 11px;
  }

  .lq-quote-panel__rail {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .lq-quote-panel__rail li {
    min-height: 34px;
    font-size: 11px;
    letter-spacing: 0.08em;
  }

  .lq-quote-panel__rail li + li {
    border-top: 0;
    border-left: 1px solid rgba(255, 247, 234, 0.14);
  }

  .lq-quote-panel__tabs {
    display: none;
  }

  .lq-section-head,
  .lq-pricing-rack__head,
  .lq-feature-stack__head,
  .lq-quote-console__header,
  .lq-beta-diagnostic__header,
  .lq-process-rig__head,
  .lq-field-board__head {
    margin-bottom: 18px;
    text-align: center;
  }

  .lq-section-head .lq-copy,
  .lq-pricing-rack__head .lq-copy,
  .lq-feature-stack__head .lq-copy,
  .lq-quote-console__header .lq-copy,
  .lq-beta-diagnostic__header .lq-copy,
  .lq-process-rig__head .lq-copy,
  .lq-field-board__head .lq-copy {
    margin-inline: auto;
  }

  .lq-section-head .lq-eyebrow,
  .lq-pricing-rack__head .lq-eyebrow,
  .lq-feature-stack__head .lq-eyebrow,
  .lq-quote-console__header .lq-eyebrow,
  .lq-beta-diagnostic__header .lq-eyebrow,
  .lq-process-rig__head .lq-eyebrow,
  .lq-field-board__head .lq-eyebrow {
    margin-inline: auto;
  }

  .lq-release h2,
  .lq-section h2 {
    font-size: clamp(31px, 9.5vw, 40px);
    line-height: 0.98;
  }

  .lq-card,
  .lq-pricing-rack__grid article,
  .lq-beta-diagnostic__lane,
  .lq-after-apply__track li,
  .lq-faq__item,
  .lq-stat-box,
  .lq-hiw-blueprint__step {
    padding: 16px;
  }

  .lq-field-board__rail h3 {
    font-size: clamp(24px, 8vw, 32px);
  }

  .lq-stat-box {
    min-height: 96px;
  }

  .lq-pricing-rack__grid strong {
    font-size: clamp(36px, 11vw, 48px);
  }

  .lq-action-lab__screen {
    min-height: 330px;
  }

  .lq-action-lab__media-slot {
    min-height: 132px;
  }

  .lq-action-lab__steps {
    gap: 1px;
  }

  .lq-action-lab__steps li {
    min-height: 0;
  }

  .lq-action-log {
    font-size: 11px;
  }

  .lq-beta-diagnostic__lane ul,
  .lq-pricing-rack__grid ul {
    gap: 8px;
  }

  .lq-final-cta__panel {
    text-align: left;
  }

  .lq-final-cta .lq-cta-row {
    justify-content: stretch;
  }

  .lq-footer {
    padding-bottom: 90px;
  }
}

/* Live widget demo bay */
.lq-widget-demo-bay {
  background:
    linear-gradient(180deg, rgba(255, 247, 234, 0.96), rgba(244, 236, 221, 1)),
    var(--lq-paper);
  border-bottom: 2px solid var(--lq-rule);
}

.lq-widget-demo-bay__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.lq-widget-demo-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  background: var(--lq-paper-2);
  border: 2px solid var(--lq-rule);
  border-radius: var(--lq-card-polish);
  box-shadow: 0 14px 30px rgba(21, 25, 20, 0.08);
}

.lq-widget-demo-card__head {
  display: grid;
  gap: 8px;
  padding: 20px;
  border-bottom: 1px solid var(--lq-rule-soft);
}

.lq-widget-demo-card__head span {
  color: var(--lq-orange);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lq-widget-demo-card__head h3 {
  font-size: clamp(24px, 2.7vw, 34px);
}

.lq-widget-demo-card__head p {
  margin: 0;
  color: var(--lq-copy-strong);
  font-size: 16px;
  line-height: 1.45;
}

.lq-widget-demo-card__trigger {
  font-size: 14px;
  color: var(--lq-copy-muted);
  line-height: 1.4;
}

.lq-widget-demo-card__trigger strong {
  color: var(--lq-orange);
}

.lq-widget-demo-card__surface {
  display: grid;
  align-items: center;
  min-height: 260px;
  padding: 20px;
  background:
    linear-gradient(90deg, rgba(185, 167, 141, 0.16) 1px, transparent 1px),
    linear-gradient(180deg, rgba(185, 167, 141, 0.14) 1px, transparent 1px),
    rgba(244, 236, 221, 0.64);
  background-size: 32px 32px;
}

.lq-widget-demo-card__surface--trigger {
  min-height: 172px;
  place-items: center;
}

.lq-widget-demo-card__surface lawnquoter-widget {
  width: 100%;
}

.lq-widget-demo-card__surface--trigger lawnquoter-widget {
  width: auto;
}

/* Static mockup for the floating variant — a real floating embed is
   position:fixed and already lives globally on every page, so it can't sit
   inside a demo card. This illustrates the docked corner button instead. */
.lq-widget-demo-card__surface--mock {
  min-height: 172px;
}

.lq-widget-mock {
  position: relative;
  display: grid;
  align-content: center;
  gap: 12px;
  width: 100%;
  height: 100%;
  min-height: 140px;
  padding: 18px;
  background: var(--lq-paper-2);
  border: 1px solid var(--lq-rule-soft);
  border-radius: 8px;
}

.lq-widget-mock__line {
  height: 10px;
  width: 100%;
  border-radius: 5px;
  background: var(--lq-rule-soft);
}

.lq-widget-mock__line--short {
  width: 62%;
}

.lq-widget-mock__fab {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 9px 14px;
  border-radius: 999px;
  background: var(--lq-orange);
  color: #fff;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 8px 18px rgba(21, 25, 20, 0.18);
}

@media (max-width: 900px) {
  .lq-widget-demo-bay__grid {
    grid-template-columns: 1fr;
  }

  .lq-widget-demo-card__surface {
    min-height: 220px;
  }

  .lq-widget-demo-card__surface--trigger {
    min-height: 128px;
  }
}

@media (max-width: 700px) {
  .lq-widget-demo-card__head {
    padding: 16px;
    text-align: center;
  }

  .lq-widget-demo-card__surface {
    padding: 14px;
  }
}

/* WordPress plugin download */
.lq-wp-plugin__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 32px;
  align-items: start;
}

.lq-wp-steps {
  display: grid;
  gap: 16px;
  margin: 0;
  padding-left: 1.2em;
}

.lq-wp-steps li {
  color: var(--lq-copy-strong);
  font-size: 16px;
  line-height: 1.5;
}

.lq-wp-steps code {
  font-size: 0.92em;
}

.lq-wp-steps .lq-install-code {
  margin: 10px 0;
}

@media (max-width: 900px) {
  .lq-wp-plugin__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ── Texture System ─────────────────────────────────────────────────────────
   Atmospheric surface overlays via pseudo-elements.
   Rule: if you can clearly see it's a texture, it's too strong.
   Intent is atmosphere, not pattern.

   Fixes applied per Copilot + Gemini review:
   - Hero uses ::after (not ::before) to avoid conflict with .lq-home-lockup::before gradient
   - All other surfaces use ::before
   - position:relative and child z-index consolidated into single shared blocks
   - Redundant .eleventy.js passthrough removed (src/assets covers textures/)
   ── ─────────────────────────────────────────────────────────────────────── */

/* Shared: position:relative on all textured sections */
.lq-section--textured-warm,
.lq-section--textured-stone,
.lq-section--textured-dark,
.lq-section--textured-hero,
.lq-section--textured-grit,
.lq-section--textured-lawn {
  position: relative;
}

/* Shared: lift all direct children above the texture layer */
.lq-section--textured-warm > *,
.lq-section--textured-stone > *,
.lq-section--textured-dark > *,
.lq-section--textured-hero > *,
.lq-section--textured-grit > *,
.lq-section--textured-lawn > * {
  position: relative;
  z-index: 1;
}

/* Warm surfaces — canvas, stone, panel backgrounds */
.lq-section--textured-warm::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('/assets/textures/tx-warm-paper.webp');
  background-size: 600px 600px;
  background-repeat: repeat;
  opacity: 0.45;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 0;
}

/* Stone surface — slightly warmer parchment variant */
.lq-section--textured-stone::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('/assets/textures/tx-warm-parchment.webp');
  background-size: 600px 600px;
  background-repeat: repeat;
  opacity: 0.30;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 0;
}

/* Dark sections — dark anchor and dark panel */
.lq-section--textured-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('/assets/textures/tx-dark-grain.webp');
  background-size: 800px 800px;
  background-repeat: repeat;
  opacity: 0.18;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 0;
}

/* Hero dark — uses ::after to avoid conflict with .lq-home-lockup::before gradient */
.lq-section--textured-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('/assets/textures/tx-dark-atmospheric.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.28;
  mix-blend-mode: soft-light;
  pointer-events: none;
  z-index: 0;
}

/* Process / comparison sections — outdoor grit */
.lq-section--textured-grit::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('/assets/textures/tx-aggregate.webp');
  background-size: 500px 500px;
  background-repeat: repeat;
  opacity: 0.10;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 0;
}

/* Lot Lines section — lawn green atmospheric */
.lq-section--textured-lawn::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('/assets/textures/tx-lawn-green.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.14;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 0;
}

/* ── Copy additions — 2026-05-25 ────────────────────────────────────────── */

/* "Paste one snippet / Set your formula / Answer the phone" */
.lq-hero-steps {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.lq-hero-steps li {
  font-family: var(--head);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--lq-vivid-green);
  padding-left: 20px;
  position: relative;
}
.lq-hero-steps li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--lq-orange);
}

/* "No per-lead fees. No CRM bloat. Pure conversion." band */
.lq-pure-conversion {
  background: var(--lq-dark-anchor);
  padding: 14px 0;
  border-top: 1px solid var(--lq-border-dark);
  border-bottom: 1px solid var(--lq-border-dark);
}
.lq-pure-conversion p {
  font-family: var(--head);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--lq-text-on-dark);
  text-align: center;
  margin: 0;
}
.lq-pure-conversion strong {
  color: var(--lq-orange);
}

/* "YOU KEEP 100% OF EVERY QUOTE." */
.lq-ownership-line {
  font-family: var(--head);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--lq-vivid-green);
  margin: 20px 0 0;
  line-height: 1;
}

/* Beta visual card list */
.lq-card-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.lq-card-list li {
  font-size: 14px;
  padding-left: 16px;
  position: relative;
  opacity: 0.85;
}
.lq-card-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--lq-vivid-green);
  font-weight: 700;
}

/* Lead copy styling */
.lq-copy--lead {
  font-size: 1.1em;
  font-weight: 600;
  color: var(--lq-text);
}

/* ── Logo mark system — 2026-05-25 ─────────────────────────────────────────
   LAWN: #F5F0E8 warm white (never green on green)
   QUOTER: #ea580c orange
   Icon: inline SVG, no file dependency
   ── ─────────────────────────────────────────────────────────────────────── */

.lq-logo--mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.lq-logo__word {
  display: inline-flex;
  align-items: baseline;
  font-family: var(--head);
  font-weight: 800;
  font-size: 26px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1;
}

.lq-logo__lawn {
  color: #F5F0E8;
  font-weight: 800;
}

.lq-logo__quoter {
  color: #ea580c;
  font-weight: 800;
}

.lq-logo--footer .lq-logo__word {
  font-size: 20px;
}

/* ── Screenshot slot — looks like working notes ──────────────────────────── */
.lq-screenshot-slot {
  width: 100%;
  max-width: 480px;
  min-height: 280px;
  background: var(--lq-dark-panel);
  border: 1px solid var(--lq-border-dark);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 24px 28px;
  gap: 10px;
  position: relative;
  overflow: hidden;
  margin: 16px 0;
}

.lq-screenshot-slot::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(45,74,62,0.15) 20px,
    rgba(45,74,62,0.15) 21px
  );
}

.lq-screenshot-slot--embed {
  min-height: 120px;
  max-width: 480px;
  margin: 24px 0;
}

.lq-screenshot-slot__label {
  font-family: var(--head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lq-orange);
  border: 1px solid var(--lq-orange);
  padding: 4px 12px;
  border-radius: 2px;
  position: relative;
  z-index: 1;
}

.lq-screenshot-slot__file {
  font-family: 'IBM Plex Mono', 'Courier New', monospace;
  font-size: 12px;
  color: #F5F0E8;
  position: relative;
  z-index: 1;
  opacity: 0.7;
}

/* ── Footer signals ──────────────────────────────────────────────────────── */
.lq-footer__signal {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 700;
}
.lq-footer__columns span {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--lq-text-on-dark);
  margin-bottom: 8px;
}

.lq-footer__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lq-vivid-green);
  display: inline-block;
  animation: lq-pulse 2s ease-in-out infinite;
}

@keyframes lq-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ── Text hierarchy rule enforcement ────────────────────────────────────────
   Text hierarchy = font-size + weight + face ONLY.
   Never opacity, never rgba color dimming, never reduced alpha.
   All text is fully legible. Hierarchy is shown through type choices.
   ── ─────────────────────────────────────────────────────────────────────── */

/* ── FAQ two-column layout on larger screens ────────────────────────────── */
@media (min-width: 900px) {
  .lq-faq {
    column-count: 2;
    column-gap: 40px;
  }
  .lq-faq__item {
    break-inside: avoid;
    page-break-inside: avoid;
  }
}

/* ── Launch polish fixes — 2026-06-05 ───────────────────────────────────── */
.lq-hero-copy-lockup {
  min-width: 0;
  position: relative;
  z-index: 1;
}

.lq-quote-panel {
  width: 100%;
  min-width: 0;
  justify-self: end;
}

.lq-hero-widget {
  margin-top: 18px;
  max-width: 640px;
}

.lq-pricing-note-strip {
  padding: clamp(18px, 3vw, 28px) 0;
  background: var(--lq-paper);
  border-top: 1px solid var(--lq-rule-soft);
  border-bottom: 1px solid var(--lq-rule-soft);
}

.lq-pricing-note-strip .lq-wrap {
  color: var(--lq-copy-strong);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 900;
  line-height: 1.25;
}

.lq-card--dark p,
.lq-card--dark .lq-list li {
  color: var(--lq-copy-strong);
  font-size: 18px;
  font-weight: 800;
}

.lq-pricing-card.is-featured .lq-list li {
  color: var(--lq-text-on-dark);
}

.lq-final-cta p,
.lq-visual-card p,
.lq-card-list li {
  color: var(--lq-text);
}

.lq-section--dark .lq-final-cta p,
.lq-section--textured-dark .lq-final-cta p,
.lq-final-cta p {
  color: var(--lq-text-on-dark);
}

.lq-visual-card p {
  font-weight: 800;
}

.lq-card-list {
  gap: 8px;
}

.lq-card-list li {
  font-size: 16px;
  font-weight: 900;
  opacity: 1;
}

.lq-card-list li::before {
  color: var(--lq-green);
}

.lq-proof-strip.lq-section--tight {
  padding: clamp(22px, 4vw, 36px) 0;
  background:
    linear-gradient(90deg, rgba(234, 88, 12, 0.08), transparent 28%),
    var(--lq-dark-anchor);
}

.lq-proof-strip__grid {
  max-width: 1120px;
  border: 1px solid rgba(245, 240, 232, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(245, 240, 232, 0.08),
    0 18px 38px rgba(12, 19, 16, 0.22);
}

.lq-proof-strip__grid span {
  min-height: 88px;
  align-content: center;
  justify-items: start;
  padding: 18px 22px;
  color: var(--lq-orange-light);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 15px;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-align: left;
  text-transform: uppercase;
}

.lq-proof-strip__grid strong {
  display: block;
  margin-top: 7px;
  color: var(--lq-text-on-dark);
  font-size: clamp(22px, 2.4vw, 30px);
  letter-spacing: 0.02em;
}

.lq-beta-app {
  align-items: center;
}

.lq-beta-app__intro {
  display: grid;
  gap: 18px;
}

.lq-beta-app__steps {
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

.lq-beta-app__steps article {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 4px 14px;
  padding: 14px 16px;
  background: rgba(254, 252, 248, 0.78);
  border: 1px solid var(--lq-border-strong);
  border-left: 4px solid var(--lq-orange);
  border-radius: var(--lq-radius-card);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.lq-beta-app__steps span {
  grid-row: span 2;
  color: var(--lq-orange);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
}

.lq-beta-app__steps strong {
  color: var(--lq-text);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1;
  text-transform: uppercase;
}

.lq-beta-app__steps p {
  margin: 0;
  color: var(--lq-text-secondary);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.35;
}

.lq-beta-app__shell {
  max-width: 620px;
  justify-self: stretch;
}

.lq-compare-capabilities__table-wrap {
  border: 2px solid var(--lq-dark-anchor);
  background: var(--lq-dark-anchor);
  box-shadow:
    10px 10px 0 rgba(28, 23, 18, 0.12),
    var(--lq-shadow-md);
}

.lq-capability-table th {
  background: var(--lq-dark-panel);
  border-color: rgba(245, 240, 232, 0.18);
  color: var(--lq-text-on-dark);
}

.lq-capability-table th.is-featured {
  background: var(--lq-sky-deep);
  color: var(--lq-text-on-dark);
}

.lq-capability-table td {
  color: var(--lq-text-secondary);
  font-size: 17px;
  font-weight: 700;
}

.lq-capability-table td:first-child {
  background: var(--lq-stone);
  border-right-color: var(--lq-border-strong);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 18px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.lq-capability-table .is-featured {
  background: rgba(27, 113, 171, 0.11);
  color: var(--lq-sky-deep);
  font-weight: 900;
}

.lq-capability-table tbody tr:hover td {
  background-color: rgba(234, 88, 12, 0.06);
}

.lq-capability-table tbody tr:hover td.is-featured {
  background-color: rgba(27, 113, 171, 0.16);
}

.lq-footer {
  padding: clamp(72px, 8vw, 104px) 0 32px;
  background:
    linear-gradient(90deg, rgba(234, 88, 12, 0.08), transparent 24%),
    linear-gradient(180deg, var(--lq-dark-anchor), var(--lq-dark-sidebar));
}

.lq-footer__top {
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.35fr);
  align-items: start;
  gap: clamp(38px, 6vw, 72px);
  padding-bottom: clamp(38px, 5vw, 56px);
}

.lq-footer__tagline {
  margin-top: 18px;
  color: var(--lq-text-on-dark);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 0.95;
  text-transform: uppercase;
}

.lq-footer__columns {
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: clamp(24px, 4vw, 48px);
  justify-self: end;
  width: min(100%, 620px);
}

.lq-footer h2 {
  color: var(--lq-orange-light);
  font-size: 22px;
  letter-spacing: 0.08em;
}

.lq-footer a {
  color: var(--lq-text-on-dark);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.25;
}

.lq-footer__bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  padding-top: 28px;
  padding-bottom: 88px;
  color: var(--lq-text-on-dark);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.lq-footer__bottom span:nth-child(2) {
  text-align: center;
}

.lq-footer__bottom span:last-child {
  text-align: right;
}

@media (min-width: 901px) {
  .lq-hero__grid--merged {
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.68fr);
  }

  .lq-hero-copy-lockup h1 {
    max-width: 100%;
    font-size: clamp(52px, 5.25vw, 72px);
  }

  .lq-hero-copy-lockup h1 span {
    white-space: nowrap;
  }

  .lq-hero-copy-lockup .lq-copy {
    max-width: 590px;
  }

  .lq-quote-panel {
    max-width: 480px;
  }
}

@media (max-width: 900px) {
  .lq-proof-strip__grid,
  .lq-footer__top,
  .lq-footer__columns,
  .lq-footer__bottom {
    grid-template-columns: 1fr;
  }

  .lq-footer__columns {
    justify-self: stretch;
  }

  .lq-footer__bottom,
  .lq-footer__bottom span:nth-child(2),
  .lq-footer__bottom span:last-child {
    text-align: left;
  }

  .lq-beta-app__steps article {
    grid-template-columns: 36px minmax(0, 1fr);
  }
}
