/**
 * Pipeline Intelligence — home v2 draft (light one-pager).
 * Self-contained light theme matching the uploaded one-pager. Scoped under
 * .pi-lp so it never collides with the dark styles-home.css design system.
 */
.pi-lp {
  --lp-bg: #f7f6f3;
  --lp-surface: #ffffff;
  --lp-ink: #0f1723;
  --lp-ink-soft: #33404f;
  --lp-body: #55616f;
  --lp-muted: #8792a1;
  --lp-line: #e6e8ec;
  --lp-blue: #2f6bef;
  --lp-blue-dark: #1f4fd0;
  --lp-blue-bg: #e9f0fd;
  --lp-navy: #0f1a2a;
  --lp-navy-2: #101c2e;
  --lp-pill: #eef0f3;
  --font-display: "Space Grotesk", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: "IBM Plex Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;

  background: var(--lp-bg);
  color: var(--lp-body);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

.pi-lp * { box-sizing: border-box; }
.pi-lp a { color: inherit; text-decoration: none; }

.pi-lp__wrap {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Nav */
.pi-lp-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1040px;
  margin: 0 auto;
  padding: 20px 24px;
}

.pi-lp-nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font: 600 16px/1 var(--font-display);
  color: var(--lp-ink);
}

.pi-lp-nav__brand img { width: 22px; height: 22px; border-radius: 6px; }

.pi-lp-nav__links {
  display: flex;
  align-items: center;
  gap: 26px;
  font: 500 14px/1 var(--font-body);
  color: var(--lp-ink-soft);
}

.pi-lp-nav__links a:hover { color: var(--lp-blue); }

/* Mobile menu toggle (hamburger) — hidden on desktop, shown <900px */
.pi-lp-nav__menu {
  display: none;
  background: transparent;
  border: 1px solid var(--lp-line);
  color: var(--lp-ink);
  border-radius: 8px;
  width: 38px;
  height: 38px;
  padding: 0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex: none;
}
.pi-lp-nav__menu:hover { background: var(--lp-pill); }

.pi-lp-nav__mobile {
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 8px 24px 20px;
  border-bottom: 1px solid var(--lp-line);
  background: var(--lp-surface);
}
.pi-lp-nav__mobile.open { display: flex; }
.pi-lp-nav__mobile a {
  padding: 12px 0;
  font: 500 15px/1 var(--font-body);
  color: var(--lp-ink-soft);
  border-bottom: 1px solid var(--lp-line);
}
.pi-lp-nav__mobile a:last-of-type { border-bottom: none; }
.pi-lp-nav__mobile a:hover { color: var(--lp-blue); }
.pi-lp-nav__mobile a.is-active { color: var(--lp-blue); }
.pi-lp-nav__mobile-actions { padding-top: 14px; margin-top: 4px; }
.pi-lp-nav__mobile-actions .pi-lp-btn { width: 100%; }

/* Buttons */
.pi-lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font: 600 15px/1 var(--font-body);
  padding: 13px 28px;
  border-radius: 9px;
  border: none;
  cursor: pointer;
  background: var(--lp-blue);
  color: #fff;
  transition: background 0.15s ease, transform 0.15s ease;
}
/* .pi-lp a { color: inherit } outranks a bare .pi-lp-btn class selector,
   so re-assert white text with an element+class selector of equal
   specificity that wins on source order. */
.pi-lp a.pi-lp-btn,
.pi-lp a.pi-lp-btn:visited { color: #fff; }
.pi-lp-btn:hover { background: var(--lp-blue-dark); }
.pi-lp-btn--sm { padding: 10px 18px; font-size: 14px; }

/* Hero */
.pi-lp-hero {
  text-align: center;
  padding: 40px 24px 8px;
  max-width: 820px;
  margin: 0 auto;
}

.pi-lp-eyebrow {
  display: inline-block;
  background: var(--lp-blue-bg);
  color: var(--lp-blue);
  font: 600 11px/1.4 var(--font-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 15px;
  border-radius: 20px;
  margin-bottom: 22px;
}

.pi-lp-hero h1 {
  font: 700 52px/1.1 var(--font-display);
  color: var(--lp-ink);
  letter-spacing: -0.02em;
  margin: 0 0 18px;
}
.pi-lp-hero h1 .accent { color: var(--lp-blue); }

.pi-lp-hero__copy {
  font: 400 16.5px/1.65 var(--font-body);
  color: var(--lp-body);
  max-width: 600px;
  margin: 0 auto 26px;
}

/* Inline 3-step flow */
.pi-lp-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 8px;
  margin: 26px auto 0;
  max-width: 780px;
}
.pi-lp-step { max-width: 200px; text-align: center; }
.pi-lp-step__title {
  font: 600 12.5px/1.3 var(--font-body);
  color: var(--lp-ink);
  margin: 0 0 3px;
}
.pi-lp-step__desc {
  font: 400 12px/1.45 var(--font-body);
  color: var(--lp-muted);
  margin: 0;
}
.pi-lp-step__sep {
  color: var(--lp-blue);
  font-size: 18px;
  line-height: 1;
  padding-top: 2px;
  opacity: 0.7;
}

/* Browser-framed product shot */
.pi-lp-shot {
  max-width: 920px;
  margin: 40px auto 0;
  background: var(--lp-surface);
  border: 1px solid var(--lp-line);
  border-radius: 14px;
  box-shadow: 0 30px 60px -30px rgba(15, 26, 42, 0.35);
  overflow: hidden;
}
.pi-lp-shot__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  border-bottom: 1px solid var(--lp-line);
  background: #fbfbfc;
}
.pi-lp-shot__dot { width: 10px; height: 10px; border-radius: 50%; background: #dfe2e7; }
.pi-lp-shot__url {
  margin-left: 10px;
  flex: 1;
  max-width: 300px;
  background: #eef0f3;
  color: var(--lp-muted);
  font: 500 11px/1 var(--font-mono);
  padding: 6px 12px;
  border-radius: 6px;
  text-align: center;
}
.pi-lp-shot img { display: block; width: 100%; height: auto; }

/* Trusted by */
.pi-lp-trust { text-align: center; padding: 46px 0 8px; }
.pi-lp-trust__label {
  font: 600 11px/1 var(--font-mono);
  letter-spacing: 0.14em;
  color: var(--lp-muted);
  margin-bottom: 18px;
  padding: 0 24px;
}
.pi-lp-trust__pills {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 12px;
  padding: 0 24px;
}
.pi-lp-trust__pills span {
  background: var(--lp-pill);
  color: var(--lp-ink-soft);
  font: 600 13px/1 var(--font-display);
  padding: 8px 16px;
  border-radius: 18px;
}

/* Scrolling logo marquee (matches the dark index.html marquee, re-themed light) */
.pi-lp-trust__mask {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.pi-lp-trust__track {
  display: flex;
  width: max-content;
  gap: 20px;
  align-items: center;
  animation: pi-lp-marquee 22s linear infinite;
}
.pi-lp-trust__mask:hover .pi-lp-trust__track { animation-play-state: paused; }
@keyframes pi-lp-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.pi-lp-logo-chip {
  flex: none;
  width: 104px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--lp-surface);
  border: 1px solid var(--lp-line);
  border-radius: 9px;
  padding: 6px 12px;
}
.pi-lp-logo-chip img { max-width: 100%; max-height: 100%; object-fit: contain; }

@media (prefers-reduced-motion: reduce) {
  .pi-lp-trust__track { animation: none; }
}

/* Features */
.pi-lp-features { padding: 56px 24px 8px; text-align: center; }
.pi-lp-features h2 {
  font: 700 30px/1.2 var(--font-display);
  color: var(--lp-ink);
  letter-spacing: -0.01em;
  margin: 0 0 8px;
}
.pi-lp-features__sub {
  font: 400 15px/1.6 var(--font-body);
  color: var(--lp-body);
  margin: 0 0 30px;
}
.pi-lp-features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
}
.pi-lp-card {
  background: var(--lp-surface);
  border: 1px solid var(--lp-line);
  border-radius: 12px;
  padding: 22px 20px;
  text-align: left;
  box-shadow: 0 1px 2px rgba(15, 26, 42, 0.04);
}
.pi-lp-card__icon {
  width: 22px;
  height: 22px;
  border-radius: 7px;
  background: var(--lp-blue-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.pi-lp-card__icon span { width: 8px; height: 8px; border-radius: 50%; background: var(--lp-blue); }
.pi-lp-card h3 {
  font: 600 15px/1.3 var(--font-display);
  color: var(--lp-ink);
  margin: 0 0 6px;
}
.pi-lp-card p {
  font: 400 12.5px/1.55 var(--font-body);
  color: var(--lp-body);
  margin: 0;
}

/* Testimonial (dark card) */
.pi-lp-quote { padding: 52px 24px; }
.pi-lp-quote__card {
  max-width: 900px;
  margin: 0 auto;
  background: var(--lp-navy);
  border-radius: 18px;
  padding: 40px 44px;
  text-align: center;
}
.pi-lp-quote__text {
  font: 500 21px/1.5 var(--font-display);
  color: #fff;
  letter-spacing: -0.01em;
  margin: 0 0 18px;
}
.pi-lp-quote__sub {
  font: 400 13.5px/1.5 var(--font-body);
  color: #93a1b5;
  margin: 0;
}

/* Bottom CTA (full-bleed — Signal quote + Connect) */
.pi-lp-cta {
  background:
    radial-gradient(ellipse 80% 70% at 50% 0%, rgba(47, 107, 239, 0.18), transparent 55%),
    linear-gradient(180deg, #0c1522 0%, #121c2c 100%);
  padding: 72px 24px 80px;
  text-align: center;
}
.pi-lp-cta h2 {
  font: 700 32px/1.2 var(--font-display);
  color: #fff;
  letter-spacing: -0.01em;
  max-width: 560px;
  margin: 0 auto 14px;
}
.pi-lp-cta__quote {
  font: 500 22px/1.45 var(--font-display);
  color: #f8fafc;
  letter-spacing: -0.015em;
  max-width: 720px;
  margin: 0 auto 18px;
}
.pi-lp-cta__copy {
  font: 400 15px/1.6 var(--font-body);
  color: #93a1b5;
  max-width: 520px;
  margin: 0 auto 28px;
}
.pi-lp-cta > .pi-lp-btn {
  display: inline-flex;
}

/* Footer (legacy single-line — kept for any page not yet upgraded) */
.pi-lp-foot {
  text-align: center;
  padding: 26px 24px 40px;
  font: 400 12.5px/1.5 var(--font-body);
  color: var(--lp-muted);
}
.pi-lp-foot a { color: var(--lp-ink-soft); }

/* Full site footer */
.pi-lp-footer {
  border-top: 1px solid var(--lp-line);
  padding: 48px 24px 0;
  margin-top: 20px;
}
.pi-lp-footer__grid {
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
  gap: 28px 24px;
  padding-bottom: 32px;
}
.pi-lp-footer__brand-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font: 600 15px/1 var(--font-display);
  color: var(--lp-ink);
  margin-bottom: 10px;
}
.pi-lp-footer__brand-link img { width: 24px; height: 24px; border-radius: 6px; }
.pi-lp-footer__tagline {
  font: 400 13.5px/1.55 var(--font-body);
  color: var(--lp-body);
  max-width: 260px;
  margin: 0;
}
.pi-lp-footer__col h3 {
  font: 600 11px/1 var(--font-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lp-muted);
  margin: 0 0 14px;
}
.pi-lp-footer__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.pi-lp-footer__col a {
  font: 400 13.5px/1.4 var(--font-body);
  color: var(--lp-ink-soft);
}
.pi-lp-footer__col a:hover { color: var(--lp-blue); }
.pi-lp-footer__bottom {
  max-width: 1040px;
  margin: 0 auto;
  border-top: 1px solid var(--lp-line);
  padding: 18px 0 28px;
  font: 400 12.5px/1.5 var(--font-body);
  color: var(--lp-muted);
}
.pi-lp-footer__bottom a { color: var(--lp-muted); text-decoration: underline; }

@media (max-width: 720px) {
  .pi-lp-footer__grid { grid-template-columns: repeat(2, 1fr); }
  .pi-lp-footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 460px) {
  .pi-lp-footer__grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .pi-lp-nav__links { display: none; }
  .pi-lp-nav__cta { display: none; }
  .pi-lp-nav__menu { display: inline-flex; }
  .pi-lp-hero h1 { font-size: 40px; }
  .pi-lp-features__grid { grid-template-columns: repeat(2, 1fr); }
  .pi-lp-step__sep { display: none; }
}
@media (max-width: 560px) {
  .pi-lp-hero h1 { font-size: 32px; }
  .pi-lp-features__grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Shared "v2" page components — Connect / Contact / Legal
   Reuses the .pi-lp light-theme tokens above so connect-v2.html, contact
   forms, and privacy-v2/terms-v2 stay visually consistent with home-v2.
   ========================================================================== */

.pi-lp-nav__connect.is-active { color: var(--lp-blue); }

/* Generic page-intro block (Connect / legal pages) — a shorter hero */
.pi-lp-page-head {
  text-align: center;
  padding: 44px 24px 8px;
  max-width: 760px;
  margin: 0 auto;
}
.pi-lp-page-head h1 {
  font: 700 44px/1.15 var(--font-display);
  color: var(--lp-ink);
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}
.pi-lp-page-head p {
  font: 400 16px/1.65 var(--font-body);
  color: var(--lp-body);
  max-width: 580px;
  margin: 0 auto 24px;
}
.pi-lp-page-head .pi-lp-hero__ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.pi-lp-btn--ghost {
  background: transparent;
  color: var(--lp-ink);
  border: 1px solid var(--lp-line);
}
.pi-lp a.pi-lp-btn--ghost,
.pi-lp a.pi-lp-btn--ghost:visited { color: var(--lp-ink); }
.pi-lp-btn--ghost:hover { background: var(--lp-pill); }

/* Section headers used above pricing / FAQ / feature blocks */
.pi-lp-section-head { text-align: center; max-width: 640px; margin: 0 auto 34px; }
.pi-lp-section-head .pi-lp-eyebrow { margin-bottom: 16px; }
.pi-lp-section-head h2 {
  font: 700 30px/1.25 var(--font-display);
  color: var(--lp-ink);
  letter-spacing: -0.01em;
  margin: 0 0 10px;
}
.pi-lp-section-head p {
  font: 400 15px/1.6 var(--font-body);
  color: var(--lp-body);
  margin: 0;
}
.pi-lp-section { padding: 56px 24px; }
.pi-lp-section--tight { padding-top: 8px; }

/* Feature / pillar cards with an icon (Connect page uses 6; home uses 4 plain) */
.pi-lp-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
}
.pi-lp-card--icon .pi-lp-card__icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
}
.pi-lp-card--icon .pi-lp-card__icon svg { width: 18px; height: 18px; color: var(--lp-blue); }
.pi-lp-card--icon h3 { font-size: 16px; margin-bottom: 8px; }
.pi-lp-card--icon p { font-size: 13.5px; }

/* Browser-framed shot, reusable outside the hero (e.g. Connect "how it works") */
.pi-lp-shot--sm { max-width: 760px; }

/* Stat / proof strip (Connect hero highlights) */
.pi-lp-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 1000px;
  margin: 36px auto 0;
}
.pi-lp-stat {
  background: var(--lp-surface);
  border: 1px solid var(--lp-line);
  border-radius: 12px;
  padding: 18px 16px;
  text-align: left;
}
.pi-lp-stat__label {
  font: 600 11px/1.3 var(--font-mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--lp-muted);
  margin: 0 0 6px;
}
.pi-lp-stat__title { font: 600 14px/1.35 var(--font-body); color: var(--lp-ink); margin: 0 0 4px; }
.pi-lp-stat__desc { font: 400 12.5px/1.5 var(--font-body); color: var(--lp-body); margin: 0; }

/* Numbered flow steps (Connect "how a call works") */
.pi-lp-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 40px auto 0;
}
.pi-lp-flow-step { text-align: left; }
.pi-lp-flow-num {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--lp-blue-bg);
  color: var(--lp-blue);
  font: 700 13px/1 var(--font-display);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.pi-lp-flow-step h4 { font: 600 15px/1.3 var(--font-display); color: var(--lp-ink); margin: 0 0 6px; }
.pi-lp-flow-step p { font: 400 13.5px/1.55 var(--font-body); color: var(--lp-body); margin: 0; }

/* Connect — workspace persona picker + detail panels */
.pi-lp-persona-nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto 28px;
}
.pi-lp-persona-pill {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--lp-surface);
  border: 1px solid var(--lp-line);
  border-radius: 12px;
  padding: 20px 18px;
  text-align: left;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}
.pi-lp-persona-pill:hover {
  border-color: #c5d4f7;
  box-shadow: 0 8px 24px rgba(15, 23, 35, 0.06);
  transform: translateY(-1px);
}
.pi-lp-persona-pill__emoji {
  font-size: 22px;
  line-height: 1;
  margin-bottom: 10px;
}
.pi-lp-persona-pill__title {
  display: block;
  font: 700 17px/1.25 var(--font-display);
  color: var(--lp-ink);
  margin-bottom: 4px;
}
.pi-lp-persona-pill__hint {
  display: block;
  font: 600 12px/1.4 var(--font-mono);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--lp-blue);
  margin-bottom: 10px;
}
.pi-lp-persona-pill__desc {
  display: block;
  font: 400 13.5px/1.55 var(--font-body);
  color: var(--lp-body);
  margin-bottom: 12px;
  flex: 1;
}
.pi-lp-persona-pill__list {
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
}
.pi-lp-persona-pill__list li {
  position: relative;
  padding-left: 14px;
  font: 400 12.5px/1.5 var(--font-body);
  color: var(--lp-ink-soft);
  margin-bottom: 5px;
}
.pi-lp-persona-pill__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--lp-blue);
}
.pi-lp-persona-pill__cta {
  display: inline-block;
  font: 600 12.5px/1 var(--font-body);
  color: var(--lp-blue);
  margin-top: auto;
}
.pi-lp-persona-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
}
.pi-lp-persona-detail {
  scroll-margin-top: 88px;
  background: var(--lp-surface);
  border: 1px solid var(--lp-line);
  border-radius: 12px;
  padding: 22px 20px;
}
.pi-lp-persona-detail__label {
  font: 600 11px/1.3 var(--font-mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--lp-blue);
  margin: 0 0 8px;
}
.pi-lp-persona-detail h3 {
  font: 700 17px/1.25 var(--font-display);
  color: var(--lp-ink);
  margin: 0 0 8px;
}
.pi-lp-persona-detail p {
  font: 400 13.5px/1.55 var(--font-body);
  color: var(--lp-body);
  margin: 0 0 12px;
}
.pi-lp-persona-detail ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.pi-lp-persona-detail li {
  position: relative;
  padding-left: 16px;
  font: 400 13px/1.5 var(--font-body);
  color: var(--lp-ink-soft);
  margin-bottom: 6px;
}
.pi-lp-persona-detail li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--lp-blue);
}
.pi-lp-stack {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 900px;
  margin: 0 auto;
}
.pi-lp-stack-item {
  background: var(--lp-surface);
  border: 1px solid var(--lp-line);
  border-radius: 12px;
  padding: 20px 18px;
}
.pi-lp-stack-item h3 {
  font: 600 15px/1.3 var(--font-display);
  color: var(--lp-ink);
  margin: 0 0 8px;
}
.pi-lp-stack-item p {
  font: 400 13px/1.55 var(--font-body);
  color: var(--lp-body);
  margin: 0;
}
.pi-lp-stack--ai .pi-lp-stack-item {
  border-color: #d4e2fc;
  background: linear-gradient(180deg, #f8faff 0%, var(--lp-surface) 100%);
}
.pi-lp-section-cta {
  text-align: center;
  font: 500 14px/1.5 var(--font-body);
  margin: 28px auto 0;
  max-width: 640px;
}
.pi-lp-section-cta a {
  color: var(--lp-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.pi-lp-section-cta a:hover {
  color: var(--lp-blue-dark);
}

/* Pricing */
.pi-lp-pricing {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 1080px;
  margin: 0 auto;
}
.pi-lp-price {
  position: relative;
  background: var(--lp-surface);
  border: 1px solid var(--lp-line);
  border-radius: 14px;
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  text-align: left;
}
.pi-lp-price--featured {
  border-color: var(--lp-blue);
  box-shadow: 0 20px 40px -28px rgba(47, 107, 239, 0.45);
}
.pi-lp-price__badge {
  position: absolute;
  top: -11px;
  left: 22px;
  background: var(--lp-blue);
  color: #fff;
  font: 600 10.5px/1 var(--font-mono);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 20px;
}
.pi-lp-price__tier { font: 600 12.5px/1 var(--font-mono); letter-spacing: 0.04em; text-transform: uppercase; color: var(--lp-blue); margin: 0 0 14px; }
.pi-lp-price__amount { font: 700 34px/1 var(--font-display); color: var(--lp-ink); margin: 0 0 4px; }
.pi-lp-price__amount sup { font-size: 16px; top: -14px; }
.pi-lp-price__amount--custom { font-size: 26px; }
.pi-lp-price__period { font: 400 12px/1.4 var(--font-body); color: var(--lp-muted); margin: 0 0 16px; }
.pi-lp-price__divider { border-top: 1px solid var(--lp-line); margin: 0 0 16px; }
.pi-lp-price__feats { list-style: none; margin: 0 0 20px; padding: 0; flex: 1; }
.pi-lp-price__feats li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font: 400 13px/1.5 var(--font-body);
  color: var(--lp-ink-soft);
  margin: 0 0 10px;
}
.pi-lp-price__feats li::before {
  content: '✓';
  color: var(--lp-blue);
  font-weight: 700;
  flex: none;
}
.pi-lp-price .pi-lp-btn { width: 100%; }
.pi-lp-price .pi-lp-btn--ghost { border-color: var(--lp-line); }
.pi-lp-pricing-note {
  text-align: center;
  font: 400 13px/1.6 var(--font-body);
  color: var(--lp-muted);
  max-width: 620px;
  margin: 28px auto 0;
}
.pi-lp-pricing-note a { color: var(--lp-blue); text-decoration: underline; }

/* Add-ons (below seat pricing) */
.pi-lp-addons {
  max-width: 720px;
  margin: 36px auto 0;
}
.pi-lp-addons__head {
  text-align: center;
  margin-bottom: 18px;
}
.pi-lp-addons__head h3 {
  font: 600 20px/1.25 var(--font-display);
  color: var(--lp-ink);
  margin: 8px 0 0;
}
.pi-lp-addons__grid {
  display: grid;
  gap: 14px;
}
.pi-lp-addon {
  background: var(--lp-surface);
  border: 1px solid var(--lp-line);
  border-radius: 14px;
  padding: 24px 22px;
  text-align: left;
}
.pi-lp-addon__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
}
.pi-lp-addon__name {
  font: 600 13px/1.2 var(--font-mono);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--lp-blue);
  margin: 0;
}
.pi-lp-addon__price {
  font: 700 28px/1 var(--font-display);
  color: var(--lp-ink);
  margin: 0;
  white-space: nowrap;
}
.pi-lp-addon__price sup { font-size: 14px; top: -10px; }
.pi-lp-addon__unit {
  font: 500 14px/1 var(--font-body);
  color: var(--lp-muted);
}
.pi-lp-addon__desc {
  font: 400 13.5px/1.55 var(--font-body);
  color: var(--lp-ink-soft);
  margin: 0 0 14px;
}
.pi-lp-addon__feats {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
}
.pi-lp-addon__feats li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font: 400 13px/1.5 var(--font-body);
  color: var(--lp-ink-soft);
  margin: 0 0 8px;
}
.pi-lp-addon__feats li::before {
  content: '✓';
  color: var(--lp-blue);
  font-weight: 700;
  flex: none;
}
.pi-lp-addon__cta { width: 100%; }

/* FAQ */
.pi-lp-faq {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  max-width: 900px;
  margin: 0 auto;
}
.pi-lp-faq-item {
  background: var(--lp-surface);
  border: 1px solid var(--lp-line);
  border-radius: 12px;
  padding: 22px;
  text-align: left;
}
.pi-lp-faq-item h4 { font: 600 14.5px/1.4 var(--font-body); color: var(--lp-ink); margin: 0 0 8px; }
.pi-lp-faq-item p { font: 400 13.5px/1.6 var(--font-body); color: var(--lp-body); margin: 0; }
.pi-lp-faq-item p strong { color: var(--lp-ink-soft); }
.pi-lp-faq-item a { color: var(--lp-blue); text-decoration: underline; }

/* Contact form */
.pi-lp-contact {
  max-width: 480px;
  margin: 0 auto;
  text-align: left;
  background: var(--lp-surface);
  border: 1px solid var(--lp-line);
  border-radius: 16px;
  padding: 32px;
}
.pi-lp-contact--on-dark {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
}
.pi-lp-contact--on-dark label span { color: #cbd5e1; }
.pi-lp-contact--on-dark input,
.pi-lp-contact--on-dark textarea {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.16);
  color: #fff;
}
.pi-lp-contact--on-dark .pi-lp-form__fine { color: #93a1b5; }
.pi-lp-contact--on-dark .pi-lp-form__fine a { color: #cfe0ff; }
.pi-lp-form label { display: block; margin: 0 0 14px; }
.pi-lp-form label span {
  display: block;
  font: 600 12.5px/1.4 var(--font-body);
  color: var(--lp-ink-soft);
  margin-bottom: 6px;
}
.pi-lp-form input,
.pi-lp-form textarea {
  width: 100%;
  font: 400 14px/1.4 var(--font-body);
  color: var(--lp-ink);
  background: var(--lp-bg);
  border: 1px solid var(--lp-line);
  border-radius: 8px;
  padding: 11px 13px;
  transition: border-color 0.15s ease;
}
.pi-lp-form input:focus,
.pi-lp-form textarea:focus {
  outline: none;
  border-color: var(--lp-blue);
}
.pi-lp-form textarea { resize: vertical; min-height: 88px; }
.pi-lp-form__phone-block { margin: 0 0 14px; }
.pi-lp-form__phone-block label { margin-bottom: 8px; }
.pi-lp-form__optin {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  cursor: pointer;
}
.pi-lp-form__optin input[type='checkbox'] { margin-top: 3px; flex: none; }
.pi-lp-form__optin-text {
  font: 400 11.5px/1.5 var(--font-body);
  color: var(--lp-muted);
}
.pi-lp-form__optin-text a { color: var(--lp-blue); }
.pi-lp-form__fine {
  font: 400 11.5px/1.5 var(--font-body);
  color: var(--lp-muted);
  margin: 4px 0 18px;
}
.pi-lp-form__fine a { color: var(--lp-blue); }
.pi-lp-form button[type='submit'] {
  width: 100%;
  border: none;
  font-family: var(--font-body);
}
.pi-lp-form-msg { font: 500 13.5px/1.6 var(--font-body); margin: 14px 0 0; text-align: center; }
.pi-lp-form-msg--success { color: #1a8f5e; }
.pi-lp-form-msg--error { color: #d94f4f; }
.pi-lp-contact--on-dark .pi-lp-form-msg--success { color: #6fe3ad; }
.pi-lp-contact--on-dark .pi-lp-form-msg--error { color: #ff9f9f; }

/* Legal document typography (privacy / terms v2) */
.pi-lp-legal { max-width: 760px; margin: 0 auto; padding: 48px 24px 80px; }
.pi-lp-legal .pi-lp-eyebrow { margin-bottom: 14px; }
.pi-lp-legal h1 {
  font: 700 38px/1.2 var(--font-display);
  color: var(--lp-ink);
  letter-spacing: -0.01em;
  margin: 0 0 14px;
}
.pi-lp-legal-meta {
  font: 400 13px/1.6 var(--font-body);
  color: var(--lp-muted);
  margin: 0 0 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--lp-line);
}
.pi-lp-legal-lead {
  font: 400 15.5px/1.7 var(--font-body);
  color: var(--lp-ink-soft);
  margin: 0 0 36px;
}
.pi-lp-legal section { margin: 0 0 32px; }
.pi-lp-legal h2 {
  font: 600 19px/1.35 var(--font-display);
  color: var(--lp-ink);
  margin: 0 0 12px;
}
.pi-lp-legal h3 {
  font: 600 15px/1.4 var(--font-body);
  color: var(--lp-ink);
  margin: 20px 0 8px;
}
.pi-lp-legal h4 {
  font: 600 13.5px/1.4 var(--font-body);
  color: var(--lp-ink-soft);
  margin: 16px 0 6px;
}
.pi-lp-legal p { font: 400 14.5px/1.7 var(--font-body); color: var(--lp-body); margin: 0 0 14px; }
.pi-lp-legal ul { margin: 0 0 14px; padding-left: 20px; }
.pi-lp-legal li { font: 400 14.5px/1.7 var(--font-body); color: var(--lp-body); margin: 0 0 6px; }
.pi-lp-legal strong { color: var(--lp-ink-soft); }
.pi-lp-legal a { color: var(--lp-blue); text-decoration: underline; }
.pi-lp-legal-back { font: 500 14px/1.6 var(--font-body); color: var(--lp-ink-soft); margin: 40px 0 0; }
.pi-lp-legal-back a { color: var(--lp-blue); text-decoration: underline; }

/* Help / API docs */
.pi-lp-help-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 0 0 40px;
}
.pi-lp-help-card {
  display: block;
  padding: 22px 20px;
  border: 1px solid var(--lp-line);
  background: linear-gradient(165deg, rgba(15, 118, 110, 0.06), transparent 55%);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.pi-lp-help-card:hover {
  border-color: rgba(15, 118, 110, 0.45);
  transform: translateY(-1px);
}
.pi-lp-help-card--static { cursor: default; }
.pi-lp-help-card--static:hover { transform: none; border-color: var(--lp-line); }
.pi-lp-help-card h2 {
  font: 600 18px/1.3 var(--font-display);
  color: var(--lp-ink);
  margin: 0 0 10px;
}
.pi-lp-help-card p {
  font: 400 14px/1.65 var(--font-body);
  color: var(--lp-body);
  margin: 0 0 10px;
}
.pi-lp-help-card__cta {
  font: 600 13px/1.4 var(--font-body);
  color: var(--lp-blue);
}
.pi-lp-help-card__note {
  font: 400 13px/1.5 var(--font-body) !important;
  color: var(--lp-muted) !important;
  margin: 0 !important;
}
.pi-lp-help-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin: 0 0 36px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--lp-line);
}
.pi-lp-help-toc a {
  font: 500 13px/1.4 var(--font-body);
  color: var(--lp-ink-soft);
  text-decoration: none;
}
.pi-lp-help-toc a:hover { color: var(--lp-blue); text-decoration: underline; }
.pi-lp-help-code {
  margin: 0 0 16px;
  padding: 16px 18px;
  overflow-x: auto;
  border: 1px solid var(--lp-line);
  background: #0f1412;
  color: #e8f0ec;
  font: 500 12.5px/1.55 var(--font-mono, "IBM Plex Mono", ui-monospace, monospace);
  white-space: pre-wrap;
  word-break: break-word;
}
.pi-lp-help-code code {
  font: inherit;
  color: inherit;
  background: none;
  padding: 0;
}
.pi-lp-legal code,
.pi-lp-help-card code {
  font: 500 12.5px/1.4 var(--font-mono, "IBM Plex Mono", ui-monospace, monospace);
  background: rgba(15, 118, 110, 0.08);
  color: var(--lp-ink-soft);
  padding: 1px 5px;
}
.pi-lp-help-callout {
  margin: 0 0 16px;
  padding: 14px 16px;
  border-left: 3px solid rgba(15, 118, 110, 0.65);
  background: rgba(15, 118, 110, 0.06);
  font: 400 14px/1.65 var(--font-body);
  color: var(--lp-body);
}
.pi-lp-help-callout strong { color: var(--lp-ink-soft); }
.pi-lp-help-table-wrap { overflow-x: auto; margin: 0 0 16px; }
.pi-lp-help-table {
  width: 100%;
  border-collapse: collapse;
  font: 400 13.5px/1.5 var(--font-body);
}
.pi-lp-help-table th,
.pi-lp-help-table td {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid var(--lp-line);
  color: var(--lp-body);
  vertical-align: top;
}
.pi-lp-help-table th {
  font: 600 12px/1.4 var(--font-body);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--lp-muted);
}
.pi-lp-help-table-note {
  display: inline;
  font: 400 13px/1.5 var(--font-body);
  color: var(--lp-muted);
}
.pi-lp-help-chooser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 0 0 16px;
}
.pi-lp-help-chooser__btn {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  text-align: left;
  padding: 16px 18px;
  border: 1px solid var(--lp-line);
  background: #fff;
  color: var(--lp-body);
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.15s ease;
}
.pi-lp-help-chooser__btn strong {
  font: 600 15px/1.3 var(--font-display);
  color: var(--lp-ink);
}
.pi-lp-help-chooser__btn span {
  font: 400 13px/1.45 var(--font-body);
  color: var(--lp-muted);
}
.pi-lp-help-chooser__btn:hover {
  border-color: rgba(15, 118, 110, 0.45);
  transform: translateY(-1px);
}
.pi-lp-help-chooser__btn.is-selected {
  border-color: rgba(15, 118, 110, 0.7);
  background: rgba(15, 118, 110, 0.07);
}
.pi-lp-help-chooser__hint {
  font: 500 13px/1.5 var(--font-body);
  color: var(--lp-ink-soft);
  margin: 0 0 8px;
}
@media (max-width: 700px) {
  .pi-lp-help-chooser { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .pi-lp-help-cards { grid-template-columns: 1fr; }
}

.pi-lp-support-gate {
  margin: 28px 0 36px;
  padding: 28px 24px;
  border-radius: 16px;
  border: 1px solid rgba(45, 212, 191, 0.25);
  background: linear-gradient(145deg, rgba(45, 212, 191, 0.08), rgba(99, 102, 241, 0.06));
  text-align: center;
}
.pi-lp-support-gate__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin: 0 auto 14px;
  border-radius: 14px;
  background: rgba(45, 212, 191, 0.12);
  color: #2dd4bf;
}
.pi-lp-support-gate h2 {
  font: 600 20px/1.3 var(--font-display);
  color: var(--lp-ink);
  margin: 0 0 10px;
}
.pi-lp-support-gate p {
  font: 400 15px/1.65 var(--font-body);
  color: var(--lp-ink-muted);
  margin: 0 0 18px;
  max-width: 36em;
  margin-left: auto;
  margin-right: auto;
}
.pi-lp-support-gate__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 12px;
}
.pi-lp-support-gate__fine {
  font: 400 12.5px/1.5 var(--font-body);
  color: var(--lp-ink-faint);
  margin: 0;
}
.pi-lp-support-list {
  margin: 0 0 20px;
  padding-left: 1.25rem;
  font: 400 15px/1.7 var(--font-body);
  color: var(--lp-ink-muted);
}
.pi-lp-support-list li { margin-bottom: 6px; }

@media (max-width: 900px) {
  .pi-lp-cards { grid-template-columns: repeat(2, 1fr); }
  .pi-lp-stats { grid-template-columns: repeat(2, 1fr); }
  .pi-lp-persona-nav { grid-template-columns: 1fr; }
  .pi-lp-persona-details { grid-template-columns: 1fr; }
  .pi-lp-stack { grid-template-columns: 1fr; }
  .pi-lp-flow { grid-template-columns: 1fr; gap: 28px; }
  .pi-lp-pricing { grid-template-columns: repeat(2, 1fr); }
  .pi-lp-faq { grid-template-columns: 1fr; }
  .pi-lp-page-head h1 { font-size: 34px; }
}
@media (max-width: 560px) {
  .pi-lp-cards { grid-template-columns: 1fr; }
  .pi-lp-stats { grid-template-columns: 1fr; }
  .pi-lp-persona-nav { grid-template-columns: 1fr; }
  .pi-lp-pricing { grid-template-columns: 1fr; }
  .pi-lp-contact { padding: 24px; }
}
